My Form has a problem with that GroupBbox MouseEvents.
I'm trying to make some GUI gadgetries (docking, opacity..).
Here is an example:
I've linked all (GUI)-Objects to these two functions.
private void MyMouseMove(object sender, MouseEventArgs e)
{
this.Opacity = 1;
}
private void MyMouseLeave(object sender, EventArgs e)
{
this.Opacity = 0.5;
}
..expect the group panels, because they don't have MouseMove
and MouseLeave
events. Can they be added? A standard Panel has them as well.
I really like the layout of that GroupPanels (with that border and text), that's why I would love to be able to solve that problem with GroupBox.
That gadgets I create will only be triggered, if the cursor is in- or outside the form. (doesn't matter if inactive or active). Maybe there is another way to trigger it, than MouseMove
and MouseLeave
.