En este artículo vamos a aprender cómo podemos asociar wx.VisualAttributes con Static Box. Para ello, utilizaremos la función estática GetClassDefaultAttributes(). La función GetClassDefaultAttributes() se usa para devolver el objeto wx.VisualAttributes para propiedades como el color de fondo, el color de primer plano y la fuente.
Sintaxis: wx.StaticBox.GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)
Parámetros
Parámetro Tipo de entrada Descripción variante VentanaVariante variante asociada con Static Box. Tipo de retorno: wx.VisualAttributes
Ejemplo de código:
Python3
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) # create static box self.sb = wx.StaticBox(pnl, 2, label ="Static Box", pos =(20, 20), size =(100, 100)) # wx.VisualAttributes object va = self.sb.GetClassDefaultAttributes(wx.WINDOW_VARIANT_NORMAL) # background and foreground colours print (va.colBg) print (va.colFg) # 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:
(247, 247, 247, 255) (61, 61, 61, 255)
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