Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello everybody
How can i make child MDI form to not lost focus until the user push the exit command button? i have tried form show modal, but i can't use it in MDI Child Form
Now when the user clicks at the margins of the MDI Child form, the form lost the focus and the main MDI it shows up
Any suggestion how to avoid this?
Posted

1 solution

Formally, Form, as any Control has a focus, but this property is not actual for this type of Control. The actual property is the activation. The MDI weirdness is: the parent one one of the child forms are activated at the same time. Still, the notion of focus is applicable to one of the control on each form, which gets focus when its form is activated. I don't see why it can cause a problem. Hopefully, these consideration can help you to put it right. As to the MDI itself…

Here is the idea: who needs MDI, ever? Why torturing yourself and scaring off your users?
Do yourself a great favor: do not use MDI at all. You can do much easier to implement design without it, with much better quality. MDI is highly discouraged even by Microsoft, in fact, Microsoft dropped it out of WPF and will hardly support it. More importantly, you will scare off all your users if you use MDI. Just don't. Please see:
http://en.wikipedia.org/wiki/Multiple_document_interface#Disadvantages[^],
How to Create MDI Parent Window in WPF?[^].

I can explain what to do instead. Please see my past answers:
Why MDI form is not supported natively in WPF ?[^],
How to Create MDI Parent Window in WPF? [Solution 2],
Question on using MDI windows in WPF[^],
MDIContainer giving error[^],
How to set child forms maximized, last childform minimized[^].

—SA
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900