void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
TextBox txtbox = e.Control as TextBox;
if (this.dataGridView1.CurrentCell.ColumnIndex == 0)
{
if (txtbox != null)
{
//
}
}
}
我还使用 AutoCompleteStringCollection 进行了编码。
代码正在运行,
在编辑第 1 列之前,它不允许自动完成任何其他列。
一旦编辑了第 1 列,所有列将与第 1 列相同。
请帮助我如何解决问题或任何其他最佳方法,请在此处分享。