CWindow::CenterWindow
特定のウィンドウに対してウィンドウを中央揃えにします。
BOOL CenterWindow(
HWND hWndCenter = NULL
) throw();
パラメーター
- hWndCenter
[入力]中央揃えするウィンドウへのハンドル。このパラメーターが null (既定値) の場合、メソッドはウィンドウの親ウィンドウに、子ウィンドウの場合 hWndCenter を設定します。それ以外の場合は、ウィンドウのオーナー ウィンドウに hWndCenter を設定します。
戻り値
ペインが正常に中央揃え**[真]** ; それ以外 FALSE。
使用例
//The following example attaches various HWNDs to the CWindow objects
//and calls CWindow::CenterWindow() for each of them
CWindow childWindow, popupWindow, overlappedWindow;
childWindow.Attach(hWndChild); //a window created with WS_CHILD style
childWindow.CenterWindow(); //This will center the child
//window against its Parent window
popupWindow.Attach(hWndPopup); //a window created with WS_POPUP style
popupWindow.CenterWindow(); //This will center the popup window
//against its Owner window
overlappedWindow.Attach(hWndOverlapped); //a window created with
//WS_OVERLAPPED style
overlappedWindow.CenterWindow(::GetDesktopWindow()); //This will center
//the overlapped window against the DeskTop window
必要条件
Header: atlwin.h