如何将焦点设置到 Xceed Grid for .NET 中的特定行

发布于 2024-12-03 01:10:31 字数 72 浏览 1 评论 0原文

我刚开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情未る 2024-12-10 01:10:31

您可以执行以下操作:

this.gridControl1.CurrentRow = this.gridControl1.DataRows[100];
this.gridControl1.CurrentRow.BringIntoView();
this.gridControl1.FirstVisibleRow = this.gridControl1.CurrentRow;
this.gridControl1.SelectedRows.Add(this.gridControl1.CurrentRow);

在 DataRow 上调用 BringIntoView 将使 GridControl 一直滚动到 DataRow 所在的位置。将 GridControl 上的 FirstVisibleRow 设置为 CurrentRow 将使 DataRow 位于 GridControl 视图的顶部。

You can do the following:

this.gridControl1.CurrentRow = this.gridControl1.DataRows[100];
this.gridControl1.CurrentRow.BringIntoView();
this.gridControl1.FirstVisibleRow = this.gridControl1.CurrentRow;
this.gridControl1.SelectedRows.Add(this.gridControl1.CurrentRow);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文