使用MOVEwindow函数,移动到你想到的位置就行了
更改CFileDialog 中的m_ofn参数
如:
//回调函数
UINT_PTR CALLBACK OFNHookProc(
HWND hdlg, // handle to child dialog box
UINT uiMsg, // message identifier
WPARAM wParam, // message parameter
LPARAM lParam // message parameter
)
{
if ( WM_INITDIALOG == uiMsg)
{
::SetWindowPos(hdlg,HWND_NOTOPMOST,0,0,100,100,SWP_SHOWWINDOW);
}
return 1;
}
CFileDialog dlg( TRUE,"BMP",NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,szFilter );
dlg.m_ofn.Flags |= OFN_EXPLORER ;
dlg.m_ofn.lpfnHook = (LPOFNHOOKPROC)OFNHookProc;
dlg.DoMoDal();
csdn上有