wxPython – wx.Button 中的 GetLabel()函数
在本文中,我们将学习与 wxPython 的 wx.Button 类关联的 GetLabel()函数。 GetLabel()函数用于返回按钮的字符串标签。 GetLabel()函数不需要任何参数。
Syntax: wx.Button.GetLabel(self)
Parameters: No parameters are required in GetLabel() function.
Return Type: string
代码示例:
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()
控制台输出:
Button
输出窗口: