标签:python
使用Tkinter进行开发
简单文本窗口实现:
下载tkinter模块
yum -y install tkinter
最简单的Tkinter窗口
from tkinter import * #将Tkinter模块中的符号都导入进来 root = Tk() #为了初始化Tkinter,首先创建一个Tk的根部件 word = Label(root,text="hello,World") #创建一个标签部件,并赋值给word变量,第一个参数root为此部件的父部件,使用text关键字来显示文本“Hellp” word.pack() root.mainloop()
#filename:tkinter_1.py from tkinter import * class App: def __init__(self,master): frame = Frame(master) frame.pack() self.hello = Button(frame, text="hello", command=self.hello) self.hello.pack(side=LEFT) self.quit = Button(frame, text="Quit", fg="red", command=frame.quit) self.quit.pack(side=RIGHT) def hello(self): print("Hello,world!") root = Tk() root.wm_title("hello") root.wm_minsize(200,200) app = App(root) root.mainloop()
本文出自 “谢育政” 博客,请务必保留此出处http://kurolz.blog.51cto.com/11433546/1935034
标签:python
原文地址:http://kurolz.blog.51cto.com/11433546/1935034