把qtdesigner中的ui文件生成py文件 anaconda

无奈,马上实习就要结束了,但是自己的长进才是在stm32方面,虽然对linux有了些接触

但本质上没有任何进展,不能不说这事我的悲哀,在研三的时候却要做别人大二时做的事情

如今又是精力太散,迷上了python,那就去学吧,怎么其他方面也暂时没有了进展,如果学习中

缺乏了乐趣,岂不是很没趣???

下面这个是关于ui的生成:
https://blog.csdn.net/u013401853/article/details/54581512

把qtdesigner中的ui文件生成py文件 anaconda

然后点击create就进入了:

把qtdesigner中的ui文件生成py文件 anaconda

对于这个界面的介绍:

把qtdesigner中的ui文件生成py文件 anaconda

把qtdesigner中的ui文件生成py文件 anaconda

然后根据这里的提示把ui文件变成 py文件:

https://bbs.csdn.net/topics/392347546

把qtdesigner中的ui文件生成py文件 anaconda

然后我们用anaconda的黑方框中输入上面的句子:

把qtdesigner中的ui文件生成py文件 anaconda

打开生成的untitled.ui之后,里面是这样的:

把qtdesigner中的ui文件生成py文件 anaconda

打开用ui生成的py是这样的:

把qtdesigner中的ui文件生成py文件 anaconda

然后我们在vs中建立一个文件hello.py

然后输入代码是:

from PyQt5 import QtWidgets, QtGui
import sys
from untitled import Ui_Form # 导入生成untitled.py里生成的类
class mywindow(QtWidgets.QWidget,Ui_Form): #这个是一个继承类
def __init__(self):
super(mywindow,self).__init__()
self.setupUi(self) #这个是我们生成的py里面的一个函数。就是用于绘制界面的。
#定义槽函数
def hello(self):
self.textEdit.setText("hello world")
app = QtWidgets.QApplication(sys.argv)
window = mywindow()
window.show()
sys.exit(app.exec_())
之后运行就可以成功看到结果了。
把qtdesigner中的ui文件生成py文件 anaconda

把qtdesigner中的ui文件生成py文件 anaconda

上一篇:Qt中的ui文件转换为py文件


下一篇:logname - 显示用户登录名