我能否掌握以下内容:
我在我的程序中使用Qt的导入和转换(到py)文件。 在我的第一个窗口中,我创建了一个按钮:我想:一旦点击这个按钮,它就会引导我进入我的第二个窗口(也是用QT创建的)。
这个主窗口还有2个厚箱。 CAR1 car2
第二个窗口是一组2个组合框。
如果我厚的car1我希望每个组合框允许我只选择(speed1,weight1,fuel1) 如果我厚厚的car2我希望每个组合框允许我只选择(speed2,weight2,fuel2) 如果我厚的car1& car2我希望每个组合框允许我选择(speed1,weight1,fuel1,speed2,weight2,fuel2)
我可以提供一个善意的建议或代码示例吗?
提前感谢,
06
我刚开始使用python:
#10----------------------------------------------
from PyQt4 import QtCore, QtGui
import sys
from os.path import expanduser
import os
import shlex
#import Converted Python UI File
from W0 import Ui_MainWindow
class Main(QtGui.QMainWindow):
def __init__(self):
QtGui.QMainWindow.__init__(self)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
#30-----------------------------------------------------------
# Connect the pushbutton i am unable to get any action from the button
pushbutton = QtGui.QPushButton('Popup Button')
def main():
app = QtGui.QApplication(sys.argv)
window = Main()
window.show()
sys.exit(app.exec_())
main()