Convert a modeless dialog to modal at runtime

半世苍凉 提交于 2019-12-22 04:05:57

问题


I have a dialog (CDialog derived class) that can be used in two different ways (edition mode and programming mode).

When the dialog is open to be used in programming mode it is a modeless dialog that it is used for modifying the main view (kind of a toolbar). When it is open in edition mode the user can change the configuration of the dialog itself and in this case it is a modal dialog.

Right now they are two different dialogs with few differences and I would like to have just want dialog and let the user change between programming mode and edition mode just by pressing a button in the dialog.

So I need to convert the modeless dialog in a modal dialog and vice versa at runtime. Is there a way to achive that?

Thanks.


回答1:


As maybe someone could be interested in doing something similar in the future, this is the way I eventually did it:

I use this two functions of main frame: CMainFrame::BeginModalState() and CMainFrame::EndModalState().

The problem with these functions is the same that with disabling the parent window. The window you want to make modal also gets disabled. But the solution is easy, just re-enable the window after calling BeginModalState.

void CMyDialog::MakeModal()
{
   //disable all main window descendants
   AfxGetMainWnd()->BeginModalState();

   //re-enable this window
   EnableWindow(TRUE);
}

void CMyDialog::MakeModeless()
{
   //enable all main window descendants
   AfxGetMainWnd()->EndModalState();
}

Thanks for your help.




回答2:


That can't be done easily without closing and reopening the dialog. Then you can call ShowWindow or DoModal as appropriate.




回答3:


That is not correct. This can be done, if you look at MFC's source you will realize that it's modal dialogs are not technically even modal. You will have to do a lot of mucking about to make this work properly, but basically you just have to disable the parent of the 'modal' window, and re-enable it when the 'modal' window closes.

I have done this personally so this may work for you, though I am not exactly sure what you are trying to do.



来源:https://stackoverflow.com/questions/1225931/convert-a-modeless-dialog-to-modal-at-runtime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!