python 设置标题边框(图文)

发布时间:2020-07-30编辑:脚本学堂
分享一个python的例子,学习如何设置标题的边框,有需要的朋友参考下吧。

python中设置标题的边框,代码:

#!/bin/python
from Tkinter import *

root = Tk()
root.title('Buttons')
f = Frame(root, width=300, height=110)
xf = Frame(f, relief=GROOVE, borderwidth=2)
Label(xf, text="AAA").pack(pady=10)
Button(xf, text="bbb", state=disabled).pack(side=LEFT, padx=5, pady=8)
Button(xf, text="ccc rrr rrr rrr rrr", command=root.quit).pack(side=RIGHT, padx=5, pady=8)
xf.place(relx=0.01, rely=0.125, anchor=NW)
Label(f, text='Titled Border').place(relx=.06, rely=0.125,anchor=W)
f.pack()
root.mainloop()

效果图,如下:
python标题边框