private void button1_Click(object sender, EventArgs e)
{
var scrollValue = this.sfDataGrid1.TableControl.ScrollRows.ScrollBar.Value;
this.sfDataGrid1.DataSource = new OrderInfoCollection().OrdersListDetails.Where(x => x.CustomerID != "FRANS");
this.sfDataGrid1.GroupColumnDescriptions.Add(new GroupColumnDescription() { ColumnName = "Quantity" });
this.sfDataGrid1.TableControl.ScrollRows.ScrollBar.Value = scrollValue;
this.sfDataGrid1.TableControl.UpdateScrollBars();
} |