码迷,mamicode.com
首页 > Windows程序 > 详细

.Net Core 3 : 关于 WPF 中 System.Windows.Interactivity 的迁移问题

时间:2020-02-10 22:55:52      阅读:190      评论:0      收藏:0      [点我收藏+]

标签: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.InteractionsSystem.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.InteractivityMicrosoft.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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!