无法在可编辑的组合框中获得键入的文本

时间:2018-09-10 12:37:38

标签: c#

在我的datagridview中,我在winforms中有一个textboxcolumn和一个可编辑的combobox列。但是在combobox文本中输入新值并按Enter键时,我没有得到键入的值作为相应的单元格值。有人可以吗帮助。

private void dgv_customAttributes_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{

    DataGridViewRow row = dgv_customAttributes.CurrentRow;           
    if (row.Cells[1].Value.ToString() != null)
    {
        //Here the selectedVal is giving the old value instead of the new typed text
        string SelectedVal = row.Cells[1].Value.ToString();
        foreach (CustomAttribute attribute in customAttributes)
        {
            if (row.Cells[0].Value.ToString() == attribute.AttributeName)
            {
                attribute.AttributeValue = SelectedVal;
                break;
            }
        }
    }
}

1 个答案:

答案 0 :(得分:1)

您需要找出显示的组合框,并在选定的索引发生更改时为其附加事件处理程序(因为无法从列或单元格本身获取该信息)。 / p>

不幸的是,这意味着捕获事件 CellEndEdit 是没有用的。

在下面的示例中,一个文本框填充了所选的选项,但是您可以执行其他任何操作,例如在枚举变量中选择特定值或执行其他操作。

    void OnEditingControlShowing(DataGridViewEditingControlShowingEventArgs e)
    {
        if ( e.Control is ComboBox comboEdited ) {
            // Can also be set in the column, globally for all combo boxes
            comboEdited.DataSource = ListBoxItems;
            comboEdited.AutoCompleteMode = AutoCompleteMode.Append;
            comboEdited.AutoCompleteSource = AutoCompleteSource.ListItems;

            // Attach event handler
            comboEdited.SelectedValueChanged +=
                (sender, evt) => this.OnComboSelectedValueChanged( sender );
        }

        return;
    }

    void OnComboSelectedValueChanged(object sender)
    {
        string selectedValue;
        ComboBox comboBox = (ComboBox) sender;
        int selectedIndex = comboBox.SelectedIndex;

        if ( selectedIndex >= 0 ) {
            selectedValue = ListBoxItems[ selectedIndex ];
        } else {
            selectedValue = comboBox.Text;
        }

        this.Form.EdSelected.Text = selectedValue;
    }

找到complete source code for the table in which a column is a combobox in GitHub

希望这会有所帮助。