📜  wxPython – wx.RadioButton 中的 SetValue() 方法

📅  最后修改于: 2022-05-13 01:55:10.968000             🧑  作者: Mango

wxPython – wx.RadioButton 中的 SetValue() 方法

Python提供wxpython 允许我们创建功能强大的图形用户界面。它是Python的跨平台 GUI 工具包,Phoenix 版本 Phoenix 是改进的下一代 wxPython,主要侧重于速度、可维护性和可扩展性。

在本文中,我们将学习SetValue() 与 wxPython 的wx.RadioButton类关联的方法。 SetValue()方法将单选按钮设置为选中或未选中状态。这不会导致发出wxEVT_RADIOBUTTON事件。如果单选按钮属于单选组,则可以检查组中的一个按钮,因此只能在值设置为 True 时调用此方法。要取消选中组中的单选按钮,您必须选中同一组中的另一个按钮。

参数:

ParameterInput TypeDescription
valueboolTrue to check, False to uncheck.

例子:

Python3
# 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()


输出:

单选按钮