I am dealing with a very slow grid issue and the first thing I would like to eliminate is the multiple grid/handle option. It appears that the grid I am dealing with has both a vertical and horizontal duplicate that is accessible by a grab handle near the scroll bars. I have seen this before but for the life of me I cannot remember how to get rid of them. Here is a screenshot of the bottom left near a scroll bar.
Hello IanLudwig,
I have handled the InitializeLayout event of the UltraGrid control like the following in order to achieve what you are looking for:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.MaxColScrollRegions = 1; e.Layout.MaxRowScrollRegions = 1; }Please feel free to let us know if you need further assistance with this matter.