wxPython wx.RadioButton中的SetValue()方法
Python提供了 wxpython 包 ,它允许我们创建高功能的图形用户界面。它是一个跨平台的Python图形用户界面工具包,Phoenix版本是改进的下一代wxPython,它主要关注速度、可维护性和可扩展性。
在这篇文章中,我们将学习与wxPython的 wx.RadioButton 类相关的 SetValue() 方法。 SetValue() 方法将单选按钮设置为选中或未选中状态。 这不会导致一个 wxEVT_RADIOBUTTON 事件被发射出来。如果单选按钮属于一个单选组,那么该组中只有一个按钮可以被选中,因此该方法只能在值设置为True的情况下被调用。要取消一个组中的单选按钮,必须检查同一组中的另一个按钮。
语法: wx.RadioButton.SetValue(self, value)
参数 。
参数 | 输入类型 | 参数 |
---|---|---|
value | bool | 为真则检查,为假则不检查。 |
例子 。
# 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):
# parent panel for radio buttons
self.pnl = wx.Panel(self)
# create radio buttons
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))
# set value for the second radio button as true(checked)
self.rb2.SetValue(True)
# main function
def main():
# create an App object
app = wx.App()
# create an Example object
ex = Example(None)
ex.Show()
# running a app
app.MainLoop()
# Driver code
if __name__ == '__main__':
# main function call
main()
输出:
单选按钮