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.
 
 
 
 

30 lines
1.9 KiB

<Window x:Class="IOTContainer.View.ScreenWindowNew"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:IOTContainer.View" xmlns:transc="clr-namespace:Transitionals.Controls;assembly=Transitionals" xmlns:lottie="clr-namespace:LottieSharp;assembly=LottieSharp"
mc:Ignorable="d"
Title="ScreenWindowNew" Height="450" Width="800" Loaded="Window_Loaded" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen" Background="Transparent" Closed="Window_Closed" AllowsTransparency="True" MouseDown="Window_MouseDown" Topmost="true" >
<Grid x:Name="main" Background="Transparent">
<Canvas Name="timeGrid" Width="630" Height="630" Visibility="Visible">
<Rectangle Name="RectDisImage" Width="630" Height="630" />
</Canvas>
<Grid x:Name="gridMain" Visibility="Hidden">
<transc:TransitionElement x:Name="mainp" >
</transc:TransitionElement>
<Canvas x:Name="waiting">
<Canvas.Background>
<ImageBrush ImageSource="/IOTContainer;component/image/bg.png" />
</Canvas.Background>
</Canvas>
<Canvas Name="RectCanvas">
<Canvas Name="RectBtn" Width="300" Height="300">
<!--<Rectangle Name="RectBtn" Width="300" Height="300" Panel.ZIndex="2"></Rectangle>-->
<lottie:LottieAnimationView Name="TouchLottie" Panel.ZIndex="2" AutoPlay="True" Visibility="Visible" Width="300" Height="300"/>
<Image Name="TouchImage" Panel.ZIndex="2" Visibility="Hidden" Width="300" Height="300"/>
</Canvas>
</Canvas>
</Grid>
</Grid>
</Window>