0

我刚刚完成了我的 Web 应用程序的 GUI 部分,它严重依赖于单选按钮组来提供选项机制。

我希望从单选按钮组中收集用户选择,以便在某些算法中提供输入参数。

Wt 没有在其WRadioButton类中声明的此类连接函数,并且创建单选按钮的方式使得存储用户的单选按钮选择变得不方便。

我该如何继续?

更新:我试图通过使用checkedButton()(在WRadioButton课堂上声明)来获得选择,但我的方法不能正常工作。

4

2 回答 2

0

I think it's easier to look at the methods and signals of WButtonGroup: selectedId(), which returns the id of the selected WRadioButton, or checkedChanged(), which is called when the selection changes, with the checked button. WButtonGroup 上的 checkedButton() 也应该可以工作。

于 2012-08-14T16:39:29.990 回答
0

您还可以使用 Wt::WSignalMapper 将所有信号连接到一个插槽

于 2012-09-01T15:05:14.273 回答