WPF:找不到 Microsoft_Windows_Themes

发布于 2024-08-22 12:13:26 字数 122 浏览 6 评论 0原文

我在 WPF 应用程序中收到此错误:

未找到类型“Microsoft_Windows_Themes:ScrollChrome”。验证您没有缺少程序集引用并且所有引用的程序集均已构建。

有什么想法吗?

I am getting this error in my WPF app:

The type 'Microsoft_Windows_Themes:ScrollChrome' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.

Any idea?

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

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

发布评论

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

评论(1

追我者格杀勿论 2024-08-29 12:13:26

确保将此引用添加到控件/页面/资源字典/其他内容的最顶部标签中:

...

xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero">

并在项目中添加对 PresentationFramework.Aero 的引用。

Make sure you add this reference in the top most tag of your control/page/resource dictionary/whatever:

...

xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero">

And add a reference to PresentationFramework.Aero in your project.

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