私はPythonコード用のグラフィックスウィンドウを作成しようとしていましたが、ボタンを追加する方法はわかりません。ウェブサイトを見ていて、それは私のエディション(3.2.3 )私は今いくつかのコードを持っている、これに何か問題はありますか?GUI PythonのTkinterコード
import tkinter
import tkinter as tk
root = tk.Tk()
root.title("Adventure game")
root.geometry("1820x1000")
root.mainloop()
class Window(Tk):
def __init__(self, parent):
Tk.__init__(self, parent)
self.parent = parent
self.initialize()
def initialize(self):
self.geometry("600x400+30+30")
wButton = Button(self, text='start', command = self.OnButtonClick())
wButton.pack()
def OnButtonClick(self):
top = Toplevel()
top.title("title")
top.geometry("300x150+30+30")
topButton = Button(top, text="OPTION_1", command = self.OnButtonPress())
topButton = Button(top, text="OPTION_2", command = self.OnButtonPress())
topButton.pack()
def OnButtonPress(self):
top = Toplevel()
top.title("title")
top.geometry("300x150+30+30")
topButton = Button(top, text="OPTION_1", command = self.destroy)
bottomButton = Button(top, text="OPTION_2", command = self.destroy)
topButton.pack()
* "これに何か問題はありますか?" * - なぜあなたにお尋ねしますか?あなたはそれを試しましたか?それは*働いていますか? – jonrsharpe
いいえ、それは何か助けが必要であることを暗示しています。 – Luke
...何ですか?あなたの質問は何ですか? [ask]を読んで、これを実際の問題が何であるかを示す[mcve]にカットしてください。 – jonrsharpe