En este artículo, aprenderemos sobre la función GetLabel() asociada con la clase wx.Button de wxPython. La función GetLabel() se usa para devolver la etiqueta de string para el botón. La función GetLabel() no requiere parámetros.
Sintaxis: wx.Button.GetLabel(self)
Parámetros: No se requieren parámetros en la función GetLabel().
Tipo de retorno: string
Ejemplo de código:
import wx class Example(wx.Frame): def __init__(self, *args, **kwargs): super(Example, self).__init__(*args, **kwargs) self.InitUI() def InitUI(self): self.pnl = wx.Panel(self) self.btn = wx.Button(self.pnl, label ='Button', pos =(20, 20), size =(100, 20)) # GET STRING LABEL ON BUTTON s = self.btn.GetLabel() # PRINT STRING LABEL print(s) self.SetSize((350, 250)) self.SetTitle('wx.Button') self.Centre() def main(): app = wx.App() ex = Example(None) ex.Show() app.MainLoop() if __name__ == '__main__': main()
Salida de la consola:
Button
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