Feb-20-2021, 05:12 PM
#! /usr/bin/env python3 import wx import time import wx.gizmos as gizmos def do_timer(event): cur = time.localtime(time.time()) fmt = time.strftime('%I:%M:%S', cur) led.SetValue(fmt) app = wx.App() window = wx.Frame(None, title='Digital Clock', size=(330,110), style=wx.DEFAULT_FRAME_STYLE) led = gizmos.LEDNumberCtrl(window, -1, wx.DefaultPosition, wx.DefaultSize, \ gizmos.LED_ALIGN_RIGHT) led.SetForegroundColour('red') timer = wx.Timer(window, -1) timer.Start(1000) window.Bind(wx.EVT_TIMER, do_timer) window.Show(True) app.MainLoop()
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts