我有一个带有DataGridView的表单。 在Datagridview中,我有一些DataGridViewComboBoxColumn和一些DataGridViewTextBoxColumn。 问题是我想使用 Enter 而不是Tab来从一个单元格切换到另一个单元格,即使我在单元格中的editmode中也是如此。
screenshot of the datagridview to customize
screenshot of the combobox to customize
我成功实现了此answer https://stackoverflow.com/a/9917202/249120中为文本框列提供的解决方案,但我无法为Combobox列实现它。怎么做?
重要说明:对于文本框列,defaultCellStyle的属性“wrap”必须为True。 它工作(当你按下输入就像你按下一个标签)所以我决定用“CustomComboBoxColumn”测试它,我试图创建一个非常类似于CustomTextBoxColumn的代码,但它不起作用:
#region CustomComboBoxColumn
public class CustomComboBoxColumn : DataGridViewColumn
{
public CustomComboBoxColumn() : base(new CustomComboBoxCell()) { }
public override DataGridViewCell CellTemplate
{
get { return base.CellTemplate; }
set
{
if (value != null && !value.GetType().IsAssignableFrom(typeof(CustomComboBoxCell)))
{
throw new InvalidCastException("Must be a CustomComboBoxCell");
}
base.CellTemplate = value;
}
}
}
public class CustomComboBoxCell : DataGridViewComboBoxCell
{
public override Type EditType
{
get { return typeof(CustomComboBoxEditingControl); }
}
}
public class CustomComboBoxEditingControl : DataGridViewComboBoxEditingControl
{
protected override void WndProc(ref Message m)
{
//we need to handle the keydown event
if (m.Msg == Native.WM_KEYDOWN)
{
if ((ModifierKeys & Keys.Shift) == 0)//make sure that user isn't entering new line in case of warping is set to true
{
Keys key = (Keys)m.WParam;
if (key == Keys.Enter)
{
if (this.EditingControlDataGridView != null)
{
if (this.EditingControlDataGridView.IsHandleCreated)
{
//sent message to parent dvg
Native.PostMessage(this.EditingControlDataGridView.Handle, (uint)m.Msg, m.WParam.ToInt32(), m.LParam.ToInt32());
m.Result = IntPtr.Zero;
}
return;
}
}
}
}
base.WndProc(ref m);
}
}
#endregion
最终结果是没有属性DataSource,DisplayMember,Items,ValueMember的ComboBoxColumn,但是当按Enter键进入下一个单元格时。 还有什么可做的?
答案 0 :(得分:1)
对Bruno Pacifici的回答和评论回答:
OR 您只能覆盖1个方法“ProcessCmdKey”,它将执行相同操作:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
//Override behavior on Enter press
if (keyData == Keys.Enter)
{
if (CurrentCell != null)
{
if (CurrentCell.IsInEditMode)
{
//Do Stuff if cell is currently being edited
return ProcessTabKey(keyData);
}
else
{
//Do Stuff if cell is NOT yet currently edited
BeginEdit(true);
}
}
}
//Process all other keys as expected
return base.ProcessCmdKey(ref msg, keyData);
}
P.S。如果答案不是太大,为什么只发布链接作为答案? 我经历了这么多案例,当这种“有用”的链接不再起作用时。 因此,复制一些带有原始源链接的代码将更加“404” - 安全回答。
答案 1 :(得分:0)
我的问题的解决方案非常简单。您必须创建一个自定义dataGridView,只覆盖2个方法。见这里:http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/a44622c0-74e1-463b-97b9-27b87513747e#faq9。