Skip to content

Commit 111f68c

Browse files
addSenhaPy
1 parent 5b9292a commit 111f68c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

senha.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from PyQt5 import uic, QtWidgets, QtGui
2+
3+
app = QtWidgets.QApplication([])
4+
tela_senha = uic.loadUi('tela_senha.ui')
5+
tela_senha.setWindowIcon(QtGui.QIcon('imagens/senha-icon.png'))
6+
tela_senha.setWindowTitle('Gerar Senhas')
7+
8+
9+
tela_senha.show()
10+
app.exec()

0 commit comments

Comments
 (0)