wxPython 改变RadioBox的背景颜色

wxPython 改变RadioBox的背景颜色

在这篇文章中,我们将学习如何改变框架中的无线电盒的背景颜色。为了达到这个目的,我们将使用SetBackgroundColour()方法。SetBackgroundColour()函数接受wx.Colour参数,该参数将被用作无线电盒的背景颜色。

语法: wx.RadioBox.SetBackgroundColour(self, color)

参数

参数 输入类型 说明
color wx.colour 用来做背景的颜色。

代码示例:

import wx
 
 
class FrameUI(wx.Frame):
 
    def __init__(self, parent, title):
        super(FrameUI, self).__init__(parent, title = title, size =(300, 200))
 
        # function for in-frame components
        self.InitUI()
 
    def InitUI(self):
        # parent panel for radio box
        pnl = wx.Panel(self)
 
        # list of choices
        lblList = ['Radio One', 'Radio Two']
 
        # create radio box containing above list
        self.rbox = wx.RadioBox(pnl, label ='RadioBox', pos =(80, 10), choices = lblList,
                                         majorDimension = 1, style = wx.RA_SPECIFY_ROWS)
 
        # change background colour for radio box
        self.rbox.SetBackgroundColour((150, 150, 200, 255))
 
        # set frame in centre
        self.Centre()
        # set size of frame
        self.SetSize((400, 250))
        # show output frame
        self.Show(True)
 
 
# wx App instance
ex = wx.App()
# Example instance
FrameUI(None, 'RadioButton and RadioBox')
ex.MainLoop()

输出窗口:

wxPython - 改变RadioBox的背景颜色

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程