在 TreeViewer 中选择添加的项目

发布于 2024-12-16 17:32:59 字数 127 浏览 1 评论 0原文

我的应用程序中有添加按钮和TableViewer。当按下添加按钮时,我将向模型添加一个新元素,然后刷新该查看器。

问题是:如何在我的查看器中选择这个新添加的项目?

I have and Add button and TableViewer in my application. When the Add button is pressed, I'm adding a new element to my model, then refreshing that viewer.

The question is: How to select this newly added item in my viewer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萤火眠眠 2024-12-23 17:32:59
tableViewer.setSelection(new StructuredSelection(modelElement), true);

如有必要,末尾的 true 将使表格滚动到新选择的项目。

tableViewer.setSelection(new StructuredSelection(modelElement), true);

The true at the end will make the table scroll to the newly selected item, if necessary.

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