En este artículo vamos a aprender sobre IsItemShown()
la función asociada con la clase wx.RadioBOx de wxPython. El método IsItemShown() simplemente se usa para devolver True si el elemento se muestra actualmente o False si estaba oculto usando Show.
Tenga en cuenta que esta función devuelve True para un elemento que no se había ocultado, incluso si no se muestra actualmente el radiobox completo.
Sintaxis:
wx.RadioBox.IsItemShown(self, n)Parámetros
Parámetro Tipo de entrada Descripción norte En t La posición del botón de base cero. Tipo de retorno: booleano
Ejemplo de código:
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()
Salida de la consola:
True
Ventana de salida:
Publicación traducida automáticamente
Artículo escrito por RahulSabharwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA