📌  相关文章
📜  wxPython – wx.RadioBOX 中的 IsItemShown() 方法

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

wxPython – wx.RadioBOX 中的 IsItemShown() 方法

在本文中,我们将学习与 wxPython 的 wx.RadioBOx 类关联的IsItemShown()函数。 IsItemShown() 方法仅用于在项目当前显示时返回 True,如果使用 Show 隐藏,则返回 False。

请注意,即使当前未显示整个单选框,此函数也会为尚未隐藏的项目返回 True。

代码示例:

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

输出窗口: