Python Tkinter 모듈 시계 기능 구현 예시
4374 단어 PythonTkinter 모듈클 록
이 컴퓨터 테스트 효과:
전체 코드:
# coding=utf-8
from Tkinter import *
import _tkinter
import math
import time
from threading import Thread
class Clock:
def __init__(self, master, x, y, width, height, radius):
'''
:param master:
:param x: x
:param y: y
:param width:
:param height:
:param radius:
'''
self.centerX = x
self.centerY = y
self.radius = radius
self.canvas = Canvas(master, width=width, height=height) #
self.canvas.pack()
self.canvas.create_oval(
x - radius,
y - radius,
x + radius,
y + radius) #
self.id_lists = []
self.hourHandRadius = self.radius * 1.0 / 4 #
self.minHandRadius = self.radius * 2.0 / 3 #
self.secHandRadius = self.radius * 4.0 / 5 #
self.timeVar = StringVar()
# self.timeVar.set('')
self.timeLabel = Label(self.canvas.master, textvariable=self.timeVar)
self.timeLabel.pack(side=BOTTOM)
#self.canvas.master.protocol('WM_DELETE_WINDOW', self.canvas.master.destroy)
def __del__(self):
self._deleteItems(self.id_lists)
#
def drawClockDial(self):
# 1-12
r = self.radius - 15
for i in range(1, 13):
rad = 2 * math.pi / 12 * i
x = self.centerX + math.sin(rad) * r
y = self.centerY - math.cos(rad) * r
id = self.canvas.create_text(x, y, text=str(i))
self.id_lists.append(id)
#
r1 = self.radius - 5
r2 = self.radius
for i in range(1, 61):
rad = 2 * math.pi / 60 * i
x1, y1 = self._getPosByRadAndRadius(rad, r1)
x2, y2 = self._getPosByRadAndRadius(rad, r2)
id = self.canvas.create_line(x1, y1, x2, y2)
self.id_lists.append(id)
#
def showTime(self, tm):
hour = tm.tm_hour % 12
min = tm.tm_min
sec = tm.tm_sec
sec_rad = 2 * math.pi / 60 * sec
min_rad = 2 * math.pi / 60 * (min + sec / 60.0)
hour_rad = 2 * math.pi / 12 * (hour + min / 60.0)
timeStr = ' : %d-%02d-%02d %02d:%02d:%02d' % (
tm.tm_year, tm.tm_mon, tm.tm_mday, hour, min, sec)
self.timeVar.set(timeStr)
hour_id = self._drawLine(hour_rad, self.hourHandRadius, 6)
min_id = self._drawLine(min_rad, self.minHandRadius, 4)
sec_id = self._drawLine(sec_rad, self.secHandRadius, 3)
return (hour_id, min_id, sec_id)
def run(self):
def _run():
while True:
tm = time.localtime()
id_lists = self.showTime(tm)
self.canvas.master.update()
time.sleep(1)
self._deleteItems(id_lists)
thrd = Thread(target=_run) #
thrd.run() #
def _drawLine(self, rad, radius, width):
x, y = self._getPosByRadAndRadius(rad, radius)
id = self.canvas.create_line(
self.centerX, self.centerY, x, y, width=width)
return id
def _getPosByRadAndRadius(self, rad, radius):
x = self.centerX + radius * math.sin(rad)
y = self.centerY - radius * math.cos(rad)
return (x, y)
def _deleteItems(self, id_lists):
for id in id_lists:
try:
self.canvas.delete(id)
except BaseException:
pass
if __name__ == '__main__':
root = Tk()
root.title('www.jb51.net ')
clock = Clock(root, 200, 200, 400, 400, 150)
clock.drawClockDial()
clock.run()
root.mainloop()
해결 해 야 할 bug:프로그램 을 닫 을 때 다음 과 같은 오류 가 발생 합 니 다.
Python 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.
본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.