13

我有一个标签,我只根据我的 ViewModel 属性之一使其可见。这是 XAML:

<Label  HorizontalAlignment="Center" VerticalAlignment="Center"
        HorizontalContentAlignment="Center" 
        VerticalContentAlignment="Center" 
        FontSize="24" Width="200" Height="200" >
    <Label.Content >
        Option in the money! 
    </Label.Content>
    <Label.Style>
        <Style TargetType="{x:Type Label}">
            <Setter Property="Visibility" Value="Hidden" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding OptionInMoney}" Value="True">
                    <Setter Property="Visibility"
                Value="Visible" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </Label.Style>

</Label>

我不确定这是最好的方法,但无论如何,我也希望标签闪烁。显然,我只希望它在可见时闪烁。有人可以指点我一些示例代码,或者写一个简单的例子来做到这一点吗?我想我需要某种触发器和动画。据推测,当标签不再可见时我还需要一个触发器以便我停止动画?

谢谢, Dave PS 是否有一本关于所有这些 WPF 技巧的好书或网站?对于那些记得那本书的人来说,就像“MFC Answer Book”之类的东西。

4

3 回答 3

41

您可以向Storyboard中添加动画Style.ResourcesEnterActionsDataTrigger.

一个简单DoubleAnimationOpacity应该可以正常工作

像这样的东西:

<Label.Style>
    <Style TargetType="{x:Type Label}">
        <Style.Resources>
            <Storyboard x:Key="flashAnimation" >
                <DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0" AutoReverse="True" Duration="0:0:0.5" RepeatBehavior="Forever" />
            </Storyboard>
        </Style.Resources>

        <Setter Property="Visibility" Value="Hidden" />
        <Style.Triggers>
            <DataTrigger Binding="{Binding OptionInMoney}" Value="True">
                <Setter Property="Visibility" Value="Visible" />
                <DataTrigger.EnterActions>
                    <BeginStoryboard Name="flash" Storyboard="{StaticResource flashAnimation}" />
                </DataTrigger.EnterActions>
                <DataTrigger.ExitActions>
                    <StopStoryboard BeginStoryboardName="flash"/>
                </DataTrigger.ExitActions>
            </DataTrigger>

        </Style.Triggers>
    </Style>
</Label.Style>
于 2013-04-05T07:02:54.833 回答
4

StoryBoard 当然是 WPF 方式,但也可以通过简单的代码来实现。在这里,让标签背景闪烁:

lblTimer是您表单上的 Lebel,带有一些文字,例如“我正在闪烁”

这可以应用于任何属性,如 VISIBILITY。

// Create a timer.
private void Window_Loaded(object sender, RoutedEventArgs e)
{
    DispatcherTimer timer = new DispatcherTimer();
    timer.Tick += timer_Tick;
    timer.Interval = new TimeSpan(0, 0, 0, 0, 500);
    timer.Start();
}

// The timer's Tick event.
private bool BlinkOn = false;
private void timer_Tick(object sender, EventArgs e)
{
    if (BlinkOn)
    {
        lblTimer.Foreground = Brushes.Black;
        lblTimer.Background = Brushes.White;
    }
    else
    {
        lblTimer.Foreground = Brushes.White;
        lblTimer.Background = Brushes.Black;
    }
    BlinkOn = !BlinkOn;
}
于 2017-03-04T07:38:02.740 回答
1

试试这个帖子。它被称为“闪烁文本块”,但您可以轻松地将 a 替换TextBox为 Label 。

于 2013-04-04T22:11:14.013 回答