QRadioButton * rbutton1 = new QRadioButton("Option 1", parent); // ... other ... QButtonGroup* group = new QButtonGroup(parent); group->addButton(rbutton1); ...
確定! 回上一頁