wxPython – Método GetDefaultSize() en wx.StaticLine

En este artículo vamos a aprender sobre el método GetDefaultSize() asociado con la clase wx.StaticLine de wxPython. El método GetDefaultSize() simplemente se usa para devolver el tamaño que se le dará a la dimensión más pequeña de la línea estática, es decir

Su altura para una línea horizontal o su ancho para una vertical.

Sintaxis: wx.StaticLine.GetDefaultSize()

Parámetros: No se requieren parámetros en el método GetDefaultSize().

Tipo de retorno: int

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
        hlist = ['Item One', 'Item Two']
        vlist =['Item One', 'Item Two']
  
        # create vertical line from point (50, 0) t0 (50, 250)
        self.sl = wx.StaticLine(pnl, 2,  pos =(50, 0), size = (1, 250),  
                                              style = wx.LI_VERTICAL)
  
        # print size of the smaller dimension of static line
        print (self.sl.GetDefaultSize())
  
        # 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:

2

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *