函式作用,函式原型,參數,返回值,例子,
函式作用
居中視窗
函式原型
BOOL CenterWindow(
HWND hWndCenter = NULL
) throw();
參數
hWndCenter
需要居中的視窗的句柄,如果此參數為NULL(默認值),該方法將設定hWndCenter到視窗的父視窗,如果它是一個子視窗。否則,將設定hWndCenter到視窗的所有者視窗。
返回值
TRUE 如果視窗成功居中則為TRUE,否則為 FALSE。
例子
CWindow childWindow, popupWindow, overlappedWindow;
childWindow.Attach(hWndChild); //創建一個WS_CHILD style屬性的視窗
childWindow.CenterWindow(); //居中視窗
popupWindow.Attach(hWndPopup); //創建一個WS_POPUP style屬性的視窗
popupWindow.CenterWindow(); //居中視窗
overlappedWindow.Attach(hWndOverlapped); //創建一個WS_OVERLAPPED style屬性視窗
overlappedWindow.CenterWindow(::GetDesktopWindow()); //居中視窗