51Testing软件测试论坛
标题:
【我分享】python使用Tkinter编写GUI
[打印本页]
作者:
张亚洲
时间:
2015-1-6 08:34
标题:
【我分享】python使用Tkinter编写GUI
如果需要在Tkinter的窗口、组件中显示中文,除了在“.py”脚本文件中的首行添加“#-*-coding:utf-8-*-”指明字符编码之外,还应该将脚本保存成"UTF-8"的编码格式。
[python]
view plain
copy
#-*- coding:utf-8 -*-
#file:TkinterWindow.py
#
import Tkinter #导入Tkinter模块
root=Tkinter.Tk() #生成root主窗口
label=Tkinter.Label(root,text="Hello,Tkinter!") #生成标签
label.pack() #将标签添加到root主窗口
button1=Tkinter.Button(root,text="Button1") #生成button1
button1.pack(side=Tkinter.LEFT) #将button1添加到root主窗口
button2=Tkinter.Button(root,text="Button2")
button2.pack(side=Tkinter.RIGHT)
root.mainloop() #进入消息循环
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2