wxPython 禁用框架中的单选框
在这篇文章中,我们将学习如何禁用框架中的一个无线电盒。为了做到这一点,我们将使用Disable()方法,使整个无线电盒失效,无法点击。Disable()方法在窗口被禁用时返回True,如果在调用此函数之前已经被禁用则返回False。
Disable()函数不需要参数。
语法:wx.RadioBox.Disable(self)
参数 禁用无线电盒不需要参数
返回。如果窗口已经被禁用,返回True;如果在调用此函数之前已经被禁用,返回False。
返回类型: bool
代码示例。
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
hlist = ['Item One', 'Item Two']
vlist =['Item One', 'Item Two']
# create radio box with items in horizontal orientation
self.rbox = wx.RadioBox(pnl, label ='RadioBox', pos =(50, 10), choices = hlist,
majorDimension = 0, style = wx.RA_SPECIFY_ROWS)
# create radio box with items in vertical orientation
self.rbox.Disable()
# 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()
输出窗口: