Bonjour, je cherche à m'améliorer en programmation et je souhaiterai savoir comment appeler dans une classe un widget défini dans une autre classe dans un programme comme celui-ci:
import tkinter as tk
class SampleApp(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
# the container is where we'll stack a bunch of frames
# on top of each other, then the one we want visible
label = tk.Label(self, text="This is the start page", font="Courrier")
label.pack(side="top", fill="x", pady=10)
button1 = tk.Button(self, text="Go to Page One", command=lambda: controller.show_frame("PageOne"))
button2 = tk.Button(self, text="Go to Page Two", command=lambda: controller.show_frame("PageTwo"))
button1.pack()
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="Courrier")
label.pack(side="top", fill="x", pady=10)
tk.Label(self, text="Choisi le sexe du personnage à séduire:", font=('Courrier', 30), bg='#FCCFFC', fg='white').pack(expand=tk.YES, side="top", fill="x", pady=5)
button3 = tk.Button(self, text="Go to the start page", command=lambda: controller.show_frame("StartPage"))
button3.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", font="Courrier")
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()
tk.master.button1
if __name__ == "__main__":
app = SampleApp()
app.mainloop()
Merci d'avance
A voir également:
Appeler dans une classe un widget défini dans une autre