void CXXXDlg::MoveToRightBottom()
{
int cx = GetSystemMetrics(SM_CXFULLSCREEN);
int cy = GetSystemMetrics(SM_CYFULLSCREEN);
CRect rect;
GetWindowRect(&rect);
int x = cx - rect.Width();
int y = cy - rect.Height();
SetWindowPos(NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
}
在OnInitDialog中调用该函数即可
posted on 2009-03-12 10:54
水 阅读(2107)
评论(1) 编辑 收藏 引用 所属分类:
vc