tkinterを使って、ページを2つ作ってます。
今後、Class内に数個のframesを作れたらと考えていますが、def関数で呼び出せるようにしたいです。また、framesはstickyで元のPageOneの真上に乗せれたらと考えています。
**余談ですが…この先の方針として、EntryとGetで、inputをもらった時に、ClassをまたいでFrameを持つと情報の取得からの受け渡しが、大変そうなので、classの中にあれば受け渡しも難しくないかと思ってます。*
以下に、コードがありますが、def new_page()で新しいframeを呼び出す方法を見つけたいです。よろしくお願いいたします。
import
1 2class App(tk.Tk): 3 def __init__(self, *args, **kwargs): 4 tk.Tk.__init__(self, *args, **kwargs) 5 container = tk.Frame(self) 6 container.pack(side = "top", fill="both", expand=True) 7 container.grid_rowconfigure(0, weight=1) 8 container.grid_columnconfigure(0, weight=1) 9 self.frames = {} 10 11 frames = (Start, PageOne) 12 13 for F in frames: 14 frame = F(container, self) 15 self.frames[F] = frame 16 frame.grid(row=0, column=0, sticky="nsew") 17 18 self.show_frame(Start) 19 20 def show_frame(self, cont): 21 frame = self.frames[cont] 22 frame.tkraise() 23 24class Start(tk.Frame): 25 def __init__(self, base, change): 26 tk.Frame.__init__(self, base) 27 title = tk.Label(self, text="Start Page", font=("Times New Roman", 18)) 28 title.pack() 29 change_button = tk.Button(self, text="Go to Page 1", font=("Times New Roman", 18), command=lambda: change.show_frame(PageOne)) 30 change_button.pack() 31 32class PageOne(tk.Frame): 33 def __init__(self, base, change): 34 tk.Frame.__init__(self, base) 35 title = tk.Label(self, text="This is Page One", font=("Times New Roman", 18)) 36 title.pack() 37 38 def new_page(): 39 tk.Frame.__init__(self, base) 40 background = tk.Canvas(self, width=1200, height=800, bg="yellow") 41 background.pack() 42 new_title = tk.Label(self, text="New Page", font=("Times New Roman", 18)) 43 new_title.place(x=10, y=10) 44 45 back = tk.Button(self, text="Back to Start", font=("Times New Roman", 18), command = lambda: change.show_frame(Start)) 46 back.pack() 47 new = tk.Button(self, text="New Page", font=("Times New Roman", 18), command=new_page) 48 new.pack() 49 50app = App() 51app.mainloop() 52 53コード
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/31 15:23
2020/06/01 03:02 編集