导入easygui模块有很多种方法 , 这里只介绍一种简单使用的 .

 import easygui as g

将easygui 简称为g 然后开始调用她的函数就行.

 import easygui as g
import sys
while 1:
g.msgbox("显示一个窗口并且显示这些文字")# 只显示一个对话框并且只有一个ok
msg="你希望学到什么呢?"
title="小游戏互动" # 在左上角的 标题旷里面
choices=['谈恋爱','编程','ooxx','琴棋书画'] # 在选择框内 , 提供可选择项
choice=g.choicebox(msg,title,choices) # 在这里 choice 可以得到上面你选择的那个选项
g.msgbox("你的选择是:"+str(choice),'结果') # 打印出来
msg='你希望再来一次么?'
title='请选择'
if g.ccbox(msg,title): # ok为真 cancel为假
pass
else:
exit(0) # 用于退出程序 .
 >>> import easygui as g
>>> g.msgbox('我爱博主','人民心声')
'OK'

  在函数中有许多的默认参数  如下

 import easygui as g
import sys
choices=['愿意','不愿意','听从您的吩咐']
reply=g.choicebox('你愿意和我在一起么,美女.',choices=choices)
g.msgbox(reply)

msgbox的函数定义如下

 >>> help(g.msgbox)
Help on function msgbox in module easygui: msgbox(msg='(Your message goes here)', title=' ', ok_button='OK', image=None, root=None)
Display a messagebox

这里示范一下修改按钮的办法 .

 g.msgbox('are you ready?',ok_button='呦我草')

关于ccbox

 msgbox(msg='(Your message goes here)', title=' ', ok_button='OK', image=None, root=None)
 if g.ccbox('要再来一次吗?', choices=('要啊要啊^_^', '算了吧T_T')):
g.msgbox('不给玩了,再玩就玩坏了......')
else:
sys.exit(0) # 记得先 import sys 哈

关于buttonbox

 buttonbox(msg='', title=' ', choices=('Button1', 'Button2', 'Button3'), image=None, root=None)
 g.msgbox(g.buttonbox("我爱你",'你说爱不爱',('唉','你唉','爱爱爱','爱爱爱')))

如何添加图片.

 import easygui as g
import sys
g.buttonbox('大家说我长得帅吗?', image='D:/Documents/Pictures/2.gif', choices=('帅', '不帅', '!@#$%'))

为用户提供一组选项.

 multchoicebox(msg='Pick as many items as you like.', title=' ', choices=(), **kwargs)
Present the user with a list of choices.
allow him to select multiple items and return them in a list.
if the user doesn't choose anything from the list, return the empty list.
return None if he cancelled selection.
 import easygui as g
str1=g.multchoicebox('你现在最想干啥','这是标题',('抽烟','打游戏','和蔡伟伟一起玩','学东西写代码','唉,日了狗了'))
if str1==None:
g.msgbox('如果点击取消的话 会返回一个 None')
print(str1)
g.msgbox(str1)

让用户输入

 enterbox(msg='Enter something.', title=' ', default='', strip=True, image=None, root=None)
Show a box in which a user can enter some text. You may optionally specify some default text, which will appear in the
enterbox when it is displayed. Returns the text that the user entered, or None if he cancels the operation. By default, enterbox strips its result (i.e. removes leading and trailing
whitespace). (If you want it not to strip, use keyword argument: strip=False.)
This makes it easier to test the results of the call:: reply = enterbox(....)
if reply:
...
else:
 >>> str1=g.enterbox(msg='请输入你想说的话', title='交互界面 ', default='这是默认用户输入', strip=True, image='D:/Documents/Pictures/2.gif', root=None)

让用户输入数据

integerbox(msg='', title=' ', default='', lowerbound=0, upperbound=99, image=None, root=None, **invalidKeywordArguments)
 >>> g.integerbox(msg='输入你的分数 0~150', title='分数采集 ', default=0, lowerbound=0, upperbound=150)
150

显示文本文档.

 import easygui as g
f=open('C:/Users/Administrator/Desktop/新建文本文档.txt')
str1=f.read()
g.textbox('下面是题解','求模',str1,1)

输入帐号密码.

 passwordbox(msg='Enter your password.', title=' ', default='', image=None, root=None)
g.msgbox(g.passwordbox('输入你的密码','登陆提示',''))

帐号密码登录框

 multpasswordbox(msg='Fill in values for the fields.', title=' ', fields=(), values=())
Same interface as multenterbox. But in multpassword box,
the last of the fields is assumed to be a password, and
is masked with asterisks.
import easygui as g
(account,password)=g.multpasswordbox('请输入您的账号密码','登录框',('帐号','密码'))
g.msgbox('帐号: '+account+'\n'+'密码: '+password)

目录和文件

 import easygui as g
#gui编程中常见的一个场景是要求用户输入目录或者文件名
#easygui提供了一些基本的函数让用户来浏览文件系统,选择一个目录或者文件.
str1=g.diropenbox('选择文件目录','浏览文件夹','C:/Users/Administrator/Desktop')
g.msgbox(str1)

选择一个文件并且返回包括文件名的目录

 fileopenbox(msg=None, title=None, default='*', filetypes=None)
 import easygui as g
