MainWindow.xaml 890 B

123456789101112131415161718
  1. <Window x:Class="PushApp.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d"
  7. WindowStyle="None"
  8. ResizeMode="NoResize"
  9. Title="MainWindow" Background="Black" Height="120" Width="120" Opacity="0.9" AllowsTransparency="True" ShowInTaskbar="False">
  10. <Grid>
  11. <Border BorderBrush="Gray" BorderThickness="1">
  12. <Grid>
  13. <Image x:Name="PreviewImage"/>
  14. <Image x:Name="TransferIndicator" Margin="8" Source="Transfer.png" VerticalAlignment="Center" HorizontalAlignment="Center" Opacity="0.9"/>
  15. </Grid>
  16. </Border>
  17. </Grid>
  18. </Window>