Using IEditableObject In Silverlight

余生颓废 提交于 2019-12-06 15:21:08

I know this is an old thread (but for the sake of future use...)

I do it this way:

whenever the current item (for instance of a CollectionViewSource) changes this is done:

void View_CurrentChanged(object sender, EventArgs e)
        {
            if (culturesView.Source != null)
            {
                ((IEditableObject)SelectedRecord).BeginEdit();
                RaisePropertyChanged("SelectedRecord");

            }
        }

Whenever i want to save (the current item) i do this:

 private void Save()
{
 ((IEditableObject)SelectedRecord).EndEdit();
//do the actual saving to the dbms here ....

}

Whenever i want to cancel (current changes) i do this:

private void Cancel()
{            
((IEditableObject)SelectedRecord).CancelEdit();
            //allthough we have canceled the editing we have to re-enable the edit mode (because
            //the user may want to edit the selected record again)
            ((IEditableObject)SelectedRecord).BeginEdit();

}

Hope it helps someone in the future!

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