4

我有一组我创建的按钮,当它被按下时需要更改按钮的颜色。目前它设置了默认颜色(灰色 = 不活动;浅蓝色 = 活动):

在此处输入图像描述

但我想将活动的颜色更改为红色。

这是我的按钮类:

class ButtonClass(wx.Panel):
    def __init__(self, parent, name, id):
        wx.Panel.__init__(self, parent)
        self.name = name
        self.taskid = id

        self.button = wx.ToggleButton(self, 1, size=(50, 50))
        self.button.SetLabel('Start')

        self.mainSizer = wx.BoxSizer(wx.HORIZONTAL)
        self.mainSizer.Add(self.button)

        self.Bind(wx.EVT_TOGGLEBUTTON, self.toggledbutton, self.button)

    # Where the buttons change state
    def toggledbutton(self, event):

        # Active State
        if self.button.GetValue() == True:

            self.button.SetLabel('Stop')

        # Inactive State
        if self.button.GetValue() == False:

            self.button.SetLabel('Start')

我试过使用self.button.SetColour, self.button.SetBackgroundColourself.button.SetForegroundColour但都没有成功。有没有办法在 wxpython 中完成这个?

4

2 回答 2

5

它似乎依赖于平台。这在 Ubuntu 中对我有用,但在 Windows 中无效。

self.ToggleButtonObj = wx.ToggleButton(self, -1, 'ButtonLabel')
self.ToggleButtonObj.Bind(wx.EVT_TOGGLEBUTTON, self.OnToggleClick)

def OnToggleClick(self,event):
    if self.ToggleButtonObj.GetValue():
         self.ToggleButtonObj.SetBackgroundColour('#color1')
    else:
         self.ToggleButtonObj.SetBackgroundColour('#color2')

解决方法:

    self.Button = wx.Button(self, -1, 'ButtonLabel')
    self.Button.Bind(wx.EVT_BUTTON, self.OnToggleClick)
    self.ButtonValue = False

    def OnToggleClick(self,event):
        if not self.ButtonValue():
             self.Button.SetBackgroundColour('#color1')
             self.ButtonValue = True
        else:
             self.Button.SetBackgroundColour('#color2')
             self.ButtonValue = False
于 2011-11-01T16:11:55.547 回答
0

SetBackgroundColour() 在带有 python 2.7.3 的 Windows 7 中使用 RGB 模式下的颜色(如 (255,255,255))为我工作。

于 2014-03-21T11:09:48.270 回答