摘要:
一、参数说明 语法作用 Radiobutton(root,text='xxxx') 单选框文本显示内容 Radiobutton(root,variable=color) 单选框索引变量,通过变量的值确定哪个单选框被选中 Radiobutton(root,variable=color,value='r 阅读全文
摘要:
一、参数说明 语法作用 Entry(root,width=20) 组件的宽度(所占字符个数) Entry(root,fg='blue') 前景字体颜色 Entry(root,bg='blue') 背景颜色 Entry(root,show="*") 将Entry框中的文本替换为指定字符 Entry(r 阅读全文
摘要:
一、参数说明 语法作用 Button(root,text='xxxx') 按钮图标显示内容 Button(root,text='xxxx',height=2) 组件的高度(所占行数) Button(root,text='xxxx',width=20) 组件的宽度(所占字符个数) Button(tex 阅读全文
摘要:
一、参数说明 语法作用 Label(window,text=‘xxxxx’) 需要在界面显示的Label标签内容 Label(window,text=‘xxxxx’,height=2) 组件的高度(所占行数) Label(root,text=‘xxxxx’,height=2,width=20) 组件 阅读全文
摘要:
一、常用参数 语法作用 window= tk.TK() 创建窗口 window['height'] = 300 设置高 window['width'] = 500 设置宽 window.title('魔方小站') 设置标题 window['bg'] = '#0099ff' 设置背景色 window. 阅读全文