from
PyQt5.QtCore
import
*
from
PyQt5.QtGui
import
*
from
PyQt5.QtWidgets
import
*
import
sys
class
Window(QMainWindow):
def
__init__(
self
):
super
().__init__()
self
.setWindowTitle(
"Python"
)
self
.setGeometry(
60
,
60
,
600
,
400
)
self
.statusBar().showMessage(
"This is status bar"
)
self
.statusBar().setStyleSheet(
"border :3px solid black;"
)
self
.statusBar().setMinimumHeight(
100
)
self
.label_1
=
QLabel(
"status bar"
,
self
)
self
.label_1.move(
100
,
100
)
self
.label_1.setStyleSheet(
"border :1px solid blue;"
)
self
.label_1.adjustSize()
self
.show()
App
=
QApplication(sys.argv)
window
=
Window()
sys.exit(App.
exec
())