我发现“禁用”突出显示的唯一方法是将DefaultBellColor和SelectionForeColor分别设置为与BackColor和ForeColor相同的DefaultCellStyle。你可以在窗体的Load事件上以编程方式做,但我也在设计器中做了。
原文链接:https://www.f2er.com/vb/256411.html这样的东西:
Me.DataGridView1.DefaultCellStyle.SelectionBackColor = Me.DataGridView1.DefaultCellStyle.BackColor Me.DataGridView1.DefaultCellStyle.SelectionForeColor = Me.DataGridView1.DefaultCellStyle.ForeColor