Advertisement
Guest User

Untitled

a guest
Dec 20th, 2020
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. class MainWindow(QtWidgets.QMainWindow):
  2.    
  3.     def __init__(self):
  4.        
  5.         super(MainWindow, self).__init__()
  6.         self.ui = Ui_MainWindow()
  7.  
  8.         self.setFixedSize(712, 432)
  9.  
  10.         icon = QtGui.QIcon()
  11.         icon.addPixmap(QtGui.QPixmap("../static/icon.ico"), QtGui.QIcon.Selected, QtGui.QIcon.On)
  12.         self.setWindowIcon(icon)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement