wxPython wx.Button中的SetLabel()函数
在这篇文章中,我们将学习与wxPython的wx.Button类有关的SetLabel()函数。SetLabel()函数用于设置按钮的字符串标签。
它需要一个字符串参数,作为按钮的标签。
语法:wx.Button.SetLabel(self, label)
参数。
参数 | 输入类型 | 说明 |
---|---|---|
label | 字符串 | 要设置的标签。 |
代码示例。
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()
输出窗口:
点击按钮前
点击按钮后