wxPython – wx.Button 中的 SetLabel()函数
在本文中,我们将学习与 wxPython 的 wx.Button 类关联的 SetLabel()函数。 SetLabel()函数用于设置按钮的字符串标签。
它接受一个字符串参数,用作按钮的标签。
Syntax: wx.Button.SetLabel(self, label)
Parameters:
Parameter | Input Type | Description |
---|---|---|
label | string | The label to set. |
代码示例:
import wx
class Mywin(wx.Frame):
def __init__(self, parent, title):
super(Mywin, self).__init__(parent, title = title, size =(250, 150))
self.InitUI()
def InitUI(self):
self.panel = wx.Panel(self)
self.btn = wx.Button(self.panel, label ="Click", pos =(75, 10))
self.btn.Bind(wx.EVT_BUTTON, self.Onclick)
self.SetMinSize((400, 250))
self.Centre()
self.Show(True)
def Onclick(self, event):
# SET A STRING LABEL FOR BUTTON
self.btn.SetLabel("Clicked")
ex = wx.App()
Mywin(None, 'Window')
ex.MainLoop()
输出窗口:
在点击按钮之前
点击按钮后