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.

20 lines
840 B

  1. <Window x:Class="BPA.UIControl.NotificationWindow"
  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. HorizontalAlignment="Right"
  7. VerticalAlignment="Bottom"
  8. AllowsTransparency="True"
  9. Background="Transparent"
  10. ShowInTaskbar="False"
  11. Topmost="True"
  12. WindowStartupLocation="CenterOwner"
  13. WindowState="Maximized"
  14. WindowStyle="None"
  15. mc:Ignorable="d">
  16. <StackPanel x:Name="notificationStackPanel"
  17. Margin="0 0 5 50"
  18. HorizontalAlignment="Right"
  19. VerticalAlignment="Bottom" />
  20. </Window>