次の方法で共有


CWindow::EnableWindow

更新 : 2007 年 11 月

入力を有効または無効にします。

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);
}

必要条件

ヘッダー : atlwin.h

参照

参照

CWindow クラス

CWindow::IsWindowEnabled

その他の技術情報

CWindow のメンバ