码迷,mamicode.com
首页 > 编程语言 > 详细

Python图形用户界面

时间:2018-05-12 12:44:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:图形   env   窗口   and   创建   程序代码   expand   连接   inter   

1.使用Tkinter创建图形用户界面的步骤

(1)导入Tkinter模块,使用import Tkinter或from Tkinter import *

(2)创建顶层窗口对象容器,使用top = Tkinter.Tk()

(3)在顶层窗口对象上创建GUI对象

(4)将GUI对象与底层程序代码相连接

(5)进入主事件循环

 

例如:

# !/usr/bin/env python

import Tkinter

top = Tkinter.Tk()
label = Tkinter.Label(top, text="Hello, World")
label.pack()
Tkinter.mainloop()

 

# !/usr/bin/env python


import Tkinter
top = Tkinter.Tk()

hello_label = Tkinter.Label(top, text="Hello, World")
hello_label.pack()

quit_button = Tkinter.Button(top, text="Quit", command=top.quit,  bg="pink", fg="blue")
quit_button.pack(fill=Tkinter.X, expand=1)

Tkinter.mainloop()

 

Python图形用户界面

标签:图形   env   窗口   and   创建   程序代码   expand   连接   inter   

原文地址:https://www.cnblogs.com/liuzhiqaingxyz/p/9028295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!