获取 Visual Studio 序列图的 IMonitorSelectionService 实例

发布于 2024-11-23 19:16:32 字数 337 浏览 2 评论 0原文

我正在尝试创建一个与序列图设计器一起工作的 Visual Studio 扩展,并且我希望能够注册一个事件,只要图表上的选择发生更改,该事件就会通知我。 IMonitorSelectionService 界面似乎提供了这样的功能一个事件,但我不知道如何从 VSPackage 获取此服务的实例。

我需要做什么才能获取此服务的实例,或者是否有其他更容易访问的事件可供我使用?

I'm trying to create a Visual Studio extension that works alongside the Sequence Diagram Designer, and I'd like to be able to register for an event that will notify me whenever the selection changes on the diagram. The IMonitorSelectionService interface appears to offer such an event, but I don't know how to get an instance of this service from a VSPackage.

What do I need to do in order to get an instance of this service, or is there some other more easily accessible event that I could use instead?

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

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

发布评论

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

评论(1

路还长,别太狂 2024-11-30 19:16:32

您应该能够执行以下操作:

IMonitorSelectionService monitorSelectionService = ((IServiceProvider)store).GetService(typeof(IMonitorSelectionService)) as IMonitorSelectionService;

其中 store 是 Store您感兴趣的图表。

You should be able to do the following:

IMonitorSelectionService monitorSelectionService = ((IServiceProvider)store).GetService(typeof(IMonitorSelectionService)) as IMonitorSelectionService;

Where store is the Store of the diagram you're interested in.

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