DeleteSafetySettingsDialog.xaml 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <UserControl x:Class="PDF_Office.Views.Dialog.ToolsDialogs.SaftyDialogs.DeleteSafetySettingsDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. prism:ViewModelLocator.AutoWireViewModel="True"
  8. d:DesignHeight="168"
  9. d:DesignWidth="340"
  10. mc:Ignorable="d">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Name="HeadRow" Height="88" />
  14. <RowDefinition Height="80"/>
  15. </Grid.RowDefinitions>
  16. <TextBlock Grid.Row="0" Text="确认删除本文档的安全性设置?" FontSize="20" TextWrapping="Wrap" Width="220" Height="50" Block.TextAlignment="Center"/>
  17. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
  18. <Button Background="WhiteSmoke" Width="100" Height="25" Margin="40,0,20,0" Command="{Binding DelegateCheckPasswordCommand}">
  19. <Border>
  20. <TextBlock Text="确定" ></TextBlock>
  21. </Border>
  22. </Button>
  23. <Button Background="WhiteSmoke" Width="100" Height="25" Margin="0,0,40,0" Command="{Binding DelegateCancelCommand}">
  24. <Border>
  25. <TextBlock Text="取消" ></TextBlock>
  26. </Border>
  27. </Button>
  28. </StackPanel>
  29. </Grid>
  30. </UserControl>