如何在 属性页中使某一页中的某一控件如 Check1 去 禁用 另一页中的部分控件!EnableWindow 这个 我知道,可是在涉及到上面问题的时候,我不知道该把EnableWindow 放哪个地方。直接放在 CHECK1的 响应函数 肯定是不行的! 有什么问题要注意的?
2 回答
Qyouu
TA贡献1786条经验 获得超11个赞
另一属性页 指针 pPropety(假设)
另一属性页 控件 ID nIDCtl(假设)
pPropety->GetDlgItem(nIDCtl)->EnableWindow(FALSE);//禁用
pPropety->GetDlgItem(nIDCtl)->EnableWindow(TRUE);//启用
呼如林
TA贡献1798条经验 获得超3个赞
BOOL EnableWindow( HWND hWnd,
BOOL bEnable
);
Parameters
hWnd
[in] Handle to the window to be enabled or disabled.
bEnable
[in] Specifies whether to enable or disable the window. If this parameter is TRUE, the window is enabled. If the parameter is FALSE, the window is disabled.
- 2 回答
- 0 关注
- 206 浏览
添加回答
举报
0/150
提交
取消