我想在 WinAPI 的窗口中保存控件的属性,例如文本或选中等。
如何测试 BS_AUTORADIOBUTTON 样式的 按钮控件 (是CheckBox还是RadioButton)?
答案 0 :(得分:0)
您可以使用GetWindowLong()来获取窗口的样式:
LONG style = GetWindowLong(hWnd, GWL_STYLE);
if(0 != (style & BS_AUTORADIOBUTTON))
{
// radio button logic here
}