以前版本是經過安裝 Blend SDK 支持 Behaviors 庫的,可是這個方法都是經過引用 dll 的方式,不夠優雅。在升級到 dotnet core 3.0 的時候就須要使用 WPF 官方團隊開源的 Microsoft.Xaml.Behaviors.Wpf 庫代替c#
先經過 NuGet 安裝 Microsoft.Xaml.Behaviors.Wpf 庫windows
或者在 csproj 添加下面代碼spa
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf"> <Version>1.1.19</Version> </PackageReference>
將代碼裏面的引用 System.Windows.Interactivity
庫的內容作替換code
將 xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
替換爲 xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
就能夠了,這樣就能解決找不到 System.Windows.Interactivity
沒法構建成功xml
c# - How to add System.Windows.Interactivity to project? - Stack Overflowget