在 Xaml 中为 VisualStateManager 指定命名空间时出现问题

发布于 2024-11-03 01:12:54 字数 257 浏览 0 评论 0原文

应该很简单,但我似乎找不到答案

,我正在尝试制作一个使用 VisualStateManger 的自定义 ControlTemplate。 MSDN 说要包含

xmlns:vsm="clr-namespace:System.Windows; assembly=System.Windows"

但是,它说我缺少对程序集的引用。所以我尝试添加它,但在 .NET 选项卡下找不到 System.Windows 程序集来添加它。我缺少什么?

谢谢

Should be simple but i can't seem to find the answer

I am trying to make a custom ControlTemplate that uses VisualStateManger. MSDN says to include

xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"

However, it says that i am missing a reference to the assembly. So i try to add it but can't find System.Windows assembly under the .NET tab to add it. What am i missing?

Thanks

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

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

发布评论

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

评论(2

月寒剑心 2024-11-10 01:12:54

您需要对 PresentationFramework.dll 的引用(来自 VisualStateManager 文档)。

您还需要确保您的目标是 .NET 4.0,而不是 3.5sp1。 VisualStateManager 已添加到 .NET 4 中的 WPF 中。

You need a reference to PresentationFramework.dll (from VisualStateManager documentation).

You'll also need to make sure that you're targetting .NET 4.0, not 3.5sp1. VisualStateManager was added to WPF in .NET 4.

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