#fileopenbox()函数用于提供一个对话框 , 返回用户选择的文件名(带完整路径)
#如果用户选择 Cancel则返回None.
str1=g.fileopenbox('选择文件','提示','C:/Users/Administrator/Desktop/__pycache__')
g.msgbox(str1)

Python的图形化界面的更多相关文章

  1. python——Tkinter图形化界面及threading多线程

    Tkinter模块("Tk 接口")是Python的标准Tk GUI工具包的接口.Tk和Tkinter可以在大多数的Unix平台下使用,同样可以应用在Windows和Macinto ...

  2. PySide——Python图形化界面

    PySide——Python图形化界面 PySide——Python图形化界面入门教程(四) PySide——Python图形化界面入门教程(四) ——创建自己的信号槽 ——Creating Your ...

  3. PySide——Python图形化界面入门教程(四)

    PySide——Python图形化界面入门教程(四) ——创建自己的信号槽 ——Creating Your Own Signals and Slots 翻译自:http://pythoncentral ...

  4. PySide——Python图形化界面入门教程(六)

    PySide——Python图形化界面入门教程(六) ——QListView和QStandardItemModel 翻译自:http://pythoncentral.io/pyside-pyqt-tu ...

  5. PySide——Python图形化界面入门教程(五)

    PySide——Python图形化界面入门教程(五) ——QListWidget 翻译自:http://pythoncentral.io/pyside-pyqt-tutorial-the-qlistw ...

  6. PySide——Python图形化界面入门教程(三)

    PySide——Python图形化界面入门教程(三) ——使用内建新号和槽 ——Using Built-In Signals and Slots 上一个教程中,我们学习了如何创建和建立交互widget ...

  7. PySide——Python图形化界面入门教程(二)

    PySide——Python图形化界面入门教程(二) ——交互Widget和布局容器 ——Interactive Widgets and Layout Containers 翻译自:http://py ...

  8. PySide——Python图形化界面入门教程(一)

    PySide——Python图形化界面入门教程(一) ——基本部件和HelloWorld 翻译自:http://pythoncentral.io/intro-to-pysidepyqt-basic-w ...

  9. python+pycharm+PyQt5 图形化界面安装教程

    python图形化界面安装教程 配置环境变量 主目录 pip所在目录,及script目录 更新pip(可选) python -m pip install --upgrade pip ps:更新出错一般 ...

随机推荐

  1. 安装Ubuntu Linux系统时硬盘分区最合理的方法

    无论是安装Windows还是Linux操作系统,硬盘分区都是整个系统安装过程中最为棘手的环节,网上的一些Ubuntu Linux安装教程一般都是自动分区,给初学者带来很大的不便,下面我就根据多年来在合 ...

  2. VBA中四种自动运行的宏以及模块的含义

    在Excel的“标准模块”中可以创建4种自动运行的宏,它们分别是Auto_Open(打开工作 簿时自动运行), Auto_Close, Auto_Activate,  Auto_Deactivate. ...

  3. 数据库中Schema(模式)概念的理解

    在学习SQL的过程中,会遇到一个让你迷糊的Schema的概念.实际上,schema就是数据库对象的集合,这个集合包含了各种对象如:表.视图.存储过程.索引等.为了区分不同的集合,就需要给不同的集合起不 ...

  4. Qt Charts

    简述 Qt Charts模块提供了一套易于使用的图表组件.它采用了Qt Graphics View框架,因此图表可以很容易地集成到现代的用户界面. Qt Charts可以被用作QWidgets.QGr ...

  5. Qt之QParallelAnimationGroup

    简述 QParallelAnimationGroup类提供动画的并行组. QParallelAnimationGroup - 一个动画容器,当它启动的时候它里面的所有动画也启动,即:并行运行所有动画, ...

  6. javaSE之如何将一个文件复制到另一个文件

    /* * (1). 文件字符输入,输出流 * 文件字节输入,输出流的read和write方法使用 * 字节数组读写数据,即以字节为单位处理数据,因此,字节流不能很好的操作Unicode字符 * ,比如 ...

  7. Java 之 I/O 系列 01 ——基础

    Java 之 I/O 系列 目录 Java 之 I/O 系列 01 ——基础 Java 之 I/O 系列 02 ——序列化(一) Java 之 I/O 系列 02 ——序列化(二) 整理<疯狂j ...

  8. java中将一个字符数组赋值给另一个,两者同时变化

    java中将一个字符数组赋值给另一个,两者的变化怎么是同步的?怎么才能让他们独立开? 比如有一个int[][] a 已经存在值,现在定义int[][] b=a;之后改变a的值,为何b也跟着改变?怎么才 ...

  9. PHP生成word的三种方式

    摘要: 最近工作遇到关于生成word的问题 现在总结一下生成word的三种方法. btw:好像在博客园发表博客只要是标题带PHP的貌似点击量都不是很高(哥哥我标题还是带上PHP了),不知道为什么,估计 ...

  10. B+树索引和哈希索引的区别——我在想全文搜索引擎为啥不用hash索引而非得使用B+呢?

    哈希文件也称为散列文件,是利用哈希存储方式组织的文件,亦称为直接存取文件.它类似于哈希表,即根据文件中关键字的特点,设计一个哈希函数和处理冲突的方法,将记录哈希到存储设备上. 在哈希文件中,是使用一个 ...