wxPython wx.RadioBOx中的IsItemShown()方法
在这篇文章中,我们将学习与wxPython的wx.RadioBOx类相关的IsItemShown()函数。IsItemShown()方法简单地用于返回True,如果该项目当前被显示,或False,如果它被使用Show隐藏。
请注意,即使整个radiobox当前没有显示,该函数也会对没有被隐藏的项目返回True。
语法:
wx.RadioBox.IsItemShown(self, n)
参数
参数 | 输入类型 | 说明 |
---|---|---|
n | int | 基于零的按钮位置。 |
返回类型: 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
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)
# print True if item is not hidden
print (self.rbox.IsItemShown(1))
# 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()
控制台输出。
True
输出窗口: