12345678910111213141516171819202122232425262728293031 |
- <UserControl x:Class="PDF_Office.Views.Dialog.ToolsDialogs.SaftyDialogs.DeleteSafetySettingsDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- prism:ViewModelLocator.AutoWireViewModel="True"
- d:DesignHeight="168"
- d:DesignWidth="340"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Name="HeadRow" Height="88" />
- <RowDefinition Height="80"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Text="确认删除本文档的安全性设置?" FontSize="20" TextWrapping="Wrap" Width="220" Height="50" Block.TextAlignment="Center"/>
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
- <Button Background="WhiteSmoke" Width="100" Height="25" Margin="40,0,20,0" Command="{Binding DelegateCheckPasswordCommand}">
- <Border>
- <TextBlock Text="确定" ></TextBlock>
- </Border>
- </Button>
- <Button Background="WhiteSmoke" Width="100" Height="25" Margin="0,0,40,0" Command="{Binding DelegateCancelCommand}">
- <Border>
- <TextBlock Text="取消" ></TextBlock>
- </Border>
- </Button>
- </StackPanel>
- </Grid>
- </UserControl>
|