Why do I need to change the Binding Source Position before I can SaveChanges

天涯浪子 提交于 2019-12-19 16:52:48

问题


I have a small demo WinForms app. One of the Forms is my Add New Person form. I used the Details View instead of the DataGridView from my Data Sources. When I enter data and click the save button on the Navigator there are zero changes, However I put a MovePrevious and a MoveNext after my AddNew in the form Load, everything works as expected.

public partial class AddPersonForm : Form
{
    private readonly DemoContext _context;

    public AddPersonForm()
    {
        _context = new DemoContext();
        InitializeComponent();
    }

    protected override void OnLoad(EventArgs e)
    {
        _context.People.Load();

        personBindingSource.DataSource = _context.People.Local.ToBindingList();

        personBindingSource.AddNew();
        personBindingSource.MovePrevious();
        personBindingSource.MoveNext();

        base.OnLoad(e);
    }

    private void personBindingNavigatorSaveItem_Click(object sender, EventArgs e)
    {
        int changes = _context.SaveChanges();
        Debug.WriteLine("# of changes: " + changes);
    }
}

Why do I need to toggle the BindingSource Position before it will recognize changes and save?


回答1:


You don't need to change the position, in fact you need to call BindingSource.EndEdit that applies pending changes to the underlying data source.

Changing the position causes the underlying currency manager calls EndCurrentEdit and this is what the EndEdit method of binding source does for you.



来源:https://stackoverflow.com/questions/34270664/why-do-i-need-to-change-the-binding-source-position-before-i-can-savechanges

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