I’m trying to find a way to show a button on the column when the mouse is over it and then make it dissapear with it leaves. Is this possible?
Currently I’m just trying to get the mouse events working.
My code is:
gridControl1.HeaderRows[0].Capture = true;
gridControl1.HeaderRows[0].MouseEnter += new EventHandler(GridHeaderRows_MouseEnter);
gridControl1.HeaderRows[0].MouseLeave += new EventHandler(GridHeaderRows_MouseLeave);
1) When the .Capture = True property is set, the form just hangs with a waiting glass for about 10 seconds and my events never fire.
2) If .Capture = false property is set, there is no hanging, but I still do not get the events to fire.
Please help!
Imported from legacy forums. Posted by Thraka (had 1912 views)