此帖出自嵌入式系统论坛
最新回复
RECT rc;
RECT rcMenuBar;
GetClientRect(hWnd, &rc);
GetClientRect(g_hWndMenuBar, &rcMenuBar);
rc.bottom -= (rcMenuBar.bottom - rcMenuBar.top);
HWND hWnd1;
GetDlgItem(hWnd1,IDD_DIALOG1);
MoveWindow(hWnd1, rc.left, rc.top, (rc.right-rc.left)/2, (rc.bottom-rc.top)/2, FALSE);
DialogBoxParam(g_hInst, (LPCTSTR)IDD_DIALOG1,hWnd, About, NULL);
UpdateWindow((HWND)IDD_DIALOG1);
没有任何效果
详情
回复
发表于 2010-2-2 10:51
| ||
|
||
| |
|
|
| |
|
|
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
EEWorld Datasheet 技术支持