.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
将基于 .NET Framework 的 WPF 项目迁移到基于 .NET Core 3 的过程中,发现 System.Windows.Interactivity 已不再被兼容。
以下是具体迁移过程:
1.替换程序包
打开 NuGet 程序包管理器,删除对 Microsoft.Expression.Interactions 和System.Windows.Interactivity 的引用,并安装 Microsoft.Xaml.Behaviors.Wpf 程序包。
2.更换 xmlns 命名空间
以下是代码示例:
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"
3.更换类文件中的命名空间
Microsoft.Xaml.Interactivity 和 Microsoft.Xaml.Interactions 替换为 Microsoft.Xaml.Behaviors
更多关于 Microsoft.Xaml.Behaviors.Wpf 的学习,移步 XAMLBehaviorsSample 。
- 本文链接: https://www.zdyla.com/post/net-core-3-replacement-of-system-windows-interactivity-in-wpf.html
- 版权声明: 本博客所有文章和照片除特别声明外,转载请联系作者获取授权,并请注明出处!