我正在使用 C# ASP.NET VS2010。
我有一个 GridView,包括一个选择命令按钮。
此选择按钮指向选择后激活的 C# 页面背后的代码中的一个操作。
执行完所有必需的操作后,我想清除选择。
例如:如果 ID="gvInfo" 我想使用类似 gvInfo.Deselect();
我怎么做?
试试这个:
Gridview has a property called SelectedIndex.
If you want to unselect any rows then set this property to -1.
谢谢你的问题Different111222;这个问题帮助了我。
gvInfo.SelectedIndex = -1;
希望这可以帮助!
在桌面应用程序DataGridView
中没有SelectedIndex
:
gridView1.ClearSelection();
我是这样做的,而且效果很好。
gridViewName.GetSelectionModel().ClearSelection();
我希望它可以为某人工作。