123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <UserControl
- x:Class="PDF_Office.Views.Dialog.Redaction.PageMarkDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:cus="clr-namespace:PDF_Office.CustomControl"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.Dialog.Redaction"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="432"
- Height="296"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="{StaticResource color.sys.layout.anti}"
- mc:Ignorable="d">
- <cus:DialogContent Header="Mark Page Range">
- <StackPanel Margin="16,0">
- <RadioButton
- Height="22"
- VerticalContentAlignment="Center"
- Content="Mark current page"
- IsChecked="True" />
- <RadioButton
- Height="22"
- Margin="0,8"
- VerticalContentAlignment="Center"
- Content="Mark all page" />
- <RadioButton
- Height="22"
- VerticalContentAlignment="Center"
- Content="Mark odd page" />
- <RadioButton
- Height="22"
- Margin="0,8"
- VerticalContentAlignment="Center"
- Content="Mark even page" />
- <RadioButton
- Name="RbtnCustomPage"
- Height="22"
- VerticalContentAlignment="Center"
- Content="Mark specific page range" />
- <StackPanel
- Margin="0,8"
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <cus:TextBoxEx
- Width="228"
- Height="32"
- CornerRadius="4"
- IsEnabled="{Binding ElementName=RbtnCustomPage, Path=IsChecked}"
- PlaceholderText="e.g. 1,3-5,10" />
- <TextBlock
- Margin="8,0,0,0"
- VerticalAlignment="Center"
- Text="/" />
- </StackPanel>
- </StackPanel>
- </cus:DialogContent>
- </UserControl>
|