inspector window problem

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I have a window with multiple inspector window.
When the *Application* lose the focus I would like to hide all inspector
windows.

I cannot use the activate/deactivate event on the main window, because it
deactivate if I click on any inspector windows.

How could I do that?

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
found it!
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case /*WM_ACTIVATEAPP*/ 0x1C:
if ((int)m.WParam == 0)
Hide();
else
Show();
break;
}
}


--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
 
Back
Top