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.

17 lines
683 B

  1. <Window x:Class="BPA.UIControl.MessageWindow"
  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. VerticalAlignment="Top"
  7. AllowsTransparency="True"
  8. Background="Transparent"
  9. ShowInTaskbar="False"
  10. Topmost="True"
  11. WindowStartupLocation="CenterOwner"
  12. WindowState="Maximized"
  13. WindowStyle="None"
  14. mc:Ignorable="d">
  15. <StackPanel x:Name="messageStackPanel" Margin="10" />
  16. </Window>