如何在RadGrid for windows窗体中取消选择一行
本文关键字:选择 一行 取消 RadGrid for 窗体 windows | 更新日期: 2023-09-27 18:21:16
我尝试了ClearSelection方法,它正在取消选择行,但所选单元格仍然突出显示
网格中曾经有一个漏洞可以像这样绕过:
radGridView1.CurrentRow = null;
radGridView1.GridElement.Update(Telerik.WinControls.UI.GridUINotifyAction.StateChanged);
但不确定这对你的情况是否有帮助。
Tarhini你尝试过这个datagridview事件吗,
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
dataGridView1.ClearSelection();
}
怎么样
foreach(var cell in radGridView1.SelectedCells.ToArray())
{
cell.IsSelected = false;
}
检查控件的SelectionMode属性。您可能有CellSelect,而您可能需要FullRowSelect。