简体   繁体   English

WPF文本字幕在其他元素后面

[英]Wpf Text marquee behind other element

I built an messagebar, with an animated text, see the .gif from the animation . 我建立了一个带有动画文本的消息栏,可以从动画中看到.gif Like you can see the text "fly's" in the foreground and hides the placeholder. 就像您可以在前景中看到文本“ fly's”并隐藏占位符一样。 But I need the placeholder in the foreground. 但是我需要在前台使用占位符。

My first idea was to change the region of the animation from 我的第一个想法是将动画的区域从

doubleAnimation.To = tbInfo.ActualWidth *-1;

to

doubleAnimation.To = boLogo.ActualWidth;

but the result looks like this: version with other animation area . 但结果看起来像这样: 带有其他动画区域的版本

How can I set the placeholder in the foreground, so that the animation "fly's" behind it? 如何设置占位符在前景中,以便动画在其后方“飞起来”?


My XAML-Code 我的XAML代码

<Canvas x:Name="canMain" HorizontalAlignment="Stretch" VerticalAlignment="Center">
    <Border x:Name="boLogo" Height="40" Background="Gray" Canvas.Left="0" Canvas.Top="-20">
        <Button Content="Placeholder" Width="90" />
    </Border>
    <TextBlock x:Name="tbInfo" Visibility="Hidden" FontSize="32" FontWeight="Bold"  Padding="5" HorizontalAlignment="Stretch" VerticalAlignment="Center"></TextBlock>
</Canvas>

and the code to show the window 以及显示窗口的代码

public void ShowWindow(string str)
{
    tbInfo.Text = str;
    this.Height = 39;
    this.Width = SystemParameters.WorkArea.Width;
    this.Left = SystemParameters.PrimaryScreenWidth - this.Width;
    this.Show();

    TextMarquee(20);
}

private void TextMarquee(int duration)
{
    double height = canMain.ActualHeight - tbInfo.ActualHeight;
    tbInfo.Margin = new Thickness(0, height / 2, 0, 0);
    DoubleAnimation doubleAnimation = new DoubleAnimation();
    doubleAnimation.From = canMain.ActualWidth;
    doubleAnimation.To = tbInfo.ActualWidth * -1;
    doubleAnimation.RepeatBehavior = RepeatBehavior.Forever;
    doubleAnimation.Duration = new Duration(TimeSpan.FromSeconds(duration));
    tbInfo.BeginAnimation(Canvas.LeftProperty, doubleAnimation);
    tbInfo.Visibility = Visibility.Visible;
}

Use the Panel.ZIndex: 使用Panel.ZIndex:

<Canvas x:Name="canMain" >
<Border x:Name="boLogo" Panel.ZIndex="2">
    <Button Content="Placeholder" Width="90" />
</Border>
<TextBlock x:Name="tbInfo" Panel.ZIndex="1"></TextBlock>
</Canvas>

https://msdn.microsoft.com/de-de/library/system.windows.controls.panel.zindex%28v=vs.110%29.aspx https://msdn.microsoft.com/de-de/library/system.windows.controls.panel.zindex%28v=vs.110%29.aspx

Try the Grid.ZIndex: 尝试Grid.ZIndex:

<Grid x:Name="canMain" >
    <Border x:Name="boLogo" Grid.ZIndex="2">
        <Button Content="Placeholder" />
    </Border>
    <TextBlock x:Name="tbInfo" Grid.ZIndex="1"/>
</Grid>

Being ZIndex = "2" the most visible layer. ZIndex = "2"是最可见的图层。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM