32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
|
|
<ui:ContentDialog x:Class="PMSWPF.Views.Dialogs.ConfirmDialog"
|
||
|
|
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:ikw="http://schemas.inkore.net/lib/ui/wpf"
|
||
|
|
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
|
||
|
|
xmlns:vmd="clr-namespace:PMSWPF.ViewModels.Dialogs"
|
||
|
|
xmlns:vc="clr-namespace:PMSWPF.ValueConverts"
|
||
|
|
xmlns:ex="clr-namespace:PMSWPF.Extensions"
|
||
|
|
xmlns:en="clr-namespace:PMSWPF.Enums"
|
||
|
|
Title="{Binding Title}"
|
||
|
|
CloseButtonText="取消"
|
||
|
|
DefaultButton="Primary"
|
||
|
|
PrimaryButtonText="{Binding PrimaryButtonText}"
|
||
|
|
Background="#fff"
|
||
|
|
d:DataContext="{d:DesignInstance vmd:ConfrimDialogViewModel}"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<ui:ContentDialog.Resources>
|
||
|
|
|
||
|
|
</ui:ContentDialog.Resources>
|
||
|
|
|
||
|
|
<Grid Width="480"
|
||
|
|
Margin="10">
|
||
|
|
<TextBlock Margin="20"
|
||
|
|
FontSize="18"
|
||
|
|
FontWeight="Bold"
|
||
|
|
Text="{Binding Message}">
|
||
|
|
</TextBlock>
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
</ui:ContentDialog>
|