- 论坛徽章:
- 0
|
回复 105# young_py
这是一个最简单的例子:
t.rar
(1.02 KB, 下载次数: 12)
- #!/usr/bin/env python
- #-*- coding:utf-8 -*-
- import os, sys
- try:
- from tkinter import *
- except ImportError: #Python 2.x
- from Tkinter import *
- from tkFont import Font
- from ttk import *
- from tkMessageBox import showinfo
- else: #Python 3.x
- from tkinter import *
- from tkinter.ttk import *
- from tkinter.messagebox import showinfo
- from threading import Thread, Event
- class Application_ui(Frame):
- def __init__(self, master=None):
- Frame.__init__(self, master)
- self.master.title('Demo')
- self.master.geometry('354x154')
- self.createWidgets()
- def createWidgets(self):
- self.top = self.winfo_toplevel()
- self.style = Style()
- self.lbl**ar = StringVar(value='0')
- self.style.configure('TlblCnt.TLabel', anchor='center', font=('Arial',16))
- self.lblCnt = Label(self.top, text='0', textvariable=self.lbl**ar, style='TlblCnt.TLabel')
- self.lblCnt.place(relx=0.153, rely=0.175, relwidth=0.638, relheight=0.299)
- self.cmdStart = Button(self.top, text='Start', command=self.cmdStart_Cmd)
- self.cmdStart.place(relx=0.051, rely=0.643, relwidth=0.384, relheight=0.24)
- self.cmdStop = Button(self.top, text='Stop', command=self.cmdStop_Cmd)
- self.cmdStop.place(relx=0.534, rely=0.643, relwidth=0.384, relheight=0.24)
- class Application(Application_ui):
- def __init__(self, master=None):
- Application_ui.__init__(self, master)
- self.evStop = Event()
- self.thread = None
- def cmdStart_Cmd(self, event=None):
- if self.thread is not None and self.thread.is_alive():
- showinfo('Info', "Thread is runing!")
- else:
- self.evStop.clear()
- self.thread = Thread(target=self.ProcessCnt, args=(self.evStop,1000))
- self.thread.start()
-
- def cmdStop_Cmd(self, event=None):
- if self.thread is None or not self.thread.is_alive():
- showinfo('Info', 'Thread is not alive!')
- else:
- self.evStop.set()
-
- def ProcessCnt(self, evStop, Cnt):
- total = 0
- for i in range(0, Cnt):
- for j in range(100000): # 示范长时间操作
- total += 1
-
- self.lbl**ar.set(i)
-
- if evStop.is_set():
- self.lbl**ar.set("Stopped by User!")
- return 1 #用户中止
-
- self.lbl**ar.set("Thread Finished!")
-
-
- if __name__ == "__main__":
- top = Tk()
- Application(top).mainloop()
复制代码 |
|