1 Star 0 Fork 0

Nidhogg14/CorePython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tkhelloD.py 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# Label、Button 和 Scale 控件演示
from Tkinter import *
def resize(ev=None):
label.config(font='Helvetica -%d bold' % \
scale.get())
top = Tk()
top.geometry('250x150')
label = Label(top, text='Hello World!',
font='Helvetica -12 bold')
label.pack(fill=Y, expand=1)
scale = Scale(top, from_=10, to=40,
orient=HORIZONTAL, command=resize)
scale.set(12)
scale.pack(fill=X, expand=1)
quit = Button(top, text='QUIT',
command=top.quit, activeforeground='white',
activebackground='red')
quit.pack()
mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Nidhogg14/CorePython.git
git@gitee.com:Nidhogg14/CorePython.git
Nidhogg14
CorePython
CorePython
main

搜索帮助