我正在尝试在窗口上执行淡入淡出转换。我可以进行过渡,但只能过渡到窗口的内容。我的意思是窗口和标题栏的框架并没有像其中的内容那样转换。请检查下面的 XAML 代码,看看必须做什么才能使整个窗口淡入。
<Window x:Class="WpfApplication6.newwindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="newwindow" Height="295" Width="371" PreviewStylusInRange="Window_PreviewStylusInRange">
<Window.Triggers>
<EventTrigger RoutedEvent="Window.Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="0" To="1" Duration="0:0:2" FillBehavior="HoldEnd" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Window.Triggers>
<Grid Height="257" Width="349">
<Label Content="Label" Height="28" HorizontalAlignment="Left" Margin="115,0,0,112" Name="label1" VerticalAlignment="Bottom" Width="127" Background="#FFDB1F1F" />
</Grid>
我正在使用带有 .NET 3.5 的 VS 2010。
谢谢你。