如何知道 Visual Studio 主题颜色何时发生变化?

发布于 2024-12-02 02:12:05 字数 153 浏览 0 评论 0原文

我使用工具窗口开发 Visual Studio 包。工具窗口的 UI 基于 WPF。 在我的用户控件中,我想使用与 VS 设计相对应的当前 Visual Studio 主题颜色。

因此我的问题是如何发现 Visual Studio 主题颜色已更改?

提前致谢。

I develop the Visual Studio package with a tool window. The UI of the tool window is based on WPF.
In my user control I want to use current Visual Studio theme colors corresponding to the VS design.

Therefore my question is how I can find out that Visual Studio theme color has been changed?

Thanks in advance.

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

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

发布评论

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

评论(2

剩一世无双 2024-12-09 02:12:05

我找到了另一种方法来做到这一点。我可以直接使用 xaml 中的 Visual Studio 主题颜色资源。
例如:

Background="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowBackgroundKey}}"

vsfx在哪里

xmlns:vsfx="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.10.0"

这个方法解决了这个问题!

I've found another way to do it. I can use visual studio theme colors resources from xaml directly.
For example:

Background="{DynamicResource {x:Static vsfx:VsBrushes.ToolWindowBackgroundKey}}"

where vsfx is

xmlns:vsfx="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.10.0"

This approach solved this problem!

回梦 2024-12-09 02:12:05

如果您想检测主题更改事件本身,可以使用 VSColorTheme.ThemeChanged 静态事件。

If you want to detect the theme change event itself, you can make use of the VSColorTheme.ThemeChanged static event.

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