Hello
I have a form with 2 wingrids side by side, these 2 wingrids have exactly the same number of rows and when I scroll vertically one of them I'd like the other one scroll exactly the same way. Is it possible doing that?
Thanks
Claudio di flumeri
Hi Claudio,
You could do something like this:
private void ultraGrid1_BeforeRowRegionScroll(object sender, Infragistics.Win.UltraWinGrid.BeforeRowRegionScrollEventArgs e) { this.ultraGrid2.ActiveRowScrollRegion.FirstRow = this.ultraGrid2.Rows[e.NewState.FirstRow.Index]; }