python的图形用户界面介绍
作者:CZU_zzjj 时间:2023-04-08 19:55:46
python的图形用户界面
我是大帅哥啊 python的图形用户界面msgbox的使用ccbox的使用buttonbox的使用buttonbox添加图片 choicebox的使用multchoicebox的使用
msgbox的使用
magbox()函数显示一个消息和提供一个ok的按钮
示例1:
import easygui as AX
AX.msgbox("嗨,欢迎进入\n第一个\n界面小游戏","zhaojie")
ccbox的使用
ccbox() 函数提供一个选择:C[o]ntinue 或C[a]ncel (对应的按下键盘‘o’或键盘‘a’代替鼠标操作,[]括起来的字母就是对应的按键,当然continue和cancel也可以根据自己的需求设计)
示例2:
import easygui as AX
import sys
msg = "请问,你是大帅哥吗"
title = "魔镜"
choices = ('是([y])','不是([n])')
AX.ccbox(msg ,title,choices)
buttonbox的使用
buttonbox()函数的用法:
buttonbox(msg = '',title = '',choices = ('button[1]','butthon[2]','button[3]'),image=None,default_choice=None,cancel_choice=None,callback=None,run=True)
示例3:
import easygui as AX
import sys
###写法1###
msg = '我是大帅哥吗?'
title = '魔镜'
choices = ('贼帅([1])','很帅([2])','最帅([3])')
AX.buttonbox(msg,title,choices)
###写法2###
AX.buttonbox(msg = '我是大帅哥吗?',title = '魔镜',choices = ('贼帅([1])','很帅([2])','最帅([3])'),image=None,default_choice=None,cancel_choice=None,callback=None,run=True)
buttonbox添加图片
在buttonbox里面显示图片:
大家注意到在上面buttonbox函数里面image = None,因此只需要将None改为对应的图片就行了
import easygui as AX
import sys
####写法1####
msg = '我是大帅哥吗?'
title = '魔镜'
choices = ('贼帅([1])','很帅([2])','最帅([3])')
image = 'OIP-C.jpg'
AX.buttonbox(msg,title,choices,image)
###写法2###
AX.buttonbox(msg = '我是大帅哥吗?',title = '魔镜',choices = ('贼帅([1])','很帅([2])','最帅([3])'),image='OIP-C.jpg',default_choice=None,cancel_choice=None,callback=None,run=True)
choicebox的使用
choicebox 的使用:
choicebox(msg='',title='',choices=[],preselect=0,callback=None,run=True)
choicebox()函数提供一个可供选择的列表,
import easygui as AX
import sys
AX.choicebox(msg='谁是大帅哥?',title='摸着自己的良心说',choices=["孙行者","者行孙","行者孙"],preselect=0,callback=None,run=True)
multchoicebox的使用
multchoicebox的用法:
与choicebox的用法一样,支持多项选择
import easygui as AX
import sys
AX.multchoicebox(msg='谁是大帅哥?',title='摸着自己的良心说',choices=["孙行者","者行孙","行者孙"],preselect=0,callback=None,run=True)
来源:https://blog.csdn.net/Matlabonly/article/details/122411731
标签:python,图形,界面
0
投稿
猜你喜欢
python操作XML格式文件的一些常见方法
2023-02-10 00:06:12
如何使用分区处理MySQL的亿级数据优化
2024-01-21 04:49:01
javascript中caller和callee详解
2024-04-29 13:38:05
Python字符串逆序输出的实例讲解
2023-04-21 22:59:46
浅析Python+OpenCV使用摄像头追踪人脸面部血液变化实现脉搏评估
2023-08-05 18:46:48
Pandas提取单元格的值操作
2022-10-19 08:34:21
Python中切片的详细操作篇
2021-11-29 13:33:26
Mybatis的where标签使用总结梳理
2024-01-17 01:56:18
JS Object.preventExtensions(),Object.seal()与Object.freeze()用法实例分析
2023-09-04 22:44:33
关于设计的六个误会
2008-06-26 18:18:00
Python pymsql模块的使用
2023-01-08 15:23:00
Windows 下 MySQL 8.X 的安装教程
2024-01-14 03:05:33
python正则表达式re之compile函数解析
2022-12-03 04:24:02
浅谈在django中使用filter()(即对QuerySet操作)时踩的坑
2022-05-03 10:24:49
google广告之另类js调用实现代码
2024-05-11 09:44:21
Python编程技巧连接列表的八种操作方法
2022-02-10 02:08:54
windows server2016安装MySQL5.7.19解压缩版教程详解
2024-01-22 01:16:29
Python浅析匿名函数lambda的用法
2022-07-19 18:29:29
浅谈如何提高PHP代码的质量
2024-06-05 09:47:05
交互因视觉设计而更完美
2008-05-31 17:22:00