4

我有一个带有两列(DataGridViewTextBoxColumnDataGRidViewComboBoxColumn)的 DataGridView。如果我单击文本框列中的单元格并使用鼠标滚轮滚动,则网格会滚动。太棒了。

如果我单击组合框列中的单元格,鼠标滚轮将滚动组合框中的项目。我需要滚动datagridview。

在我尝试修复时,我可以通过处理EditingControlShowing事件来禁用组合框中的滚动:

private void SeismicDateGridView_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
     if (e.Control is IDataGridViewEditingControl)
     {
          dgvCombo = (IDataGridViewEditingControl) e.Control;

          ((System.Windows.Forms.ComboBox)dgvCombo).MouseWheel -= new MouseEventHandler(DGVCombo_MouseWheel);
          ((System.Windows.Forms.ComboBox)dgvCombo).MouseWheel += new MouseEventHandler(DGVCombo_MouseWheel);
     }
}

private void DGVCombo_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e)
{
     HandledMouseEventArgs mwe = (HandledMouseEventArgs)e;
     mwe.Handled = true;
}

任何想法如何在DataGridViewComboBox列处于活动状态时滚动 DataGridView ?

4

3 回答 3

2

您是否考虑过处理 ComboBox 的 DropDownClosed 事件并将焦点更改为父级?

void DateGridView_CellClick(object sender, DataGridViewCellEventArgs e)
{            
    System.Windows.Forms.ComboBox comboBox = dataGridView.EditingControl as System.Windows.Forms.ComboBox;
    if (comboBox != null)
    {
        comboBox.DropDownClosed += comboBox_DropDownClosed;
    }
}

void comboBox_DropDownClosed(object sender, EventArgs e)
{
    (sender as System.Windows.Forms.ComboBox).DropDownClosed -= comboBox_DropDownClosed;
    (sender as System.Windows.Forms.ComboBox).Parent.Focus();
}

如果您想在选择单元格之前滚动 DataGridView,但 ComboBox 仍处于下拉状态,那将是另一种情况,但根据您在此处所说的判断:

如果我单击组合框列中的单元格,鼠标滚轮将滚动组合框中的项目。

我假设您只是想在做出选择后更改焦点。

于 2013-03-25T17:13:42.147 回答
1

您可以像这里一样使用 P/Invoke 重定向输入。或者您可以将 子类化DataGridView以向其添加一个Scroll调用基类方法的OnMouseWheel方法,然后您可以从DGVCombo_MouseWheel. 这里的例子。

我认为第二个选项可能是最优雅的,没有理由使用 PInvoke。

于 2013-03-06T14:37:51.750 回答
1

在这里它是通过内联函数完成的。并处理案例,当组合框被下拉时:

dgv.EditingControlShowing += (s, e) =>
    {
        DataGridViewComboBoxEditingControl editingControl = e.Control as DataGridViewComboBoxEditingControl;
        if (editingControl != null)
            editingControl.MouseWheel += (s2, e2) =>
                {
                    if (!editingControl.DroppedDown)
                    {
                        ((HandledMouseEventArgs)e2).Handled = true;
                        dgv.Focus();
                    }
                };
    };
于 2014-10-07T15:23:11.403 回答