Python Tkinter Relief styles

返回 Python GUI 编程


Python Tkinter Relief styles 是指控件外部周围的某些模拟 3-D 效果。这是一排按钮的屏幕截图,展示了所有可能的浮雕样式

下面是可用于Relief styles属性的可能常量列表。

  • FLAT
  • RAISED
  • SUNKEN
  • GROOVE
  • RIDGE

示例

from Tkinter import *
import Tkinter

top = Tkinter.Tk()

B1 = Tkinter.Button(top, text ="FLAT", relief=FLAT )
B2 = Tkinter.Button(top, text ="RAISED", relief=RAISED )
B3 = Tkinter.Button(top, text ="SUNKEN", relief=SUNKEN )
B4 = Tkinter.Button(top, text ="GROOVE", relief=GROOVE )
B5 = Tkinter.Button(top, text ="RIDGE", relief=RIDGE )

B1.pack()
B2.pack()
B3.pack()
B4.pack()
B5.pack()
top.mainloop()

执行结果如下:

tkinter relief styles样式


返回 Python GUI 编程

查看笔记

扫码一下
查看教程更方便