Blend for Visual Studio SDK for .NET in VS2019

Viewed 10006

I need Blend for Visual Studio SDK for .NET in Visual Studio 2019 to use Interaction Triggers. In VS2017 it was in Blend for Visual Studio SDK for .NET as you can see here: Visual Studio 2017 - What happened to Expression interactions?

Where is this option in VS2019?

Thank you

UPDATE: what I really need is System.Windows.Interactivity and Microsoft.Expression.Interactions, both of them version 4.5.0.0

2 Answers

As for 2020 both of them were replaced by Behaviours as mentioned in Jan's answer in other question.

Link to NuGet package to Microsoft.Xaml.Behaviors.Wpf.

If you want to use them you have to:

  1. Remove reference to “Microsoft.Expression.Interactions” and “System.Windows.Interactivity”
  2. Install the Microsoft.Xaml.Behaviors.Wpf NuGet package.
  3. XAML files – replace xmlns namespaces of interactions and interactivity with behaviour.
  4. C# file - replace usings of interactions with behaviours.
Related