如何将焦点设置到 Xceed Grid for .NET 中的特定行
我刚开始使用 Xceed Grid for .NET。 .NET 受到关注,但 Xceed 则不然。你能帮我如何得到同样的东西吗?
I am new to using Xceed Grid for .NET. There is set focus in .NET but not on Xceed. Can you please help me how to get the same ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
在 DataRow 上调用 BringIntoView 将使 GridControl 一直滚动到 DataRow 所在的位置。将 GridControl 上的 FirstVisibleRow 设置为 CurrentRow 将使 DataRow 位于 GridControl 视图的顶部。
You can do the following:
Calling the BringIntoView on the DataRow will let the GridControl scroll all the way to where the DataRow is located. Setting the FirstVisibleRow on the GridControl to your CurrentRow will have the DataRow at the top of the GridControl's view.