标签:height 方向 form 调用 事件 blog figure 分享 comment
无功能按钮
Button的text属性显示按钮上的文本
tkinter.Button(form, text=‘hello button‘).pack()
无论怎么变幻窗体大小,永远都在窗体的最上行的居中位置
Button 的 command属性调用方法,来执行事件
例如有个方法
def a():
print (‘已点击按钮‘)
tkinter.Button(form, text=‘hello button‘,command=a).pack()
点击3次按钮,执行了3次 a方法
方法一
tkinter.Button(form, text=‘hello button‘,width=10,height=1).pack()
或者(注意第一行没有.pack())
当
t1=tkinter.Button(form, text=‘button‘)
方法二
t1[‘width‘]=20
t1[‘height‘]=2
t1.pack()
方法三
t1.configure(width = 30,height = 3)
t1.pack()
默认是 NORMAL,还有一个状态是active目前不知道什么作用
禁用
tkinter.Button(form, text=‘hello button‘,width=10,height=1,state=tkinter.DISABLED).pack()
fg: 前景色(字体颜色)
tkinter.Button(form, text=‘hello button‘,width=10,height=1,fg=‘red‘).pack()
bg:背景色
tkinter.Button(form, text=‘hello button‘,width=10,height=1,bg=‘blue‘).pack()
属性 anchor
它的值有这8个方向
n(north),s(south),w(west),e(east)和ne,nw,se,sw,
已西北方向为例子
tkinter.Button(form, text=‘hello button‘,width=20,height=5,anchor=‘nw‘).pack()
属性 relief
tkinter.Button(form, text=‘hello button‘, relief=FLAT).pack()
测试没成功。。。。。。????
标签:height 方向 form 调用 事件 blog figure 分享 comment
原文地址:http://www.cnblogs.com/buchizaodian/p/7072550.html