wxPython继续更新面板

时间:2011-08-10 19:28:00

标签: python user-interface wxpython

我是wxPython的新手,无法解决一个问题。我需要不断更新具有时钟值的面板。我有一个解决方案,但在这种情况下,我通常无法关闭窗口(alt + f4不起作用)。 另外我不明白.Update .Refresh与何时应该调用.Destroy之间的区别是什么?

有人可以推荐一本好书,如何在wxPython中编程? 谢谢你的帮助。

class TimeDatePanel(wx.Panel):
def __init__(self, parent, ID=ID_TIMEDATE, pos=wx.DefaultPosition, size=(50, 50), controller=None):
    wx.Panel.__init__(self, parent, ID, pos, size, wx.RAISED_BORDER)
    self.controller = controller
    transCoded = controller.transCodes
    layout = wx.GridSizer(5,2,0,10)
    layout.Add(wx.StaticText(self, wx.ID_ANY, transCoded.get("Time & Date")))
    layout.Add(wx.StaticText(self, wx.ID_ANY, ""), 0,flag=wx.ALL)
    layout.Add(wx.StaticText(self, wx.ID_ANY, transCoded.get("Local time")), 0,flag=wx.ALL|wx.ALIGN_RIGHT)
    self.LT = wx.StaticText(self, wx.ID_ANY, "")
    layout.Add(self.LT)
    layout.Add(wx.StaticText(self, wx.ID_ANY, transCoded.get("UTC")), 0,flag=wx.ALL|wx.ALIGN_RIGHT)
    self.UTC = wx.StaticText(self, wx.ID_ANY, "")
    layout.Add(self.UTC)
    layout.Add(wx.StaticText(self, wx.ID_ANY, transCoded.get("Julian day")), 0,flag=wx.ALL|wx.ALIGN_RIGHT)
    self.JD = wx.StaticText(self, wx.ID_ANY, "")
    layout.Add(self.JD)
    layout.Add(wx.StaticText(self, wx.ID_ANY, transCoded.get("Local sidereal time")), 0,flag=wx.ALL|wx.ALIGN_RIGHT)
    self.LST = wx.StaticText(self, wx.ID_ANY, "")
    layout.Add(self.LST)
    self.SetSizer(layout)
    self.updateTimeDate()
    self.Fit()

    wx.EVT_PAINT(self, self.onPaint)

def onPaint(self, event=None):
    self.updateTimeDate()

def updateTimeDate(self):
    mechanics = self.controller.mechanics
    self.LT.SetLabel(str(mechanics.getLT()))
    self.UTC.SetLabel(str(mechanics.getUTC()))
    self.JD.SetLabel(str(mechanics.getYD()))
    self.LST.SetLabel(str(mechanics.getLST()))

1 个答案:

答案 0 :(得分:2)

如果您需要经常更新时钟,为什么不使用AnalogClock,LEDNumberCtrl或者使用wx.Timer更新的TimeCtrl?以下教程将帮助您使用计时器部分:http://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/

前两个小部件自行更新。休息静态文本控件或其他常规窗口小部件的值时,您必须调用更新,刷新或布局。只需使用SetValue或SetLabel。

罗宾·邓恩(Robin Dunn)有一本名为“wxPython in Action”的旧书在大多数情况下仍然很棒。今年还出现了由Cody Precord推出的wxPython Cookbook。