模型设计思路:
1、制作一个界面,一个包含开始和停止的控制按钮,点击开始,界面上随机出现奖品名称,点击停止选中奖品;
2、创建5个函数:启停控制函数on_off、开始函数begin、停止函数stop、定时器函数mymonitor、抽奖函数myfunc;
程序运行原理:
定时器函数常开运行,每隔0.05秒启动一次抽奖函数。抽奖函数运行时执行两个步骤。一是执行判断mycase标记状
态,mycase==1时,执行抽奖语句,否则赋值mycase为0;二是执行定时器函数。
模型程序代码
# -*-coding=utf-8 -*-
# Author:HaiFeng
# Date:2023.01.20
import tkinter as tk
import random
from threading import Timer
content = ['华为手机', '苹果手机', '小米手机', '寿山石雕', '劳斯莱斯', '德州黑陶',
'现金壹佰', '股票壹亿', '话费壹仟', '梦想一个']
global mycase
mycase = 0
def begin():
global mycase
mycase = 1
def stop():
global mycase
mycase = 0
def mymonitor():
t = Timer(0.05,myraffle)
t.start()
def myraffle():
global mycase
if mycase==1:
randVar.set(random.choice(content))
else:
mycase=0
mymonitor()
mymonitor()
def on_off():
if btn['text'] == '开始':
begin()
btn['text'] = '停止'
else:
stop()
btn['text'] = '开始'
mywin = tk.Tk()
mywin.title('raffle model')
mywin.geometry('200x200')
randVar = tk.StringVar()
lb1 = tk.Label(mywin,textvariable=randVar,font='微软雅黑 16',bg='yellow',fg='red')
lb1.pack(pady=36)
btn = tk.Button(mywin,text='开始',command=on_off)
btn.pack(side=tk.BOTTOM)
mywin.mainloop()