我想做的很简单,但我找不到怎么做。
我在DropShadowEffect
中有ResourceDictionary
,其中有一个密钥:
<DropShadowEffect x:Key="myDropShadow" BlurRadius="8" ShadowDepth="1.5" Direction="270" Color="Black" Opacity=".42" RenderingBias="Performance" />
我想通过引用它的关键字将它添加到图像效果......
<Image>
<Image.Effect>
<DropShadowEffect /> <!-- Here refer to myDropShadow -->
</Image.Effect>
</Image>
答案 0 :(得分:2)
您应该可以使用StaticResource
标记扩展名:
<Image Effect="{StaticResource myDropShadow}" ... />