123456789101112131415161718 |
- <Window x:Class="PushApp.MainWindow"
- 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"
- mc:Ignorable="d"
- WindowStyle="None"
- ResizeMode="NoResize"
- Title="MainWindow" Background="Black" Height="120" Width="120" Opacity="0.9" AllowsTransparency="True" ShowInTaskbar="False">
- <Grid>
- <Border BorderBrush="Gray" BorderThickness="1">
- <Grid>
- <Image x:Name="PreviewImage"/>
- <Image x:Name="TransferIndicator" Margin="8" Source="Transfer.png" VerticalAlignment="Center" HorizontalAlignment="Center" Opacity="0.9"/>
- </Grid>
- </Border>
- </Grid>
- </Window>
|