2011-08-10 87 views
0

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

有人可以推荐一本好书,如何在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())) 

回答

2

如果需要更新的每隔一段时间时钟,为什么不使用AnalogClock,LEDNumberCtrl或者也许这就是一个wx.Timer更新TimeCtrl?以下教程将帮助您使用计时器部分:http://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/

前两个小部件会自行更新。在静态设置StaticText控件或其他常规窗口小部件的值时,您必须调用Update,Refresh或Layout。只需使用SetValue或SetLabel。

罗宾邓恩有一本名为“wxPython in Action”的旧书,它在很大程度上仍然很棒。还有一个由Cody Precord编写的wxPython Cookbook,今年推出。

+0

感谢您的帮助,它很有用 – ekitru