123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <UserControl
- x:Class="PDF_Master.Views.PropertyPanel.ViewModular.PageContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:Convert="clr-namespace:PDF_Master.DataConvert"
- xmlns:DataConvert="clr-namespace:PDF_Master.DataConvert"
- xmlns:ViewModular="clr-namespace:PDF_Master.ViewModels.PropertyPanel.ViewModular"
- xmlns:customControl="clr-namespace:PDF_Master.CustomControl"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
- xmlns:local="clr-namespace:PDF_Master.Views.PropertyPanel.ViewModular"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DataContext="{d:DesignInstance Type=ViewModular:PageContentViewModel}"
- d:DesignHeight="32"
- d:DesignWidth="332"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="Transparent"
- mc:Ignorable="d">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="pack://application:,,,/Styles/ButtonStyle.xaml" />
- </ResourceDictionary.MergedDictionaries>
- <Convert:ObjectConvert x:Key="ObjectConvert" />
- <PathGeometry x:Key="Ic_FirstPageButtonPath" Figures="M16.4056 7.40441L11.8105 11.9995L16.4056 16.5945L15.3449 17.6552L10.2196 12.5298C9.92666 12.2369 9.92666 11.762 10.2196 11.4691L15.3449 6.34375L16.4056 7.40441ZM7.25 6.5V17.5H8.75V6.5H7.25Z" />
- <PathGeometry x:Key="Ic_PrePageButtonPath" Figures="M10.0607 12.1L14.6303 7.53039L13.5696 6.46973L8.46967 11.5697C8.17678 11.8626 8.17678 12.3374 8.46967 12.6303L13.5696 17.7303L14.6303 16.6696L10.0607 12.1Z" />
- <PathGeometry x:Key="Ic_NextPageButtonPath" Figures="M13.9393 12.1L9.36972 7.53039L10.4304 6.46973L15.5303 11.5697C15.8232 11.8626 15.8232 12.3374 15.5303 12.6303L10.4304 17.7303L9.36972 16.6696L13.9393 12.1Z" />
- <PathGeometry x:Key="Ic_LastPageButtonPath" Figures="M7.24968 7.40441L11.8447 11.9995L7.24968 16.5945L8.31034 17.6552L13.4357 12.5298C13.7286 12.2369 13.7286 11.762 13.4357 11.4691L8.31034 6.34375L7.24968 7.40441ZM16.4053 6.5V17.5H14.9053V6.5H16.4053Z" />
- </ResourceDictionary>
- </UserControl.Resources>
- <Border
- Background="{StaticResource color.sys.layout.anti}"
- CornerRadius="4"
- Effect="{StaticResource shadow.neutral.m}">
- <StackPanel Name="ParentPanel" Orientation="Horizontal">
- <StackPanel
- MinWidth="219"
- Margin="16,0,16,0"
- Orientation="Horizontal">
- <Border
- Width="24"
- Height="24"
- Margin="0,0,8,0"
- BorderBrush="#DFE1E5"
- BorderThickness="1"
- CornerRadius="4">
- <customControl:PathButton
- x:Name="BtnFirstPage"
- Command="{Binding FirstPageCommand}"
- Icon="{StaticResource Ic_FirstPageButtonPath}"
- IconFill="#616469"
- IconMouseOver="{StaticResource Ic_FirstPageButtonPath}"
- IconMouseOverFill="#616469"
- IconPress="{StaticResource Ic_FirstPageButtonPath}"
- IconPressFill="#616469" />
- </Border>
- <Border
- Width="24"
- Height="24"
- Margin="0,0,8,0"
- BorderBrush="#DFE1E5"
- BorderThickness="1"
- CornerRadius="4">
- <customControl:PathButton
- x:Name="BtnPrePage"
- Command="{Binding PrePageCommand}"
- Icon="{StaticResource Ic_PrePageButtonPath}"
- IconFill="#616469"
- IconMouseOver="{StaticResource Ic_PrePageButtonPath}"
- IconMouseOverFill="#616469"
- IconPress="{StaticResource Ic_PrePageButtonPath}"
- IconPressFill="#616469" />
- </Border>
- <Border
- Width="57"
- Height="24"
- BorderBrush="#DFE1E5"
- BorderThickness="1"
- CornerRadius="4">
- <TextBox
- Width="54"
- VerticalAlignment="Center"
- Background="Transparent"
- BorderBrush="Transparent"
- BorderThickness="0"
- Foreground="#252629"
- InputMethod.IsInputMethodEnabled="False"
- Text="{Binding CurrentPage}"
- TextAlignment="Left">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="KeyDown">
- <i:InvokeCommandAction Command="{Binding PageTextKeyDownCommand}" PassEventArgsToCommand="True" />
- </i:EventTrigger>
- <i:EventTrigger EventName="PreviewKeyDown">
- <i:InvokeCommandAction Command="{Binding PageTextPreviewKeyDownCommand}" PassEventArgsToCommand="True" />
- </i:EventTrigger>
- <i:EventTrigger EventName="LostFocus">
- <i:InvokeCommandAction Command="{Binding PageTextFocusableChangedCommand}" PassEventArgsToCommand="True" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </TextBox>
- </Border>
- <TextBlock
- x:Name="TxtPageCount"
- Height="32"
- MinWidth="34"
- Margin="8,0,0,0"
- Padding="0,5.5,0,0"
- FontFamily="Segoe UI"
- FontSize="14"
- Foreground="#252629"
- Text="{Binding PageCount, StringFormat=/ {0}}"
- TextAlignment="Left" />
- <Border
- Width="24"
- Height="24"
- Margin="0,0,8,0"
- BorderBrush="#DFE1E5"
- BorderThickness="1"
- CornerRadius="4">
- <customControl:PathButton
- x:Name="BtnNextPage"
- Command="{Binding NextPageCommand}"
- Icon="{StaticResource Ic_NextPageButtonPath}"
- IconFill="#616469"
- IconMouseOver="{StaticResource Ic_NextPageButtonPath}"
- IconMouseOverFill="#616469"
- IconPress="{StaticResource Ic_NextPageButtonPath}"
- IconPressFill="#616469" />
- </Border>
- <Border
- Width="24"
- Height="24"
- Margin="0,0,8,0"
- BorderBrush="#DFE1E5"
- BorderThickness="1"
- CornerRadius="4">
- <customControl:PathButton
- x:Name="BtnLastPage"
- Command="{Binding LastPageCommand}"
- Icon="{StaticResource Ic_LastPageButtonPath}"
- IconFill="#616469"
- IconMouseOver="{StaticResource Ic_LastPageButtonPath}"
- IconMouseOverFill="#616469"
- IconPress="{StaticResource Ic_LastPageButtonPath}"
- IconPressFill="#616469" />
- </Border>
- </StackPanel>
- <Border
- Width="70"
- Height="24"
- Margin="0,0,11,0"
- BorderBrush="#E2E3E6"
- BorderThickness="0">
- <Grid>
- <ComboBox
- Name="ZoomBox"
- Background="Transparent"
- BorderBrush="Transparent"
- BorderThickness="0"
- MaxDropDownHeight="510"
- SelectedIndex="{Binding SelectedIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
- <ComboBoxItem x:Name="ActualSize" Style="{StaticResource ZoomComboxItemStyle}">
- <StackPanel Orientation="Horizontal">
- <Border x:Name="ActualSizeBorder" Margin="7,0,12,0">
- <!--<Path Fill="Black" VerticalAlignment="Center" HorizontalAlignment="Center" Data="M10.807106,0.0999999046 L15.0999992,5.39289312 L15.0999992,15.8999991 L0.899999857,15.8999991 L0.899999857,0.0999999046 L10.807106,0.0999999046 Z M10.3929999,1.0999999 L1.89999986,1.0999999 L1.89999986,14.8989999 L14.0989999,14.8989999 L14.0989999,5.8059999 L10.3929999,1.0999999 Z M8,10.53125 C8.15885417,10.53125 8.29361979,10.5833333 8.40429688,10.6875 C8.51497396,10.7916667 8.5703125,10.9166667 8.5703125,11.0625 C8.5703125,11.2057292 8.51497396,11.328776 8.40429688,11.4316406 C8.29361979,11.5345052 8.15885417,11.5859375 8,11.5859375 C7.84375,11.5859375 7.7109375,11.5345052 7.6015625,11.4316406 C7.4921875,11.328776 7.4375,11.2057292 7.4375,11.0625 C7.4375,10.9166667 7.4921875,10.7916667 7.6015625,10.6875 C7.7109375,10.5833333 7.84375,10.53125 8,10.53125 Z M6.21875,5.7734375 L6.21875,11.5 L5.3125,11.5 L5.3125,6.8828125 C5.1484375,7 4.97200521,7.09960938 4.78320312,7.18164062 C4.59440104,7.26367188 4.37890625,7.3359375 4.13671875,7.3984375 L4.13671875,7.3984375 L4.13671875,6.625 C4.28776042,6.57552083 4.43359375,6.5234375 4.57421875,6.46875 C4.71484375,6.4140625 4.85351562,6.35286458 4.99023438,6.28515625 C5.12695312,6.21744792 5.26497396,6.14192708 5.40429688,6.05859375 C5.54361979,5.97526042 5.6875,5.88020833 5.8359375,5.7734375 L5.8359375,5.7734375 L6.21875,5.7734375 Z M11.3671875,5.7734375 L11.3671875,11.5 L10.4609375,11.5 L10.4609375,6.8828125 C10.296875,7 10.1204427,7.09960938 9.93164062,7.18164062 C9.74283854,7.26367188 9.52734375,7.3359375 9.28515625,7.3984375 L9.28515625,7.3984375 L9.28515625,6.625 C9.43619792,6.57552083 9.58203125,6.5234375 9.72265625,6.46875 C9.86328125,6.4140625 10.0019531,6.35286458 10.1386719,6.28515625 C10.2753906,6.21744792 10.4134115,6.14192708 10.5527344,6.05859375 C10.6920573,5.97526042 10.8359375,5.88020833 10.984375,5.7734375 L10.984375,5.7734375 L11.3671875,5.7734375 Z M8,7.44140625 C8.15885417,7.44140625 8.29361979,7.49348958 8.40429688,7.59765625 C8.51497396,7.70182292 8.5703125,7.82682292 8.5703125,7.97265625 C8.5703125,8.11588542 8.51497396,8.23893229 8.40429688,8.34179688 C8.29361979,8.44466146 8.15885417,8.49609375 8,8.49609375 C7.84375,8.49609375 7.7109375,8.44466146 7.6015625,8.34179688 C7.4921875,8.23893229 7.4375,8.11588542 7.4375,7.97265625 C7.4375,7.82682292 7.4921875,7.70182292 7.6015625,7.59765625 C7.7109375,7.49348958 7.84375,7.44140625 8,7.44140625 Z" />-->
- </Border>
- <TextBlock
- x:Name="ActualSizeText"
- VerticalAlignment="Center"
- Text="Actual Size" />
- </StackPanel>
- </ComboBoxItem>
- <ComboBoxItem x:Name="FitWidth" Style="{StaticResource ZoomComboxItemStyle}">
- <StackPanel Orientation="Horizontal ">
- <Border Name="FitWidthBorder" Margin="7,0,12,0">
- <!--<Image Width="16" Height="16" Source="../Resources/Image/bottombar/fitwidth.png" />-->
- </Border>
- <TextBlock x:Name="FitWidthText" Text="Fit Width" />
- </StackPanel>
- </ComboBoxItem>
- <ComboBoxItem x:Name="FitHeight" Style="{StaticResource ZoomComboxItemStyle}">
- <StackPanel Orientation="Horizontal">
- <Border Name="FitHeightBorder" Margin="7,0,12,0">
- <!--<Image Width="16" Height="16" Source="../Resources/Image/bottombar/adaptationHeight.png" />-->
- </Border>
- <TextBlock x:Name="FitHeightText" Text="Fit Height" />
- </StackPanel>
- </ComboBoxItem>
- <Separator
- Height="1"
- BorderBrush="#33000000"
- BorderThickness="1"
- Style="{StaticResource {x:Static ToolBar.SeparatorStyleKey}}" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="10%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="10" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="25%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="25" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="50%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="50" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="100%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="100" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="150%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="150" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="200%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="200" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="300%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="300" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="400%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="400" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="500%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="500" />
- <ComboBoxItem
- Padding="30,0,0,0"
- Content="1000%"
- Style="{StaticResource ZoomComboxItemStyle}"
- Tag="1000" />
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="SelectionChanged">
- <i:InvokeCommandAction Command="{Binding SelectionChangedCommand}" PassEventArgsToCommand="True" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </ComboBox>
- <TextBox
- Name="TxtZoom"
- Height="20"
- Margin="2,0,25,0"
- VerticalAlignment="Center"
- Background="White"
- BorderThickness="0"
- FontFamily="Segoe UI"
- FontSize="14"
- IsReadOnly="True"
- Text="{Binding CurrentZoom, StringFormat={}{0}%}"
- TextAlignment="Right" />
- </Grid>
- </Border>
- </StackPanel>
- </Border>
- <!--<i:Interaction.Triggers>
- <i:EventTrigger EventName="Loaded">
- <i:InvokeCommandAction Command="{Binding LoadedCommand}" PassEventArgsToCommand="True">
- <i:InvokeCommandAction.CommandParameter>
- <MultiBinding Converter="{StaticResource ResourceKey=ObjectConvert}" Mode="TwoWay">
- <MultiBinding.Bindings>
- <Binding ElementName="BtnFirstPage" />
- <Binding ElementName="BtnPrePage" />
- <Binding ElementName="BtnNextPage" />
- <Binding ElementName="BtnLastPage" />
- </MultiBinding.Bindings>
- </MultiBinding>
- </i:InvokeCommandAction.CommandParameter>
- </i:InvokeCommandAction>
- </i:EventTrigger>
- </i:Interaction.Triggers>-->
- </UserControl>
|