猿问

你好,关于vc++ 禁用函数有哪些?

如何在 属性页中
使某一页中的某一控件如 Check1 去 禁用 另一页中的部分控件!
EnableWindow 这个 我知道,可是在涉及到上面问题的时候,我不知道该把EnableWindow 放哪个地方。直接放在 CHECK1的 响应函数 肯定是不行的! 有什么问题要注意的?

慕沐林林
浏览 207回答 2
2回答

Qyouu

另一属性页 指针 pPropety(假设)另一属性页 控件 ID nIDCtl(假设)pPropety->GetDlgItem(nIDCtl)->EnableWindow(FALSE);//禁用pPropety->GetDlgItem(nIDCtl)->EnableWindow(TRUE);//启用

呼如林

BOOL EnableWindow( HWND hWnd,BOOL bEnable);ParametershWnd[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.
随时随地看视频慕课网APP
我要回答