python中mainloop什么意思_很难理解python中的Tkinter mainloop()
好的,我有一個基本的窗口,有一個編輯和查看按鈕。按照我的代碼,EDIT和VIEW都會返回一條消息“這個按鈕沒用”。我在“主窗口”下創建了這些。我創建了另一個類“edit_window”,希望在單擊edit按鈕時調用它。本質上,單擊edit按鈕應該更改顯示帶有添加和刪除按鈕的新窗口。這是我目前為止的代碼…下一步的邏輯步驟是什么?在from Tkinter import *
#import the Tkinter module and it's methods
#create a class for our program
class main_window:
def __init__(self, master):
frame = Frame(master)
frame.pack(padx=15,pady=100)
self.edit = Button(frame, text="EDIT", command=self.edit)
self.edit.pack(side=LEFT, padx=10, pady=10)
self.view = Button(frame, text="VIEW", command=self.view)
self.view.pack(side=RIGHT, padx=10, pady=10)
def edit(self):
print "this button is useless"
def view(self):
print "this button is useless"
class edit_window:
def __init__(self, master):
frame = Frame(master)
frame.pack(padx=15, pady=100)
self.add = Button(frame, text="ADD", command=self.add)
self.add.pack()
self.remove = Button(frame, text="REMOVE", command=self.remove)
self.remove.pack()
def add(self):
print "this button is useless"
def remove(self):
print "this button is useless"
top = Tk()
top.geometry("500x500")
top.title('The Movie Machine')
#Code that defines the widgets
main = main_window(top)
#Then enter the main loop
top.mainloop()
總結
以上是生活随笔為你收集整理的python中mainloop什么意思_很难理解python中的Tkinter mainloop()的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python删掉txt第一列_Pytho
- 下一篇: 门冬胰岛素30是什么意思