I have a CollectionViewSource (cvs) which has strongly typed DataTable as it's source. Cvs.View is set as DataGrid's ItemsSource. I want to update, insert and delete data from a database based on changes in DataGrid. I have successfully done update, and i have an idea for delete, but for insert i have some problems. I tried to do it by handling CurrentChanging event of cvs.View but row state is always Detached and it should be Added. Here is my code:

private void View_CurrentChanging(object sender, CurrentChangingEventArgs e)
{
    if (cvs.View.CurrentItem != null)
    {
        var dataRow = ((cvs.View.CurrentItem as DataRowView).Row) as MyDataSet.MyTableRow;
        if (dataRow.HasChanges())
        {
            //do update - works
        }
        dataRow.EndEdit(); // without this line RowState is Unchanged when it should be Added
        if (dataRow.RowState == DataRowState.Added)
        {
            //do insert - never goes here, RowState is Detached when it should be Added
        }
    }
}

Is this the right way to do it? Am I missing something? Thanks in advance.

EDIT: DataGrid binding:

dataGrid1.ItemsSource = cvs.View;
link|improve this question

pls leave the CollectionViewSource stuff out of your code and just try setting the itemssource direct to your DataTable. – blindmeis Jul 13 '11 at 11:08
feedback

1 Answer

up vote 1 down vote accepted

i use this the following in my wpf app:

this.MyView = (BindingListCollectionView)CollectionViewSource.GetDefaultView(this.MyDataTable);

as far as you do an insert, update or delete to your DataTable its automatic reflected in your View/Datagrid.

EDIT: MyView is the View you bind to your DataGrid in your UI

private BindingListCollectionView _view;

public BindingListCollectionView MyView 
{
    get { return this._view; }
    protected set
    {
        this._view = value;
        this.NotifyPropertyChanged(() => this.MyView);
    }
}

XAML

<DataGrid ItemsSource="{Binding Path=MyView, Mode=OneWay, ValidatesOnDataErrors=true, ValidatesOnExceptions=true}" />
link|improve this answer
I don't understand what is this.MyView here. – Vale Jul 13 '11 at 6:52
see my edit. you did not need to listen to the changing event of your view. – blindmeis Jul 13 '11 at 7:06
I understood most of it, but I get an exception on line this.NotifyPropertyChanged(() => this.MyView); - MainWindow does not contain definition for NotifyProperyChanged – Vale Jul 13 '11 at 7:25
Please explain this to me. I am stuck. I know how to do the same thing in forms, but not in wpf, it is so confusing. – Vale Jul 13 '11 at 7:59
this.NotifyPropertyChanged(() => this.MyView); is just the implementation of INotifyPropertyChanged. you can leave this if you set the itemssource just once. pls post your datagrid binding(xaml or code) – blindmeis Jul 13 '11 at 8:18
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.