public InfagisticsWindow() { InitializeComponent(); humans = new HumanList(); DGrid.DataSource = humans; DGrid.IsUndoEnabled = true; }
public SyncfusionWindow() { InitializeComponent(); humans = new HumanList(); DGrid.ItemsSource = humans; DGrid.ExcelLikeCurrentCell = true; DGrid.ExcelLikeSelectionFrame = true; DGrid.ShowTableSummaries = true; DGrid.ShowRecordPlusMinus = true; DGrid.WrapCell = true; }
public DevExpressWindow() { InitializeComponent(); humans = new HumanList(); DGrid.DataSource = humans; DGrid.View.AllowEditing = true; DGrid.View.AllowFilterEditor = true; DGrid.View.ClipboardCopyAllowed = true; DGrid.View.IsColumnChooserVisible = true; DGrid.View.IsColumnMenuEnabled = true; DGrid.View.IsRowCellMenuEnabled = true; }
public MainWindow() { InitializeComponent(); Humans = new HumanList(); DGrid.ItemsSource = Humans; }