我正在尝试在我的 UWP 应用程序中为背景图像添加模糊效果。我可以使用此代码毫无问题地向图像添加蓝色(我实际上是在运行时将其应用于从网络动态加载的图像)
<Image Source="Assets/Photos/BisonBadlandsChillin.png"
Width="100"
Height="100">
<interactivity:Interaction.Behaviors>
<behaviors:Blur x:Name="blurry"
Value="10"
Duration="100"
Delay="0"
AutomaticallyStart="True" />
</interactivity:Interaction.Behaviors>
但是我想将模糊添加到背景中的图像,特别是RelativePanel的背景。但是,RelativePanel 的背景只会在其内容中使用 ImageBrush,每当我尝试将 Community Toolkit 中的相同行为添加到 ImageBrush 时,我都会收到错误消息:
无法将“Microsoft.Toolkit.Uwp.UI.Animations.Behaviors.Blur”类型的实例添加到“Microsoft.Xaml.Interactivity.BehaviorCollection”类型的集合中
有没有办法仍然使用工具包?