WPF datagrid “EditItem is not allowed for this view” exception

后端 未结 2 1209
花落未央
花落未央 2020-12-11 09:18

I programmatically add DataGrid:

System.Windows.Controls.DataGrid dataGrid = new System.Windows.Controls.DataGrid();
dataGrid.GridLinesVisibilit         


        
2条回答
  •  春和景丽
    2020-12-11 09:52

    You should not update the Items directly of your DataGrid but rather set the ItemsSource to the collection. DataGrid will generate the view out of the itemsource that implements IEditableCollectionView interface in order to allow the editing. This interface has function EditItems() which let the editing happen.

    So in order solve this problem. Create the ObservableCollection property in your VM/Code behind and set the DataGrid ItemsSource to it like

    ObservableCollection MyCollection{get;set;}
    
    
    Globals_Liker.list_datagrid[tabControl1.SelectedIndex].ItemsSource = MyCollection;
    

    In your constructor you can initialize this collection by newing it. And whenever you want to add item in your DataGrid, just add the item in the Observable collection (MyCollection), it will be shown on grid and will be editable.

提交回复
热议问题