📜  python 边框 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:59.576000             🧑  作者: Mango

代码示例1
from tkinter import *
root = Tk()

example = Label(root, Text="Hello World!", borderwidth="2", relief="groove")
# Releif is the effect what goes with the border.
#" flat", "raised", "sunken", "ridge", "solid" are relief commands too.

root.mainloop()