VS2019 中的 Visual Studio SDK for .NET Blend

问题描述 投票:0回答:3

我需要 Visual Studio 2019 中的 Blend for Visual Studio SDK for .NET 才能使用交互触发器。在 VS2017 中,它位于 Blend for Visual Studio SDK for .NET 中,如下所示: Visual Studio 2017 - 表达式交互发生了什么?

VS2019中这个选项在哪里?

谢谢你

更新:我真正需要的是 System.Windows.Interactivity 和 Microsoft.Expression.Interactions,它们都是 4.5.0.0 版本

blend interaction visual-studio-2019
3个回答
6
投票

您可以尝试这些 nuget 软件包:

Microsoft.Expression.Blend.SDK.WPF:适用于 WPF (4.0) 的 Microsoft 表达式混合 SDK

Microsoft.SDK.Expression.Blend:Micosoft Expression Blend SDK for 4.5

Expression.Blend.Sdk:包含System.Windows.Interactivity(4.0、4.5)

它们都将 Blend SDK dll 包装到 nuget 包中。


1
投票

至于 2020 年,它们都被行为所取代,如 Jan 在其他问题中的回答中提到的。

将 NuGet 包链接到 Microsoft.Xaml.Behaviors.Wpf

如果您想使用它们,您必须:

  1. 删除对“Microsoft.Expression.Interactions”和“System.Windows.Interactivity”的引用
  2. 安装 Microsoft.Xaml.Behaviors.Wpf NuGet 包。
  3. XAML 文件 – 用行为替换交互和交互性的 xmlns 命名空间。
  4. C# 文件 - 用行为替换交互的使用。

© www.soinside.com 2019 - 2024. All rights reserved.