wxPython - Change Background Colour of Radio Button Last Updated : 23 Aug, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article we are going to learn about how can we change background colour of a Radio Button. We will use SetBackgroundColour() function sets the background colour of the window. Notice that as with SetForegroundColour, setting the background colour of a native control may not affect the entire control and could be not supported at all depending on the control and platform. Syntax: wx.StaticText.SetBackgroundColour(self, colour)Parameters: ParameterInput TypeDescriptioncolourwx.ColourColour for background of static text. Return type boolReturns True if the colour was really changed, False if it was already set to this colour and nothing was done. Code Example: Python3 import wx APP_EXIT = 1 class Example(wx.Frame): def __init__(self, *args, **kwargs): super(Example, self).__init__(*args, **kwargs) self.InitUI() def InitUI(self): # create parent panel for radio buttons self.pnl = wx.Panel(self) # create radio button in frame self.rb1 = wx.RadioButton(self.pnl, label ='Btn1', pos =(30, 10), size =(100, 20)) # set background colour to yellow (r, g, b, a) self.rb1.SetBackgroundColour((233, 227, 100, 255)) def main(): app = wx.App() ex = Example(None) ex.Show() app.MainLoop() if __name__ == '__main__': main() Output Window: Comment More infoAdvertise with us Next Article wxPython - Change Font colour of Radio Button R RahulSabharwal Follow Improve Article Tags : Python Python-gui Python-wxPython Python wxPython-Button Practice Tags : python Similar Reads wxPython - Change Background colour of Button In this article we are going to learn about how can we change background colour of a button present in a frame. We use SetBackgroundColour() function to set background colour of the button to some different colour. It takes a wx.Colour class object as an argument. Syntax: wx.Button.SetBackgroundColo 1 min read wxPython - Change background colour of RadioBox In this article we are going to learn how can we change the background colour of Radio Box present in the frame. In order to do that we are going to use SetBackgroundColour() method. SetBackgroundColour() function takes wx.Colour argument which will be used as background colour for Radio Box. Syntax 1 min read wxPython - Change Font colour of Radio Button In this article we are going to learn that how can we change the foreground or font color of the radio button. In order to change the foreground colour of Radio Button we will use SetForegroundColour() function. SetForegroundColour() function sets the foreground colour of the window. The meaning of 2 min read wxPython - Change font of Radio Button In this article we are going to learn that how can we change the font of the label text present on the radio button present in the frame. We need to follow some steps as follows: Step 1: Create a wx.Font object. Step 2: Add different attributes of font in parameters like: family, style etc. Step 3: 1 min read PyQt5 - Background color to Radio Button In this article we will see how to set background color to the radio button (text part). By default no background color is associated with the radio button although we can set background color to it. Below is the representation of normal radio button vs the radio button with background color. In ord 2 min read wxPython - Change Foreground Colour of Button In this article we will learn how can we change the foreground colour of the button or the font colour of the button. To do this we will use SetForegroundColour() function associated with wx.Button class of wxPython. SetForegroundColour() function simply takes wx.Colour argument for the foreground. 1 min read Like