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.
33 lines
1.9 KiB
33 lines
1.9 KiB
<Window x:Class="Container.ChildWindows.WindowAppChoose"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:gifLib="clr-namespace:GifImageLib;assembly=GifImageLib"
|
|
Title="WindowAppChoose" Width="1920" Height="1080" Topmost="True" WindowStyle="None" Left="0" Top="0" AllowsTransparency="True" Background="Transparent" Loaded="Win_Load" >
|
|
<Canvas Width="1920" Height="1080" >
|
|
<Canvas.Background>
|
|
<SolidColorBrush Opacity="0.8" Color="Black"></SolidColorBrush>
|
|
</Canvas.Background>
|
|
<Canvas x:Name="MainCanvas" Background="Transparent" Height="1030" Width="260" Canvas.Right="50" Canvas.Bottom="50">
|
|
<!--<Border x:Name="Bborder" Width="240" Height="1080">
|
|
</Border>-->
|
|
|
|
<!--<gifLib:GifImage x:Name="Ggif" MouseLeftButtonUp="ButtonBack_Click" Source="../image/BG.gif" Canvas.Top="-14" Canvas.Left="-14" Height="110" Width="110" />-->
|
|
|
|
<!--<Image Height="78" Source="../Image/BtnBack.png" MouseLeftButtonUp="ButtonBack_Clic000000000000000000000000k"/>-->
|
|
<StackPanel Name="AppButton" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="260" Height="900"/>
|
|
<!--<Canvas x:Name="AppButton" Background="Transparent" VerticalAlignment="Bottom">
|
|
</Canvas>-->
|
|
<Image x:Name="Img" Source="../image/BGButtonNew.png" Height="130" Width="130" Canvas.Right="0" Canvas.Bottom="0" MouseLeftButtonUp="ButtonBack_Click">
|
|
<Image.RenderTransform>
|
|
<TransformGroup>
|
|
<TranslateTransform/>
|
|
<ScaleTransform/>
|
|
<RotateTransform Angle="45" CenterX="65" CenterY="65"/>
|
|
</TransformGroup>
|
|
</Image.RenderTransform>
|
|
</Image>
|
|
|
|
</Canvas>
|
|
</Canvas>
|
|
|
|
</Window>
|
|
|