标签:ati 关于 str ace xmlns ken 兼容 问题 inter
原文 .Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
将基于 .NET Framework 的 WPF 项目迁移到基于 .NET Core 3 的过程中,发现 System.Windows.Interactivity 已不再被兼容。
以下是具体迁移过程:
打开 NuGet 程序包管理器,删除对 Microsoft.Expression.Interactions 和System.Windows.Interactivity 的引用,并安装 Microsoft.Xaml.Behaviors.Wpf 程序包。
以下是代码示例:
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
替换为:
xmlns:Behaviors="http://schemas.microsoft.com/xaml/behaviors"
Microsoft.Xaml.Interactivity 和 Microsoft.Xaml.Interactions 替换为 Microsoft.Xaml.Behaviors
更多关于 Microsoft.Xaml.Behaviors.Wpf 的学习,移步 XAMLBehaviorsSample 。
.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
标签:ati 关于 str ace xmlns ken 兼容 问题 inter
原文地址:https://www.cnblogs.com/lonelyxmas/p/12293050.html