6

ユーザーがTkinterとPython 3でボタンをクリックしたときに新しいウィンドウを開くにはどうすればよいですか?

4

1 に答える 1

7

TkinterクラスToplevelの新しいインスタンスを作成することにより、新しいウィンドウを開くことができます。

例えば:

import Tkinter as tk

class View(tk.Frame):
    count = 0
    def __init__(self, *args, **kwargs):
        tk.Frame.__init__(self, *args, **kwargs)
        b = tk.Button(self, text="Open new window", command=self.new_window)
        b.pack(side="top")

    def new_window(self):
        self.count += 1
        id = "New window #%s" % self.count
        window = tk.Toplevel(self)
        label = tk.Label(window, text=id)
        label.pack(side="top", fill="both", padx=10, pady=10)

if __name__ == "__main__":
    root = tk.Tk()
    view = View(root)
    view.pack(side="top", fill="both", expand=True)
    root.mainloop()
于 2013-02-21T18:38:38.840 に答える