from
PyQt5.QtWidgets
import
*
from
PyQt5
import
QtCore, QtGui
from
PyQt5.QtGui
import
*
from
PyQt5.QtCore
import
*
import
sys
class
Window(QMainWindow):
def
__init__(
self
):
super
().__init__()
self
.setWindowTitle("Python ")
self
.setGeometry(
100
,
100
,
600
,
400
)
self
.UiComponents()
self
.show()
def
UiComponents(
self
):
bar
=
QProgressBar(
self
)
bar.setGeometry(
200
,
100
,
200
,
30
)
value
=
70
bar.setValue(value)
bar.setAlignment(Qt.AlignCenter)
bar.setStyleSheet("QProgressBar "
"{"
"border :
1px
solid black;"
"}"
"QProgressBar::chunk"
"{"
"background
-
color : yellow;"
"border :
3px
solid red;"
"}"
)
App
=
QApplication(sys.argv)
window
=
Window()
sys.exit(App.
exec
())