我试图创建一个用于说明目的的简单应用程序。想法如下: 创建一个应用程序,该应用程序将运行仅与所选课程(单选按钮)相关联的脚本文件。所以,我创建了列出主题的单选按钮(点击)。一旦选择了主题,用户必须点击Enter
按钮。这应该运行.py
所选主题(execute_script
函数)的所有文件。
但是,当我运行我的代码时,我得到 4 个消息框,里面写着“无”。单击确定后,我得到一个只有enter
按钮的方形窗口。我能做些什么来纠正这个问题?
def check(file_name, relStatus):
radioValue = relStatus.get()
tkMessageBox.showinfo('You checked', radioValue)
been_clicked.append(file_name)
return
def execute_script():
for name in been_cliked:
subprocess.Popen(['python', 'C:\Users\Max\Subjects\{}'.format(name)])
yield
def main():
#Create application
app = Tk()
app.title('Coursework')
app.geometry('450x300+200+200')
#Header
labelText = StringVar()
labelText.set('Select subjects')
#Dictionary with names
product_names = {}
names = []
file_name = []
names = ['Math', 'Science', 'English', 'French']
file_name = ['calc.py', 'physics.py', 'grammar.py', 'livre.py']
product_names = OrderedDict(zip(names, file_name))
#Create radio buttons
global been_clicked
been_clicked = []
relStatus = StringVar()
relStatus.set(None)
for name,file_name in product_names.iteritems():
radio1 = Radiobutton(app, text=name, value=name, \
variable=relStatus, command=check(file_name, relStatus))
button = Button(app, text='Click Here', width=20, command=execute_script())
button.pack(side='bottom', padx=15, pady=15)
app.mainloop()
if __name__ == '__main__': main()