0

我的应用程序中有一个 RadioBox(框内有两个单选按钮),我需要确定在框中选择了哪个按钮。我已经看到了单选按钮是单独创建的示例,但当它们是 RadioBox 的一部分时则没有。

这是我的 RadioBox 的代码。

self.radIPAddressInfo = wx.RadioBox(choices=['Automatically Determined',
          'Manual'], id=wxID_FRAME1RADIPADDRESSINFO,
          label=u'IP Address Information', majorDimension=1,
          name=u'radIPAddressInfo', parent=self.panelMain, pos=wx.Point(728,
          80), size=wx.Size(288, 136), style=wx.RA_SPECIFY_COLS)
    self.radIPAddressInfo.Bind(wx.EVT_RADIOBOX,
          self.OnRadIPAddressInfoRadiobox, id=wxID_FRAME1RADIPADDRESSINFO)

我会使用类似的东西吗

if self.RadIPAddressInfo.GetValue()="Automatically Determined":
     do something
else
     do something else

谢谢,祝你有美好的一天:) 帕特里克。

4

1 回答 1

0

http://www.wxpython.org/docs/api/wx.RadioBox-class.html

print self.RadIPAddressInfo.GetStringSelection(self) #returns selected item string

或者

print self.RadIPAddressInfo.GetSelection()  #returns selected index
于 2012-11-10T22:42:43.573 回答