MFC创建非模态对话框时,除非将对话框置在最顶层,否则对话框无法显示,总是一闪而过。 20
CToolMainWindow*dlg=newCToolMainWindow;dlg->Create(IDD_MAINWINDOW,GetDesktopWindow())...
CToolMainWindow* dlg = new CToolMainWindow;
dlg-> Create( IDD_MAINWINDOW,GetDesktopWindow() );
dlg->SetWindowPos( &wndNoTopMost, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
dlg->ShowWindow( SW_SHOW );
dlg->SetActiveWindow();
只有设置成wndTopMost时才可以显示,但我不想让他总在最顶层,而是像正常程序一样可以切换, 展开
dlg-> Create( IDD_MAINWINDOW,GetDesktopWindow() );
dlg->SetWindowPos( &wndNoTopMost, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
dlg->ShowWindow( SW_SHOW );
dlg->SetActiveWindow();
只有设置成wndTopMost时才可以显示,但我不想让他总在最顶层,而是像正常程序一样可以切换, 展开
展开全部
不知道你的主窗口是什么类型窗口,我用一个对话框做主窗口,在对话框上放一个按钮,然后按下按钮后调用你的代码,把&wndNoTopMost改为NULL,也没用你说的问的。我的代码如下:
void CDemoDlg::OnButton1()
{
// TODO: Add your control notification handler code here
CToolMainWindow* dlg = new CToolMainWindow;
dlg-> Create( IDD_MAINWINDOW,GetDesktopWindow() );
dlg->SetWindowPos( NULL, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
dlg->ShowWindow( SW_SHOW );
dlg->SetActiveWindow();
}
void CDemoDlg::OnButton1()
{
// TODO: Add your control notification handler code here
CToolMainWindow* dlg = new CToolMainWindow;
dlg-> Create( IDD_MAINWINDOW,GetDesktopWindow() );
dlg->SetWindowPos( NULL, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
dlg->ShowWindow( SW_SHOW );
dlg->SetActiveWindow();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询