WPF:找不到 Microsoft_Windows_Themes
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保将此引用添加到控件/页面/资源字典/其他内容的最顶部标签中:
...
并在项目中添加对
PresentationFramework.Aero
的引用。Make sure you add this reference in the top most tag of your control/page/resource dictionary/whatever:
...
And add a reference to
PresentationFramework.Aero
in your project.