24 lines
1.3 KiB
Plaintext
24 lines
1.3 KiB
Plaintext
|
<UserControl x:Class="DM_Weight.Views.Dialog.ShowMessageDialog"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:local="clr-namespace:DM_Weight.Views.Dialog"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="auto"/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition Height="auto"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<TextBlock Padding="5" d:Text="温馨提示" FontSize="14"
|
||
|
Text="{Binding Title}" Style="{StaticResource MaterialDesignCaptionTextBlock}"/>
|
||
|
<TextBlock Grid.Row="1" Padding="15,0" HorizontalAlignment="Center" VerticalAlignment="Center"
|
||
|
Text="{Binding Msg}" FontSize="18" Margin="5" FontWeight="Bold"/>
|
||
|
<StackPanel Grid.Row="2" Margin="10" HorizontalAlignment="Center" Orientation="Horizontal">
|
||
|
<Button Command="{Binding SaveCommand}" Content="确认"/>
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
</UserControl>
|