1. 程式人生 > >(10)python tkinter-容器、子窗體

(10)python tkinter-容器、子窗體

nbsp height col idt div color comm 大小 png

Frame

f = tkinter.Frame(width=380, height=270, bg=white).pack()

技術分享

LabelFrame

f = tkinter.LabelFrame(width=180, height=130,text=第一組).pack()

技術分享

Toplevel

import tkinter
import tkinter.messagebox
def but():
    tkinter.Toplevel()
root=tkinter.Tk()
root.title(GUI)#標題
root.geometry(800x600
)#窗體大小 root.resizable(False, False)#固定窗體 f = tkinter.Button(root,text=子窗體,command=but).pack() root.mainloop()

技術分享

(10)python tkinter-容器、子窗體