You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
764 B
C#

Use Slider to control Drop Shadow
<Window x:Class="BitmapEffects.Window4"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Bitmap Effects" Height="550" Width="650"
>
<StackPanel>
<Rectangle Height="60" Width="240" Fill="Cyan" Stroke="Black">
<Rectangle.BitmapEffect>
<DropShadowBitmapEffect
ShadowDepth="{Binding Path=Value, ElementName=sliderDrop}"
/>
</Rectangle.BitmapEffect>
</Rectangle>
<Slider Minimum="0" Maximum="10" Name="sliderDrop" Value="14"/>
<TextBox Text="{Binding ElementName=sliderDrop, Path=Value}"/>
</StackPanel>
</Window>