python3使用tkinter實現ui介面簡單一實例

來源:互聯網
上載者:User

代碼如下:


import time
import tkinter as tk

class Window:
def __init__(self, title='nms', width=300, height=120, staFunc=bool, stoFunc=bool):
self.w = width
self.h = height
self.stat = True
self.staFunc = staFunc
self.stoFunc = stoFunc
self.staIco = None
self.stoIco = None

self.root = tk.Tk(className=title)

def center(self):
ws = self.root.winfo_screenwidth()
hs = self.root.winfo_screenheight()
x = int( (ws/2) - (self.w/2) )
y = int( (hs/2) - (self.h/2) )
self.root.geometry('{}x{}+{}+{}'.format(self.w, self.h, x, y))

def packBtn(self):
self.btnSer = tk.Button(self.root, command=self.event, width=15, height=3)
self.btnSer.pack(padx=20, side='left')
btnQuit = tk.Button(self.root, text='關閉視窗', command=self.root.quit, width=15, height=3)
btnQuit.pack(padx=20, side='right')

def event(self):
self.btnSer['state'] = 'disabled'
if self.stat:
if self.stoFunc():
self.btnSer['text'] = '啟動服務'
self.stat = False
self.root.iconbitmap(self.stoIco)
else:
if self.staFunc():
self.btnSer['text'] = '停止服務'
self.stat = True
self.root.iconbitmap(self.staIco)
self.btnSer['state'] = 'active'

def loop(self):
self.root.resizable(False, False) #禁止修改視窗大小
self.packBtn()
self.center() #視窗置中
self.event()
self.root.mainloop()

########################################################################
def sta():
print('start.')
return True
def sto():
print('stop.')
return True

if __name__ == '__main__':
import sys, os

w = Window(staFunc=sta, stoFunc=sto)
w.staIco = os.path.join(sys.exec_prefix, 'DLLs\pyc.ico')
w.stoIco = os.path.join(sys.exec_prefix, 'DLLs\py.ico')
w.loop()

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.