En este artículo vamos a aprender sobre GetForegroundColour()
la función asociada con las clases wx.StaticText de wxPython. GetForegroundColour()
La función devuelve el color que se usa para la fuente o el primer plano de StaticText. El color está en formato de (R, G, B, A). No se requieren parámetros en GetForegroundColour()
la función.
Sintaxis:
wx.StaticText.GetForegroundColour(self)Parámetros:
No se requieren parámetros en la función GetForegroundColour().Tipo de devolución:
wx.Color
Ejemplo de código:
# importing the module import wx # definition of the Example class class Example(wx.Frame): # instantiating the class def __init__(self, *args, **kwargs): super(Example, self).__init__(*args, **kwargs) self.InitUI() # method for creation of user interface def InitUI(self): self.locale = wx.Locale(wx.LANGUAGE_ENGLISH) # create parent panel for button self.pnl = wx.Panel(self) # create button at point (20, 20) self.st = wx.StaticText(self.pnl, id = 1, label ="Button") # change foreground colour of button self.st.SetForegroundColour((10, 20, 255, 255)) # get foreground colour fc = self.st.GetForegroundColour() # print foreground colour print(fc) self.SetSize((350, 250)) self.SetTitle('wx.Button') self.Centre() # definition of the main function def main(): # creating an App object app = wx.App() # creating an Example object ex = Example(None) # showing the Example object ex.Show() # running the App object app.MainLoop() # driver code if __name__ == '__main__': main()
Salida de la consola:
(10, 20, 255, 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