在wxPython中闪烁文本

时间:2012-08-07 15:52:13

标签: text wxpython

我想知道是否有人知道将闪存文本编入wxPython的方法? (我对wxPython很新) 它会在每半秒左右在红色和正常之间闪烁,我使用的是Python 2.7.3,而不是最新版本。

由于

克里斯

1 个答案:

答案 0 :(得分:1)

您需要了解如何动态更改fonts。通常,它只是调用小部件的SetFont()方法。既然你想定期这样做,那么你几乎肯定会想要使用wx.Timer。如果您愿意,可以阅读关于该主题的tutorial。我可能会使用StaticText小部件。

更新:这是一个愚蠢的例子:

import random
import time
import wx

########################################################################
class MyPanel(wx.Panel):
    """"""

    #----------------------------------------------------------------------
    def __init__(self, parent):
        """Constructor"""
        wx.Panel.__init__(self, parent)

        self.font = wx.Font(12, wx.DEFAULT, wx.NORMAL, wx.NORMAL)
        self.flashingText = wx.StaticText(self, label="I flash a LOT!")
        self.flashingText.SetFont(self.font)

        self.timer = wx.Timer(self)
        self.Bind(wx.EVT_TIMER, self.update, self.timer)
        self.timer.Start(1000)

    #----------------------------------------------------------------------
    def update(self, event):
        """"""
        now = int(time.time())
        mod = now % 2
        print now
        print mod
        if mod:
            self.flashingText.SetLabel("Current time: %i" % now)
        else:
            self.flashingText.SetLabel("Oops! It's mod zero time!")
        colors = ["blue", "green", "red", "yellow"]
        self.flashingText.SetForegroundColour(random.choice(colors))

########################################################################
class MyFrame(wx.Frame):
    """"""

    #----------------------------------------------------------------------
    def __init__(self):
        """Constructor"""
        wx.Frame.__init__(self, None, title="Flashing text!")
        panel = MyPanel(self)
        self.Show()

#----------------------------------------------------------------------
if __name__ == "__main__":
    app = wx.App(False)
    frame = MyFrame()
    app.MainLoop()