【说站】python Tkinter模块是什么
2025-01-03
8
python Tkinter模块是什么
说明
1、Tkinter模块是Python的标准TkGUI工具包的接口。
2、Tk和Tkinter可以在大多数Unix平台下使用,也可以应用于Windows和Macintosh系统。
Tk8.0后续版本可以实现本地窗口风格,在绝大多数平台上运行良好。
实例
import tkinter import time import threading from random import random from tkinter import messagebox as tkMessageBox class choujiang: # 初始化魔术方法 def __init__(self): # 准备好界面 self.root = tkinter.Tk() self.root.title('lowB版转盘') self.root.minsize(300, 300) # 声明一个是否按下开始的变量 self.isloop = False self.newloop = False self.value = [] # 调用设置界面的方法 self.setwindow() self.root.mainloop() # 界面布局方法 def setwindow(self): # 开始停止按钮 self.btn_start = tkinter.Button(self.root, text='start/stop', command=self.newtask) self.btn_start.place(x=125, y=125, width=70, height=70) self.btn1 = tkinter.Button(self.root, text='1', bg='red') self.btn1.place(x=20, y=20, width=50, height=50) self.btn2 = tkinter.Button(self.root, text='2', bg='white') self.btn2.place(x=90, y=20, width=50, height=50) self.btn3 = tkinter.Button(self.root, text='3', bg='white') self.btn3.place(x=160, y=20, width=50, height=50) self.btn4 = tkinter.Button(self.root, text='3', bg='white') self.btn4.place(x=230, y=20, width=50, height=50) self.btn5 = tkinter.Button(self.root, text='3', bg='white') self.btn5.place(x=230, y=90, width=50, height=50) self.btn6 = tkinter.Button(self.root, text='2', bg='white') self.btn6.place(x=230, y=160, width=50, height=50) self.btn7 = tkinter.Button(self.root, text='1', bg='white') self.btn7.place(x=230, y=230, width=50, height=50) self.btn8 = tkinter.Button(self.root, text='3', bg='white') self.btn8.place(x=160, y=230, width=50, height=50) self.btn9 = tkinter.Button(self.root, text='2', bg='white') self.btn9.place(x=90, y=230, width=50, height=50) self.btn10 = tkinter.Button(self.root, text='3', bg='white') self.btn10.place(x=20, y=230, width=50, height=50) self.btn11 = tkinter.Button(self.root, text='1', bg='white') self.btn11.place(x=20, y=160, width=50, height=50) self.btn12 = tkinter.Button(self.root, text='3', bg='white') self.btn12.place(x=20, y=90, width=50, height=50) # 将所有选项组成列表 self.girlfrends = [self.btn1, self.btn2, self.btn3, self.btn4, self.btn5, self.btn6, self.btn7, self.btn8, self.btn9, self.btn10, self.btn11, self.btn12] def rounds(self): # 判断是否开始循环 if self.isloop == True: return # 初始化计数 变量 i = 0 # 死循环 while True: if self.newloop == True: self.newloop = False self.value = self.girlfrends[i - 1]['text'] if self.value =='1': tkMessageBox.showinfo( "Winning Result", "恭喜获得一等奖 !'") if self.value == '2': tkMessageBox.showinfo("Winning Result", "恭喜获得二等奖 !") if self.value == '3': tkMessageBox.showinfo("Winning Result", '恭喜获得三等奖!') return # 延时操作 time.sleep(0.1) # 将所有的组件背景变为白色 for x in self.girlfrends: x['bg'] = 'white' # 将当前数值对应的组件变色 self.girlfrends[i]['bg'] = 'red' # 变量+1 i += 1 # 如果i大于索引直接归零 if i >= len(self.girlfrends): i = 0 # 建立一个新线程的函数 def newtask(self): if self.isloop == False: # 建立线程 t = threading.Thread(target=self.rounds) # 开启线程运行 t.start() # 设置循环开始标志 self.isloop = True elif self.isloop == True: self.isloop = False self.newloop = True #转盘效果 c = choujiang()
以上就是python Tkinter模块的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:2天前赞一波!
相关文章
- 【说站】python中isprintable判断字符的使用
- 【说站】python中capitalize的三种转换操作
- 【说站】python isidentifier()方法是什么
- 【说站】判断水仙花数python代码
- 【说站】python中isnumeric如何使用
- 【说站】python最短路径有哪些算法
- 【说站】python casefold()方法如何使用
- 【说站】凯撒密码python编程简单
- 【说站】python center()如何填充字符串
- 【说站】python isdigit如何判断字符串
- 【说站】python美元转换成人民币转换代码
- 【说站】python输入身高体重算BMI
- 【说站】python命名关键字参数的使用注意
- 【说站】python基本颜色代码
- 【说站】python如何防止栈溢出
- 【说站】python归并排序和快速排序比较
- 【说站】python归并排序的基本思路
- 【说站】python快速排序的运作过程
- 【说站】python异常是什么?如何解决?
- 【说站】python中mock有哪些统计的方法
文章评论
评论问答