美文网首页
Python3 Tkinter-Frame

Python3 Tkinter-Frame

作者: zmqqq | 来源:发表于2019-03-25 16:07 被阅读0次

1.创建

from tkinter import *

root=Tk()
for fm in ['red','blue','yellow','green','white','black']:
    Frame(height=20,width=400,bg=fm).pack()

root.mainloop()
图片.png

2.添加控件

from tkinter import *

root=Tk()
fm=[]
for color in ['red','blue','yellow','green','white','black']:
    fm.append(Frame(height=20,width=400,bg=color))

Label(fm[1],text='Hello label').pack()
fm[0].pack()
fm[1].pack()

root.mainloop()
图片.png

3.LabelFrame添加Title支持

from tkinter import *

root=Tk()
fm=[]
for color in ['red','blue','yellow','green','white','black']:
    LabelFrame(height=20,width=400,bg=color,text=color).pack()

root.mainloop()
图片.png

相关文章

网友评论

      本文标题:Python3 Tkinter-Frame

      本文链接:https://www.haomeiwen.com/subject/urkbvqtx.html