เปลี่ยนขนาดของหน้าต่าง GUI tkinter

ฉันพยายามเปลี่ยนขนาดหน้าต่างสำหรับ GUI นี้ แต่ฉันกำลังดิ้นรน ฉันพยายามใช้ root.geometry("1080x800+200+200") แต่ดูเหมือนว่าจะไม่ได้ผลเช่นกัน ใครช่วยอธิบายได้ไหมว่าทำไม? ตอนนี้ฉันกำลังฝึกใช้ tkinter ขอบคุณ

import tkinter as tk   # python3
TITLE_FONT = ("Helvetica", 18, "bold")

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
        # 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, PageTwo):
            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()


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=TITLE_FONT)
        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=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()


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=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()

person saalahdin    schedule 21.02.2017    source แหล่งที่มา
comment
คุณหมายถึงอะไรโดย root.geometry ทำงานได้ไม่ดี?   -  person WhatsThePoint    schedule 21.02.2017
comment
ฉันพยายามใช้ root.geometry แต่มันไม่ได้ทำให้หน้าต่างใหญ่ขึ้น มันแค่สร้างหน้าต่างใหม่ในขนาดที่ฉันต้องการ   -  person saalahdin    schedule 21.02.2017
comment
root.geometry เปลี่ยนขนาดหน้าต่าง tkinter คุณหมายถึงคอนโซล python ไม่เปลี่ยนแปลงใช่ไหม   -  person WhatsThePoint    schedule 21.02.2017
comment
ไม่มีหน้าต่างชื่อ root ในโค้ดที่คุณโพสต์ หน้าต่างรูทของคุณชื่อ app ดังนั้นคุณควรโทร app.geometry("1080x800+200+200") BTW คุณควรแก้ไขการเยื้องของคุณ   -  person PM 2Ring    schedule 21.02.2017
comment
อ่า ใช่ @PM2Ring ฉันไม่ได้สนใจเรื่องนั้นเพราะฉันแสดงความคิดเห็นทันทีที่เห็นว่า root,geometry ทำงานได้ไม่ดี ฉันไม่ได้ดูโค้ด :D   -  person WhatsThePoint    schedule 21.02.2017
comment
ตามขนาด windows ฉันกำลังพูดถึง GUI ในตัวมันเอง   -  person saalahdin    schedule 21.02.2017
comment
ไม่มีการเรียก geometry ในโค้ดของคุณ และไม่มีวิดเจ็ตชื่อ root   -  person Bryan Oakley    schedule 21.02.2017
comment
ไม่เป็นไร ฉันซ่อมมันแล้ว ฉันโง่มาก ฉันใช้ root.geometry จากโปรแกรมอื่น :) if __name__ == "__main__": app = SampleApp() app.geometry("1080x800+200+200") app.mainloop()   -  person saalahdin    schedule 21.02.2017


คำตอบ (2)


คุณไม่มี root ที่ประกาศในโปรแกรมของคุณ ดังนั้นคุณจะไม่สามารถเรียก root.geometry ได้ หากคุณเปลี่ยนโค้ดของคุณเป็นเช่นนี้ คุณจะสามารถเรียก root.geometry และเปลี่ยนขนาดของหน้าต่าง GUI ของคุณได้ นอกจากนี้โดยใช้ root คุณสามารถส่งผ่านเป็นพารามิเตอร์ไปยังคลาสเพจอื่นๆ ของคุณและตั้งค่าขนาดที่แตกต่างกันสำหรับคลาสเพจทั้งหมดได้ ถ้าคุณต้องการ.

if __name__ == "__main__":
    root = tk.Tk()
    root.geometry("1080x800+200+200") 
    app = SampleApp(root)
    root.mainloop()
person WhatsThePoint    schedule 21.02.2017
comment
ฉันโง่มาก ฉันใช้มันจากโปรแกรมอื่น :) มันใช้งานได้แล้ว แต่แทนที่จะทำสิ่งที่คุณทำ ฉันเพิ่งทำเสร็จ if __name__ == "__main__": app = SampleApp() app.geometry("1080x800+200+200") app.mainloop() - person saalahdin; 21.02.2017
comment
ในตัวอย่างนี้ คุณ ไม่ ต้องการสร้างรูท SampleApp คลาสย่อย Tk ดังนั้นคุณเพียงแค่ต้องโทร geometry ไปที่ app - person Bryan Oakley; 21.02.2017

ใน SampleApp ชั้นหนึ่ง คุณสามารถใช้ self.geometry('500x555') #for example ได้

person kresho111    schedule 22.03.2017