共用方式為


CWindow::EnableWindow

啟用或停用項目。

BOOL EnableWindow(
   BOOL bEnable = TRUE 
) throw();

備註

請參閱在 Windows SDK的 EnableWindow

範例

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::EnableWindow() to enable and disable the window
//wrapped by the CWindow object

CWindow myWindow;
myWindow.Attach(hWnd);

//The following call enables the window 
//CWindow::EnableWindow() takes TRUE as the default parameter

myWindow.EnableWindow();

if(myWindow.IsWindowEnabled())
{
   //Do something now that the window is enabled

   //Now it's time to disable the window again
   myWindow.EnableWindow(FALSE);
}

需求

Header: atlwin.h

請參閱

參考

CWindow 類別

CWindow::IsWindowEnabled