我有一个 RadGridView,我想防止用户在第五列中写入除“c”或“d”之外的任何字符、数字或字母。我已经尝试了下面的代码,但它没有工作......
private void radGridView1_KeyPress(object sender, KeyPressEventArgs e)
{
if (radGridView1.CurrentColumn.Index == 4)
{
if (e.KeyChar != 'c' || e.KeyChar != 'd' )
e.Handled = true;
}
}