<UserControl x:Class="PDF_Master.Views.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageBatchProcessingDialog"
             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:prism="http://prismlibrary.com/"             
             prism:ViewModelLocator.AutoWireViewModel="True"
             d:DesignHeight="600"
             d:DesignWidth="1024"
             MinWidth="1024"
             MinHeight="600"
             mc:Ignorable="d">
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="../../../../Styles/RadioButtonStyle.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="206*"/>
            <ColumnDefinition Width="818*"/>
        </Grid.ColumnDefinitions>
        <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Height="600" Width="206">
            <RadioButton x:Name="ShiftingBtn" Style="{StaticResource BatchButton}" Tag="0"  Width="190" Height="32" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=ShiftingBtn,Path=Tag}" Margin="0,8,0,0">
                <StackPanel Orientation="Horizontal" >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Convert PDF" FontSize="14" Width="150" Height="22" FontFamily="Segoe UI" ></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="CompressBtn" Tag="1" Width="190" Height="32" Style="{StaticResource BatchButton}"  Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=CompressBtn,Path=Tag}" Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Compress" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="SecurityBtn" Tag="2" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=SecurityBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Security" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton >
            <RadioButton x:Name="WatermarkBtn" Tag="3" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=WatermarkBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Watermark" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="BackgroundBtn" Tag="4" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=BackgroundBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Background" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="HeaderFooterBtn" Tag="5" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=HeaderFooterBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Header &amp; Footer" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="BatesBtn" Tag="6" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=BatesBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Bates Number" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
            <RadioButton x:Name="RemoveSecurityBtn" Tag="7" Width="190" Height="32" Style="{StaticResource BatchButton}" Command="{Binding DelegateChangeBatchProcessingCommand}" CommandParameter="{Binding ElementName=RemoveSecurityBtn,Path=Tag}"  Margin="0,16,0,0">
                <StackPanel Orientation="Horizontal"  >
                    <Label Background="Black" Width="16" Height="20" Margin="0,0,10,0"></Label>
                    <TextBlock Text="Batch Remove" FontSize="14" Width="150" Height="22"></TextBlock>
                </StackPanel>
            </RadioButton>
        </StackPanel>
        <ContentControl x:Name="PrintMod" prism:RegionManager.RegionName="{Binding BatchProcessingRegionName}"   Visibility="{Binding BatchProcessingVisible}" Grid.Column="1" />
    </Grid>
</UserControl>