首页上一页 1 下一页尾页 1 条记录 1/1页
代码
from tkinter import * #导入tkinter模块
from tkinter.ttk import * #导入ttk模块
root = Tk() #创建根窗口
root.title("这是一个ttk小demo") #设置窗口标题
style=Style() #创建Style对象,便于设置样式
#设置样式,其四个参数分别为样式添加标签、设置字号、设置组件的边框样式、设置背景颜色
style.configure("TButton", font=14, relief="flat", background="00f5ff")
#添加Button组件,text定义组件上的文字,style为组件引入样式
btn = ttk.Button(text="这只是一个按钮", style="TButton").pack(pady=20)
root.mainloop() #让程序继续执行,直到窗口被关闭,该行放置在程序的最后
报错信息
line 10, in <module>
btn = ttk.Button(text="这只是一个按钮", style="TButton").pack(pady=20)
NameError: name 'ttk' is not defined