I have an UltraWinGrid with on a User Control and the scollbar seems to want to extend off my control.
The ultrawingrid is multiband and whenever the user expands the top band (generally the second band contains many rows) the scrollbar extends off the bottom of the control. I attached a screen shot.
I have the ultragrid set to be anchored on all sides and the docking is none.
Also, the ultragrid is set as Scroll to fill window and the scroll style is immediate.
Hopefully there is a quick property for me to flip.
I will revisit the z-order on the controls.
Just to clarify though the status bar you see at the bottom is part of the parent form. The user control (that contains the grid) ends before the status bar.
The User control itself is set to fill the main panel of the parent form. The control draws correctly on load even including the wingrid scroll bar if needed. But when the user expands the band on the wingrid the grid seems to expand off the user control.
It looks like the grid isn't at the front of the z-order, meaning that is is behind the other controls (possible a StatusBar from what I see in the screenshot). You could try clicking the "Bring To Front" button in the Visual Studio designer, which might clear the problem. You might also want to make sure that the grid is correctly sized within the form to not extend beyond the bottom; I have had issues with the Anchor behavior in .NET in the past (not specific to Infragistics controls) where sizing/positioning were performed incorrectly, so this might be another one of those cases.
-Matt