We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turns out that the XAML behavior package, previously included in the Blend SDK, is now deprecated. Luckily Microsoft was kind enough to make it open source and install it via NuGet.
As linked above, the migration steps are:
To save you a click, this is the main steps to migrate: Remove reference to “Microsoft.Expression.Interactions” and “System.Windows.Interactivity” Install the Microsoft.Xaml.Behaviors.Wpf NuGet package. XAML files – replace the xmlns namespaces http://schemas.microsoft.com/expression/2010/interactivity and http://schemas.microsoft.com/expression/2010/interactions with http://schemas.microsoft.com/xaml/behaviors C# files – replace the usings in c# files “Microsoft.Xaml.Interactivity” and “Microsoft.Xaml.Interactions” with “Microsoft.Xaml.Behaviors”
To save you a click, this is the main steps to migrate:
The text was updated successfully, but these errors were encountered:
Updaed XAML behaviors package source Grandpappy#26
583c5bc
- Added XAML Behaviors package to use Nuget source - Updated previous namespaces to match new source - Updated namespace prefixes to match new source
No branches or pull requests
Turns out that the XAML behavior package, previously included in the Blend SDK, is now deprecated. Luckily Microsoft was kind enough to make it open source and install it via NuGet.
As linked above, the migration steps are:
The text was updated successfully, but these errors were encountered: