13

ViewModel プロパティの 1 つに基づいてのみ表示するラベルがあります。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.Resources開始できます。EnterActionsDataTrigger

シンプルなオンザ正常に動作DoubleAnimationするOpacityはずです

このようなもの:

<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 is certainly the WPF way, but it can be achieved by a simple code also. Here it goes, to make a label background blink:

lblTimer is a Lebel on your form with some text, say, "I AM BLINKING"

This can be applied to any property, as 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 に答える