WPF:如何将数据网格上的焦点设置到特定行?
我想将焦点设置在数据网格的第一行。
这就是我到目前为止所拥有的:
Keyboard.Focus(ResultsGrid)
If result.Count > 0 Then
ResultsGrid.SelectedIndex = 0
End If
这会将焦点设置到数据网格,而不是行本身。
I would like to set the focus on the first row of a data grid.
This is what I have so far:
Keyboard.Focus(ResultsGrid)
If result.Count > 0 Then
ResultsGrid.SelectedIndex = 0
End If
This will set the focus to the datagrid, but not the row itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
选择行后,您必须按以下方式将焦点设置在该行上:
After selecting the row you will have to set the focus on the row in the following way:
试试这个:
Try this: