在我的datagridview中,我在winforms中有一个textboxcolumn和一个可编辑的combobox列。 。

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;
            }
        }
    }
}

最佳答案

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

不幸的是,这意味着捕获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

希望这可以帮助。

关于c# - 无法在可编辑的组合框中获得键入的文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52257984/

10-10 16:16