.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
2021-03-20 17:26
阅读:615
将基于 .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 。
上一篇:windows安装consul
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
文章链接:http://soscw.com/index.php/essay/66804.html
文章标题:.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题
文章链接:http://soscw.com/index.php/essay/66804.html
评论
亲,登录后才可以留言!