wxPython wx.RadioBox中的ShowItem()方法
在这篇文章中,我们将学习与wxPython的wx.RadioBox类有关的ShowItem()方法。ShowItem()方法是一个简单的方法,用于显示或隐藏单个按钮。
ShowItem()方法在项目被显示或隐藏的情况下返回True,如果没有做任何事情,因为它已经处于请求的状态,则返回False。
语法:wx.RadioBox.ShowItem(self, item, show=True)
参数
参数 | 输入类型 | 说明 |
---|---|---|
item | int | 要显示或隐藏的按钮的零基位置。 |
show | bool | 显示为true,隐藏为false。 |
返回类型:bool
返回。如果项目已经被显示或隐藏,则返回True;如果没有做任何事情,因为它已经处于请求的状态,则返回False。
代码示例。
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)
# hide item at position 0
self.rbox.ShowItem(0, False)
# 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()
输出窗口: