wxPython wx.RadioButton中的GetValue()方法
Python提供了 wxpython包 ,它允许我们创建高功能的图形用户界面。它是Python的跨平台GUI工具包,Phoenix版本是改进的下一代wxPython,它主要关注速度、可维护性和可扩展性。
在这篇文章中,我们将学习与wxPython的 wx.RadioButton类相关的GetValue()方法**。 **GetValue()函数用于在单选按钮被选中时返回True,否则返回False。
GetValue()函数不需要参数。
语法: wx.RadioButton.GetValue(self)
参数: GetValue() 函数不需要参数。
返回: 如果单选按钮被选中,则返回 True,否则返回 False
示例:
# importing wx library
import wx
APP_EXIT = 1
# create a Example class
class Example(wx.Frame):
# constructor
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
# method calling
self.InitUI()
# method for user interface creation
def InitUI(self):
# create a parent panel for radio buttons
self.pnl = wx.Panel(self)
# create a radio buttons in frame
self.rb1 = wx.RadioButton(self.pnl,
label = 'Button 1',
pos = (30, 10))
self.rb2 = wx.RadioButton(self.pnl,
label = 'Button 2',
pos = (30, 30))
self.rb3 = wx.RadioButton(self.pnl,
label = 'Button 3',
pos = (30, 50))
# change value of second button to True
self.rb2.SetValue(True)
# print values of radio buttons True
# if checked, False otherwise
print(self.rb1.GetValue())
print(self.rb2.GetValue())
print(self.rb3.GetValue())
# main function
def main():
# create a App object
app = wx.App()
# create a Example object
ex = Example(None)
ex.Show()
# running a app
app.MainLoop()
# Driver code
if __name__ == '__main__':
# main function call
main()
输出:
False
True
False
无线电按钮