CWindow::CenterWindow
Umístí okno proti dané okno.
BOOL CenterWindow(
HWND hWndCenter = NULL
) throw();
Parametry
- hWndCenter
[v] Popisovač okna, proti kterému na střed.Pokud je tento parametr NULL (výchozí hodnota), bude metoda set hWndCenter v okně nadřazené okno Pokud podřízené okno.Jinak bude nastavit hWndCenter okna v okně Vlastník.
Vrácená hodnota
TRUE -li v okně úspěšně na střed; jinak FALSE.
Příklad
//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
Požadavky
Záhlaví: atlwin.h