wxPython is a set of excellent GUI graphics library for the Python language . Allows Python programmers to easily create complete, full-featured GUI user interfaces. wxPython is an excellent cross-platform GUI library wxWidgets as a Python package and Python modules provided to the user .
Just show how to use wxPython to implement the ? button and listen to the button and change the font and color of the button.
The python code is as follows:
#-*- coding:utf-8 -*- import wx class Frame(): def __init__(self): .__init__(self,None,title = u"Test Interface",size=(1340,670)) () ((1340,670)) ((1340,670)) = (self,size=(1340,670)) = (wx.LANGUAGE_ENGLISH) global Test_Button fontButton = (15,,,) Test_Button = (,label=u"Test Button",pos=(100,155),size=(200,45)) Test_Button.SetFont(fontButton) Test_Button.SetBackgroundColour("#90EE90") (wx.EVT_BUTTON,self.Test_Button,Test_Button) ### Buttons def Test_Button(self, event): Test_Button.SetBackgroundColour("#CCCCCC") self.Train_Text = (, -1, "Button color change" ,pos=(100,25),size=(200,110)) if __name__ == "__main__": app = () frame = Frame() () ()
Above this python using wx to realize the interface buttons and buttons listening and font change is all that I have shared with you, I hope to be able to give you a reference, and I hope you will support me more.