ComboBox.SelectedValue无法按预期工作

时间:2016-04-18 12:23:22

标签: c# datagridview combobox bindingsource lookup-tables

所以我有一个DataGridView,我在表单上使用它作为“行选择器”,并且绑定了一堆绑定到bindingSource。

其中一个绑定控件是一个ComboBox,用作查找,可以为行启用状态选择,这是从DataTable中填充的,其数据是从数据库中提取的。

此框的人口没有任何问题。

当从DGV中选择给定行时,表单控制显示来自给定行的数据,但是“statusComboBox”并不完全正在玩游戏。

如果在DGV中,我选择的行与先前选择的行具有不同的状态,则它可以正常工作,但是,如果我选择与先前选择的行具有相同值的行,而不是显示的框DisplayMember显示ValueMember。

在上面的场景中似乎只发生了IT,其中行选择仅引发来自绑定的ComboBox的显示响应,提供先前的选择具有不同的“状态ID”。我有什么不对,会导致这种行为?

因此表单加载看起来像这样

private void ProjectsForm_Load(object sender, EventArgs e)
{  
    InitBindingSource();

    //// bind Selector
    //ASMod$ this needs to be 'true' unless you explicitly declare columns
    ProjectsDataGridView.AutoGenerateColumns = false;
    ProjectsDataGridView.DataSource = ProjectsBindingSource;

    GetData();

    //Set GeneralStatusBox
    Helpers.GeneralStatusInitLookup(statusComboBox, ProjectsBindingSource);
}

ProjectBindingSource因此被初始化:

private void InitBindingSource()
{
    ProjectsBindingSource = new BindingSource();
    projectsBindingNavigator.BindingSource = ProjectsBindingSource;
    ProjectsBindingSource.PositionChanged += new EventHandler(ProjectsBindingSource_PositionChanged);
}

一个ProjectsAddDataBindings过程,以及ComboBox包含的DataBindings.Add(在另外填充ProjectsBindingSource的GetData例程的末尾执行):

ProjectsAddDataBindings();
{
    …
    this.statusComboBox.DataBindings.Add("Text", ProjectsBindingSource, "GSID");
    …
}

在GetData块之后,GeneralStatusInitLookup在辅助类中填充Lookup元素,因为它为许多不同的表单提供了功能

public static void GeneralStatusInitLookup(System.Windows.Forms.ComboBox comboBox, BindingSource primaryBindingSource)
{
    string statusFilter = "";
    statusFilter = Helpers.GetStatusGroupFilter(EndeavourForm.FilterId);
    if (statusFilter != "")
    {
        statusFilter = " WHERE " + statusFilter;
    }
    //// string statusFilter = ""; //// temp

    string sql = "";
    sql = "SELECT GSID, ShortName FROM GeneralStatus" + statusFilter + " ORDER BY Pos";
    GeneralStatusDataTable = Helpers.Db.GetDataTable(sql);

    comboBox.DataSource = GeneralStatusDataTable;
    comboBox.DisplayMember = "ShortName";
    comboBox.ValueMember = "GSID";

    comboBox.DataBindings.Add(new Binding("SelectedValue", primaryBindingSource.DataSource, "GSID"));
}

DGV启动的行更改就像这样处理

private void ProjectsBindingSource_PositionChanged(object sender, EventArgs e)
{
    try
    {
        // Update the database with the user's changes.
        UpdateProjects();
        statusComboBox.SelectedValue = (int)CurrentDataRowView.Row["GSID"];
    }
    catch (Exception)
    {
    }
}

private void UpdateProjects()
{
    try
    {
        ProjectsDataAdapter.Update((DataTable)ProjectsBindingSource.DataSource);

        DataHelper.CommitProposedChanges(projectsDataSet);
        if (this.projectsDataSet.HasChanges() == true)
        {
            ProjectsBindingSource.EndEdit();
            ProjectsDataAdapter.Update();
        }

        CurrentDataRowView = (DataRowView)ProjectsBindingSource.Current;
    }
    catch (InvalidOperationException)
    {
        throw;
    }
    catch (Exception)
    {
        throw;
    }
}

无论如何,我希望我没有用更多的代码淹没读者,但坦率地说,我无法看到这出错的地方。所以任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

这最终是一个简单的解决方案。 GeneralStatusInitLookup()和ProjectsAddDataBindings()块都使用DataBindings.Add ...对于查找表,这很好,但是绑定到主表;后来,我使用了“Text”作为propertyName参数。