(10)python tkinter-容器子窗体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(10)python tkinter-容器子窗体相关的知识,希望对你有一定的参考价值。

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-容器子窗体的主要内容,如果未能解决你的问题,请参考以下文章

Python GUI项目实战(二)主窗体的界面设计与实现

python Tkinter 基础 创建一行文字的窗体并设置窗体的标题 Label,title

python tkinter窗体编程

Python3 tkinter基础 TK title 设置窗体的标题

Python3 tkinter基础 Tk quit 点击按钮退出窗体

python tkinter窗体内容超出窗体,如何设置通过鼠标滚动显示完整内容?