You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
4.8 KiB

<Window x:Class="Container.Win.WindowView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:transc="clr-namespace:Transitionals.Controls;assembly=Transitionals"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mycon="clr-namespace:Container.Win"
mc:Ignorable="d"
Title="WindowView" Top="0" Left="0" Loaded="WindowView_Load" WindowStyle="None" Topmost="True" AllowsTransparency="True" Background="Transparent" ResizeMode="NoResize" Closing="WindowView_Closing" Width="2160" Height="3840">
<Grid x:Name="main" Background="Transparent">
<Canvas Name="timeGrid" Width="630" Height="630" Visibility="Visible">
<!--<Image x:Name="Img" Source="./Images/countdowmbg.png" Width="630" Height="630" Panel.ZIndex="1" HorizontalAlignment="Center" VerticalAlignment="Center"/>-->
<Rectangle Name="RectDisImage" Width="630" Height="630" />
<!--<gifLib:GifImage x:Name="GgifImage" Source="../image/countdown.gif" Width="432" Height="432" Panel.ZIndex="2" Opacity="0.78" Stretch="Fill" Canvas.Left="99" Canvas.Top="99" />-->
</Canvas>
<Grid x:Name="gridMain" Visibility="Hidden">
<transc:TransitionElement x:Name="mainp" >
</transc:TransitionElement>
<Canvas x:Name="waiting">
<Canvas.Background>
<ImageBrush ImageSource="/Container;component/image/bg.png" />
</Canvas.Background>
<TextBlock Name="tbMessage" Foreground="White" FontWeight="Bold" FontSize="30" Text="" Canvas.Left="0" ></TextBlock>
</Canvas>
<Grid x:Name="lay">
<Grid.RowDefinitions>
<RowDefinition Height="92*" ></RowDefinition>
<RowDefinition Height="200*"></RowDefinition>
<RowDefinition Height="92*" ></RowDefinition>
</Grid.RowDefinitions>
<Canvas Name="_canvas" Grid.Row="1" Width="2160" Height="2000">
<Canvas Width="300" Height="300" x:Name="gridmove" Background="Transparent">
<!--<Image Width="300" Height="300" Panel.ZIndex="0" Source="/WpfDemo;component/images2/黑环2.png"></Image>
<Image Width="300" Height="300" Panel.ZIndex="1" Source="/WpfDemo;component/images2/黑环1.png"></Image>-->
<Rectangle Name="RectDis" Width="300" Height="300" Panel.ZIndex="2" Visibility="Hidden" />
<Image Width="300" Height="300" Panel.ZIndex="3" x:Name="gridImage" Visibility="Hidden"></Image>
<!--<wfi:WindowsFormsHost Width="100" Height="100" Panel.ZIndex="4" Background="Transparent" x:Name="fromGif" Visibility="Hidden">
<winForms:PictureBox x:Name="PictureOfGif" Width="300" Height="300" BackColor="Transparent"></winForms:PictureBox>
</wfi:WindowsFormsHost>-->
<!--<Image gif:ImageBehavior.AnimatedSource="/Images/touch1.gif" Width="600" Height="600" Panel.ZIndex="2"/>-->
<!--<gifLib:GifImage x:Name="GgifImage1" Width="600" Height="600" Panel.ZIndex="2" Source="/PCScreenSavers;component/Images/touch1.gif" Visibility="Hidden"/>-->
</Canvas>
<!--<Image x:Name="Img" Source="/PCScreenSavers;component/Images/touch.png" Width="300" Height="300" Canvas.Right="100" Canvas.Bottom="100"/>-->
<!--<gifLib:GifImage x:Name="GgifImage1" Source="/PCScreenSavers;component/Images/touch1.gif" />-->
</Canvas>
<!--<Canvas x:Name="_canvas" Width="1500" Height="680" HorizontalAlignment="Left" VerticalAlignment="Top">-->
</Grid>
<StackPanel Name="stackPanel1" HorizontalAlignment="Left"/>
<StackPanel Name="stackPanelAD" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0 0 0 0"/>
<Grid x:Name="subtitleTop" Height="120" VerticalAlignment="Top" Margin="0" Visibility="Hidden" >
<Grid.Background>
<SolidColorBrush Opacity="0" Color="Black"></SolidColorBrush>
</Grid.Background>
<mycon:MarqueeControl x:Name="scrollingTextControlTop" Foreground ="Transparent" Opacity="1" VerticalAlignment="Top"></mycon:MarqueeControl>
</Grid>
<Grid x:Name="subtitleBottom" Height="120" VerticalAlignment="Bottom" Margin="0" Visibility="Hidden">
<Grid.Background>
<SolidColorBrush Opacity="0" Color="Black"></SolidColorBrush>
</Grid.Background>
<mycon:MarqueeControl x:Name="scrollingTextControlBottom" Foreground ="Transparent" Opacity="1" VerticalAlignment="Bottom"></mycon:MarqueeControl>
</Grid>
</Grid>
</Grid>
</Window>