Hi,
Is there a way to stop floating windows from being shown on top of the main form they originate from. I understand this has to do with the owner property of the floating window, but my users do not :) Can I muck with the floating window somehow to stop this behavior? Hacky solutions are welcome...
Thanks,
Bill
Hi Bill
If you just want to stop windows from being unpinned then:
If you do want to float windows, but would like the controls under the window to move about, then that would be a real complex job beyond my knowledge.
Hope this helps
Regards, PenPal1999
i want floating windows not to appear on top of the form they were floated from. In case anyone cares i've hacked around it by clearing out the owner property of the parent form when the control is floating like this :
Form f = FindForm(); if (f != null) { f.Owner = null; }
i'm sure this will come back to haunt me somehow. I've also played around with showing the real form caption and removing the floating panel caption so it looks like a real window. Goofy stuff like this:
f.FormBorderStyle = FormBorderStyle.Sizable; f.ControlBox = true; f.MaximizeBox = true; f.MinimizeBox = true; f.SizeGripStyle = SizeGripStyle.Show; DockMananger.SetCaptionVisible(this, false);