3

我知道我可以使用以下代码创建虚线。

<Window x:Class="MarchingAnts.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Rectangle x:Name="RubberBand" Stroke="Black" StrokeDashArray="10"></Rectangle>
    </Grid>
</Window>

有没有办法让虚线在该区域周围移动以引起人们的注意?

这是为了裁剪图像,以便于区分裁剪的线条。

4

1 回答 1

6
<Storyboard x:Key="BorderAnimation">
    <DoubleAnimation To="200" Duration="0:0:10" RepeatBehavior="Forever" By="2" 
                     Storyboard.TargetProperty="StrokeDashOffset" Storyboard.TargetName="Border"/>
</Storyboard>
于 2013-04-15T20:18:46.930 回答