1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/WpfApp/ConfirmationDialog.xaml
2022-02-06 13:24:59 -05:00

24 lines
1.3 KiB
XML

<mah:MetroWindow x:Class="MSFSPopoutPanelManager.WpfApp.ConfirmationDialog"
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"
xmlns:mah="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
xmlns:local="clr-namespace:MSFSPopoutPanelManager.WpfApp"
mc:Ignorable="d"
Title="Confirmation"
ResizeMode="NoResize"
Height="180"
SizeToContent="Width">
<Grid>
<DockPanel Width="Auto">
<WrapPanel DockPanel.Dock="Top" HorizontalAlignment="Left" Margin="30,30,30,0" Height="45" Width="Auto">
<TextBlock Name="txtMessage" Text="Message" HorizontalAlignment="Left" TextWrapping="Wrap" Width="Auto"/>
</WrapPanel>
<WrapPanel DockPanel.Dock="Bottom" HorizontalAlignment="Right" Margin="0,30,30,0" Width="Auto">
<Button Name="btnDialogOk" Click="btnDialogYes_Click" Width="80" Margin="0,0,20,0">_Yes</Button>
<Button IsDefault="True" IsCancel="True" Width="80">_No</Button>
</WrapPanel>
</DockPanel>
</Grid>
</mah:MetroWindow>