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.

24 lines
935 B

  1. <Window x:Class="BPA.UIControl.MessageBoxWindow"
  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. MinWidth="270"
  7. MinHeight="150"
  8. Margin="10"
  9. HorizontalContentAlignment="Center"
  10. VerticalContentAlignment="Center"
  11. AllowsTransparency="True"
  12. Background="Transparent"
  13. LostKeyboardFocus="Window_LostKeyboardFocus"
  14. PreviewLostKeyboardFocus="Window_PreviewLostKeyboardFocus"
  15. ShowInTaskbar="False"
  16. WindowStartupLocation="CenterOwner"
  17. WindowStyle="None"
  18. mc:Ignorable="d">
  19. <Border x:Name="messageBoxPanel"
  20. HorizontalAlignment="Center"
  21. VerticalAlignment="Center" />
  22. </Window>