📜  wxPython - 更改单选按钮的大小

📅  最后修改于: 2022-05-13 01:54:50.913000             🧑  作者: Mango

wxPython - 更改单选按钮的大小

在本文中,我们将学习更改单选按钮的大小。我们将使用与 wxPython 的 wx.RadioButton 类关联的 SetSize()函数来更改 Radio Button 的大小。 SetSize()函数仅用于更改单选按钮窗口的大小(以像素为单位)。

代码示例:

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):
        self.pnl = wx.Panel(self)
         
        # create radio button at position (30, 10)
        self.rb1 = wx.RadioButton(self.pnl, label ='Btn1',
                             pos =(30, 10), size =(100, 20))
 
        # change background colour
        self.rb1.SetBackgroundColour((255, 100, 255, 255))
 
        # change size to (300, 50)
        self.rb1.SetSize((300, 50))
 
 
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
 
 
if __name__ == '__main__':
    main()


输出窗口: