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

python gui

时间:2015-02-02 16:09:16      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:python   import   

import easygui
easygui.msgbox("HELLO LMDTX !")
#使用按钮得到输入
import easygui
a = easygui.buttonbox("what is you need :", choices = [‘a‘,‘b‘,‘c‘])
easygui.msgbox("you need:" + a)
#使用选择框得到输入
# 点击cancel 将会由系统报错
# 在easygui.py 使用 vim root_width 0.8 root_height 0.5 修改一下,就可以控制选择框的大小
import easygui
a = easygui.choicebox("what is you need :", choices = [‘a‘,‘b‘,‘c‘])
easygui.msgbox("you need:" + a)
#使用输入框得到输入
import easygui
a = easygui.enterbox("what is you need :")
easygui.msgbox("you need:" + a)
#使用输入框得到输入,有默认值
import easygui
a = easygui.enterbox("what is you need :", default = ‘DT‘)
easygui.msgbox("you need:" + a)


python gui

标签:python   import   

原文地址:http://lmdtx.blog.51cto.com/6942028/1610679

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