Skip to content

WPF dotnet core 的 Blend SDK Behaviors 库

Updated: at 08:22,Created: at 18:13

之前版本是通过安装 Blend SDK 支持 Behaviors 库的,但是这个方法都是通过引用 dll 的方式,不够优雅。在升级到 dotnet core 3.0 的时候就需要使用 WPF 官方团队开源的 Microsoft.Xaml.Behaviors.Wpf 库代替

先通过 NuGet 安装 Microsoft.Xaml.Behaviors.Wpf

或者在 csproj 添加下面代码

<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.19</Version>
</PackageReference>

将代码里面的引用 System.Windows.Interactivity 库的内容做替换

xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" 替换为 xmlns:i="http://schemas.microsoft.com/xaml/behaviors" 就可以了,这样就能解决找不到 System.Windows.Interactivity 无法构建成功

c# - How to add System.Windows.Interactivity to project? - Stack Overflow


知识共享许可协议

原文链接: http://blog.lindexi.com/post/WPF-dotnet-core-%E7%9A%84-Blend-SDK-Behaviors-%E5%BA%93

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。 欢迎转载、使用、重新发布,但务必保留文章署名 林德熙 (包含链接: https://blog.lindexi.com ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我 联系