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

好久不见. 提交于 2020-01-09 11:19:08

问题


I programmatically add DataGrid:

System.Windows.Controls.DataGrid dataGrid = new System.Windows.Controls.DataGrid();
dataGrid.GridLinesVisibility = DataGridGridLinesVisibility.None;
dataGrid.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden;
dataGrid.Background = Brushes.White;
DataGridTextColumn textColumn = new DataGridTextColumn();
textColumn.Width = 250;
textColumn.Header = "Account";
textColumn.Binding = new Binding("Account");
dataGrid.Columns.Add(textColumn);

When I add Item:

Globals_Liker.list_datagrid[tabControl1.SelectedIndex].Items.Add(Globals_Liker.list_item[tabControl1.SelectedIndex][i]);

But if I doubleclick on Items I have error:

"EditItem" is not allowed for this view.

How to make that error does not pop up?


回答1:


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<Type> 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.




回答2:


I seen this error in 3 cases

case1 : this error shown if double clicking the datagrid then(custom datagrid which contains processed data like analysis)

Simply, Set in Datagrid IsReadOnly="True"

case2 : this error shown after editing the datagrid, must set during RowEditEnding

  (sender as DataGrid).CommitEdit(DataGridEditingUnit.Row);

case3 : this error shown after RowEditEnding event, then must see where the datagrid is reloading the data, it can happen if viewsource or datagrid is already in use and we try to override the data manually

Let me know if any new cases you seen



来源:https://stackoverflow.com/questions/19334326/wpf-datagrid-edititem-is-not-allowed-for-this-view-exception

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!