博客
关于我
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/

你可能感兴趣的文章
object detection训练自己数据
查看>>
object detection错误Message type "object_detection.protos.SsdFeatureExtractor" has no field named "bat
查看>>
object detection错误之Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR
查看>>
object detection错误之no module named nets
查看>>
Object of type 'ndarray' is not JSON serializable
查看>>
Object Oriented Programming in JavaScript
查看>>
object references an unsaved transient instance - save the transient instance before flushing
查看>>
Object 类的常见方法有哪些?
查看>>
Object-c动态特性
查看>>
Object.assign用法
查看>>
Object.create
查看>>
Object.defineProperty详解
查看>>
Object.keys()的详解和用法
查看>>
objectForKey与valueForKey在NSDictionary中的差异
查看>>
Objective - C 小谈:消息机制的原理与使用
查看>>
OBJECTIVE C (XCODE) 绘图功能简介(转载)
查看>>
Objective-C ---JSON 解析 和 KVC
查看>>
Objective-C 编码规范
查看>>
Objective-Cfor循环实现Factorial阶乘算法 (附完整源码)
查看>>
Objective-C——判断对象等同性
查看>>