ブライアンが「tkinterの2つのフレームを切り替える」という答えにしたMVC modelに従っています。 彼はお互いの上にフレームを積み重ねます(すべては最初から作られています)。MVCモデル。フレームを切り替える、新しいフレームを追加する
プログラムの実行が開始された後、またはこのモデルのみを使用して、最初に作成されたフレーム以外のフレームを表示することはできますか? (回答のおかげで私はそれを行う方法を理解することができました)
しかし、100%独立ではないので、ページ2にはまだ問題があります。フレームを呼び出すたびに、それはストライキから始まらない。
以下は、私がコードに加えた変更です。
import tkinter as tk # python 3
from tkinter import font as tkfont # python 3
#import Tkinter as tk # python 2
#import tkFont as tkfont # python 2
class SampleApp(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
self.title_font = tkfont.Font(family='Helvetica', size=18, weight="bold", slant="italic")
# the container is where we'll stack a bunch of frames
# on top of each other, then the one we want visible
# will be raised above the others
container = tk.Frame(self)
container.pack(side="top", fill="both", expand=True)
container.grid_rowconfigure(0, weight=1)
container.grid_columnconfigure(0, weight=1)
self.frames = {}
for F in (StartPage, PageOne):
page_name = F.__name__
frame = F(parent=container, controller=self)
self.frames[page_name] = frame
# put all of the pages in the same location;
# the one on the top of the stacking order
# will be the one that is visible.
frame.grid(row=0, column=0, sticky="nsew")
self.show_frame("StartPage")
def show_frame(self, page_name):
'''Show a frame for the given page name'''
frame = self.frames[page_name]
frame.tkraise()
def add_PageTwo (self):
self.title_font = tkfont.Font(family='Helvetica', size=18, weight="bold", slant="italic")
container = tk.Frame(self)
container.pack(side="top", fill="both", expand=True)
#container.grid_rowconfigure(0, weight=1)
#container.grid_columnconfigure(0, weight=1)
self.frames["PageTwo"] = PageTwo(parent=container, controller=self)
self.frames["PageTwo"].grid(row=0, column=0, sticky="nsew")
self.show_frame("PageTwo")
class StartPage(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
self.controller = controller
label = tk.Label(self, text="This is the start page", font=controller.title_font)
label.pack(side="top", fill="x", pady=10)
button2 = tk.Button(self, text="Go to Page One",
command=lambda: controller.show_frame("PageOne"))
button2.pack()
class PageOne(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
self.controller = controller
label = tk.Label(self, text="This is page 1", font=controller.title_font)
label.pack(side="top", fill="x", pady=10)
button1 = tk.Button(self, text="Go to the page 2",
command=lambda: controller.add_PageTwo())
button1.pack()
button2 = tk.Button(self, text="Go to the start page",
command=lambda: controller.show_frame("StartPage"))
button2.pack()
class PageTwo(tk.Frame):
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
self.controller = controller
label = tk.Label(self, text="This is page 2. GREAT", font=controller.title_font)
label.pack(side="top", fill="x", pady=10)
button = tk.Button(self, text="Go to the start page",
command=lambda: controller.show_frame("StartPage"))
button.pack()
if __name__ == "__main__":
app = SampleApp()
app.mainloop()
新しいフレームを作るのに問題はありません。他のフレームがクラス属性であるか、属性のリストやdictのようなものであれば、この新しいフレームを既存のフレームに追加できます。 –
@SierraMountainTechありがとうございます。あなたが私の答えで見ることができるように(ほとんど)その問題を解決しました。 – ogeretal