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.
 
 
 
 

26 lines
1.5 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"
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">
<Rectangle Name="RectBtn" Width="300" Height="300" Panel.ZIndex="2"></Rectangle>
</Canvas>
</Grid>
</Grid>
</Window>