获取Qbuttongroup的id
时间: 2023-08-18 17:24:32 浏览: 333
获取qq群成员
如果您想获取QButtonGroup中选中按钮的ID,可以尝试以下步骤:
1. 获取选中按钮的指针:
```python
selected_button = button_group.checkedButton()
```
2. 获取该按钮的ID:
```python
button_id = button_group.id(selected_button)
```
这个button_id就是选中按钮的ID了。注意,QButtonGroup中的按钮ID可以通过`setId()`方法设置,如果没有设置,那么默认ID为-1。
阅读全文