Python编程:tkinter创建GUI可视化界面
【摘要】 简单的测试一下tkinter
import tkinter as tk
from tkinter import ttk
from tkinter import messagebox
root = tk.Tk() # 生成主窗口
root.title("窗体测试程序") # 窗体名称
root.geometry("400x300") # 指定窗体大小
...
简单的测试一下tkinter
import tkinter as tk
from tkinter import ttk
from tkinter import messagebox
root = tk.Tk() # 生成主窗口
root.title("窗体测试程序") # 窗体名称
root.geometry("400x300") # 指定窗体大小
label = ttk.Label(root, text="hello world")
label.pack()
# 事件
def click(event): messagebox.showinfo("hello world", "this is a some info")
button1 = tk.Button(root, text="tk-button")
button1.bind("<Button-1>", click)
button1.pack(side=tk.LEFT)
button2 = ttk.Button(root, text="ttk-button")
button2.bind("<Button-1>", click)
button2.pack(side=tk.RIGHT)
root.mainloop() # 消息循环
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
界面效果:
参考:
tkinter模块常用参数(python3)
https://www.cnblogs.com/aland-1415/p/6849193.html
Tkinter简易教程
https://www.cnblogs.com/tkinter/p/5629578.html
pyhon之Tkinter实例化学习
https://www.cnblogs.com/kaituorensheng/p/3287652.html
Python基础总结(七)(Tkinter的GUI的程序设计)
https://www.jianshu.com/p/5c7a1af4aa53
An Introduction to Tkinter (Work in Progress)
http://effbot.org/tkinterbook/
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/79390235
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)