mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
24 lines
1.3 KiB
XML
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>
|