博客
关于我
Python GUI tkinter库 自学21
阅读量:280 次
发布时间:2019-03-01

本文共 871 字,大约阅读时间需要 2 分钟。

简单对话框与通用消息框的使用示例

简单对话框

  • title表示窗口标题
  • prompt是提示信息
  • kw为命名参数,可设置各种选项
  • initialvalue为初始值
  • minvalue为最小值
  • maxvalue为最大值
函数名 说明
askfloat(title, prompt, **kw) 用于获取浮点数输入
askinteger(title, prompt, **kw) 用于获取整数输入
askstring(title, prompt, **kw) 用于获取字符串输入
示例代码:
from tkinter.simpledialog import * window = Tk() window.geometry("500x200")

def test1():a = askinteger(title="输入年龄", prompt="请输入年龄", initialvalue=18, minvalue=1, maxvalue=150)show["text"] = a

Button(window, text="你多大了?", command=test1).pack()show = Label(window, width=10, height=5, bg="green")show.pack()

window.mainloop()

通用消息框

示例代码:
from tkinter import * from tkinter.messagebox import *

window = Tk()window.geometry("500x200")

a = showinfo(title="学习", message="你会成功的!")print(a)

window.mainloop()

ttk子模块(简要介绍)

以上代码示例展示了如何在Tkinter应用程序中使用简单对话框和通用消息框功能。通过合理配置参数,开发者可以根据需求实现多种用户交互场景。此外,Tkinter的ttk子模块提供了丰富的组件和布局选项,能够进一步提升应用程序的用户体验。

转载地址:http://zkho.baihongyu.com/

你可能感兴趣的文章
npm build报错Cannot find module ‘webpack/lib/rules/BasicEffectRulePlugin‘解决方法
查看>>
npm build报错Cannot find module ‘webpack‘解决方法
查看>>
npm ERR! ERESOLVE could not resolve报错
查看>>
npm ERR! Unexpected end of JSON input while parsing near ‘...“:“^1.2.0“,“vue-html-‘ npm ERR! A comp
查看>>
npm error Missing script: “server“npm errornpm error Did you mean this?npm error npm run serve
查看>>
npm error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”。要解决此问题,1) 安装
查看>>
npm install CERT_HAS_EXPIRED解决方法
查看>>
npm install digital envelope routines::unsupported解决方法
查看>>
npm install 卡着不动的解决方法
查看>>
npm install 报错 EEXIST File exists 的解决方法
查看>>
npm install 报错 ERR_SOCKET_TIMEOUT 的解决方法
查看>>
npm install 报错 fatal: unable to connect to github.com 的解决方法
查看>>
npm install 报错 no such file or directory 的解决方法
查看>>
npm install 权限问题
查看>>
npm install报错,证书验证失败unable to get local issuer certificate
查看>>
npm install无法生成node_modules的解决方法
查看>>
npm install的--save和--save-dev使用说明
查看>>
npm node pm2相关问题
查看>>
npm run build 失败Compiler server unexpectedly exited with code: null and signal: SIGBUS
查看>>
npm run build报Cannot find module错误的解决方法
查看>>