PDFPathEditControl.xaml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <UserControl x:Class="ComPDFKit.Controls.Edit.PDFPathEditControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ComPDFKit.Controls.Edit"
  7. xmlns:common="clr-namespace:ComPDFKit.Controls.Common"
  8. mc:Ignorable="d"
  9. d:DesignHeight="720" d:DesignWidth="280" MinWidth="260" Padding="10"
  10. Background="#FAFCFF">
  11. <UserControl.Resources>
  12. <ResourceDictionary>
  13. <ResourceDictionary.MergedDictionaries>
  14. <ResourceDictionary Source="../../../Asset/Styles/ButtonStyle.xaml"></ResourceDictionary>
  15. <ResourceDictionary Source="../../../Asset/Styles/SliderStyle.xaml"></ResourceDictionary>
  16. </ResourceDictionary.MergedDictionaries>
  17. <common:PropertyPanelResourceConverter x:Key="PropertyPanelResourceConverter"></common:PropertyPanelResourceConverter>
  18. <common:CommonResourceConverter x:Key="CommonResourceConverter" />
  19. </ResourceDictionary>
  20. </UserControl.Resources>
  21. <ScrollViewer VerticalScrollBarVisibility="Auto">
  22. <StackPanel>
  23. <Border Background="White" Height="36">
  24. <TextBlock FontSize="14" FontWeight="Bold" HorizontalAlignment="Center" Foreground="#42464D" VerticalAlignment="Center" Text="Path属性"></TextBlock>
  25. </Border>
  26. <StackPanel Grid.Row="1">
  27. <TextBlock Margin="0,20,0,0" Foreground="#0E1114" FontSize="14"
  28. Text="边框颜色"></TextBlock>
  29. <common:ColorPickerControl x:Name="StrokeColorUI" Grid.Row="1" Margin="0,20,0,0" TransparentBtnProperty="Collapsed"></common:ColorPickerControl>
  30. <TextBlock Margin="0,20,0,0" Foreground="#0E1114" FontSize="14"
  31. Text="填充颜色"></TextBlock>
  32. <common:ColorPickerControl x:Name="FillColorUI" Grid.Row="1" Margin="0,20,0,0" TransparentBtnProperty="Collapsed"></common:ColorPickerControl>
  33. </StackPanel>
  34. <StackPanel Grid.Row="2">
  35. <local:CPDFImageRotateUI x:Name="RotateUI" FontSize="16"></local:CPDFImageRotateUI>
  36. <Grid Margin="0,10,0,0">
  37. <TextBlock Text="{Binding Converter={StaticResource PropertyPanelResourceConverter},ConverterParameter=Property_Rotation}" FontFamily="Microsoft YaHei" FontSize="14" HorizontalAlignment="Left" VerticalAlignment="Center"></TextBlock>
  38. <TextBox Padding="5,0,5,0" x:Name="RotationTxb" HorizontalAlignment="Right" VerticalContentAlignment="Center" Width="110" Height="32" LostFocus="RotationTxb_LostFocus" PreviewKeyDown="RotationTxb_PreviewKeyDown"></TextBox>
  39. </Grid>
  40. </StackPanel>
  41. <local:CPDFImageFlipUI x:Name="FlipUI" Grid.Row="3" FontSize="16" Margin="0,10,0,0"></local:CPDFImageFlipUI>
  42. <Grid Grid.Row="4" Margin="0,20,0,0">
  43. <Grid.ColumnDefinitions>
  44. <ColumnDefinition Width="*"></ColumnDefinition>
  45. <ColumnDefinition Width="auto"></ColumnDefinition>
  46. </Grid.ColumnDefinitions>
  47. <Grid.RowDefinitions>
  48. <RowDefinition Height="auto"></RowDefinition>
  49. <RowDefinition Height="auto"></RowDefinition>
  50. </Grid.RowDefinitions>
  51. <TextBlock FontSize="14" Foreground="#43474D" Text="{Binding Converter={StaticResource PropertyPanelResourceConverter},ConverterParameter=Property_Opacity}"></TextBlock>
  52. <Slider Style="{StaticResource SliderStyle}" Grid.Row="1" Width="148" Height="28"
  53. Name="PathOpacitySlider"
  54. Value="14"
  55. IsSelectionRangeEnabled="True"
  56. IsMoveToPointEnabled="True"
  57. Margin="2,20,2,0"
  58. Maximum="1"
  59. Minimum="0"
  60. TickFrequency="0.01"
  61. IsSnapToTickEnabled="True"
  62. Thumb.DragCompleted="SliderOpacity_DragCompleted"
  63. Thumb.DragStarted="Slider_DragStarted"
  64. ValueChanged="SliderOpacity_ValueChanged"
  65. Tag="true"
  66. />
  67. <Grid Grid.Row="1" Grid.Column="1" Margin="0,10,0,0">
  68. <ComboBox Name="OpacityComboBox" VerticalContentAlignment="Center" Width="72" Height="28" Foreground="#43474D" FontSize="14"
  69. SelectionChanged="OpacityComboBox_SelectionChanged" BorderBrush="#1E000000">
  70. <ComboBoxItem>25%</ComboBoxItem>
  71. <ComboBoxItem>50%</ComboBoxItem>
  72. <ComboBoxItem>75%</ComboBoxItem>
  73. <ComboBoxItem>100%</ComboBoxItem>
  74. </ComboBox>
  75. <TextBox Name="OpacityTextBox" IsHitTestVisible="False" Width="72" Height="30" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"
  76. IsReadOnly="True" Background="White" Padding="0,0,15,0" FontSize="14">100%</TextBox>
  77. <Path Fill="#43474D" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,5,0" IsHitTestVisible="False">
  78. <Path.Data>
  79. M0.5 0.510248L4.5041 5.5L8.5 0.5L0.5 0.510248Z
  80. </Path.Data>
  81. </Path>
  82. </Grid>
  83. </Grid>
  84. <Grid Margin="0,20,0,0" Visibility="{Binding OnlySingleVisible}">
  85. <Grid.RowDefinitions>
  86. <RowDefinition Height="auto"></RowDefinition>
  87. <RowDefinition Height="auto"></RowDefinition>
  88. </Grid.RowDefinitions>
  89. <TextBlock VerticalAlignment="Center" FontSize="14" Foreground="#43474D" Text="{Binding Converter={StaticResource PropertyPanelResourceConverter},ConverterParameter=Property_Tool}"></TextBlock>
  90. <Border Grid.Row="1" BorderThickness="1" BorderBrush="#E1E3E5" Margin="0,14,0,0" HorizontalAlignment="Left">
  91. <StackPanel Orientation="Horizontal">
  92. <Button Name="PathClipBtn" Grid.Column="1" Width="40" Height="25" BorderThickness="0" Click="PathClipBtn_Click" Background="White" Style="{StaticResource LightButtonStyle}"
  93. ToolTip="{Binding Converter={StaticResource CommonResourceConverter},ConverterParameter=Menu_Crop}">
  94. <Button.Content>
  95. <Path Fill="#43474D">
  96. <Path.Data>
  97. M4.75 15.75V4.25H14.4074L13.9517 4.73826L15.0483 5.76174L15.25 5.54562V15.75H4.75ZM3.25
  98. 16.5V4.25H0V2.75H3.25V0.5H4.75V2.75H16H16.75V3.5V15.75H20V17.25H16.75V19.5H15.25V17.25H4H3.25V16.5ZM17.8483 2.76174L18.5483
  99. 2.01174L17.4517 0.988261L16.7517 1.73826L17.8483 2.76174ZM12.2483 8.76174L13.6483 7.26174L12.5517 6.23826L11.1517 7.73826L12.2483
  100. 8.76174ZM9.44829 11.7617L10.8483 10.2617L9.75171 9.23826L8.35171 10.7383L9.44829 11.7617ZM6.64829 14.7617L8.04829 13.2617L6.95171
  101. 12.2383L5.55171 13.7383L6.64829 14.7617Z
  102. </Path.Data>
  103. </Path>
  104. </Button.Content>
  105. </Button>
  106. </StackPanel>
  107. </Border>
  108. </Grid>
  109. </StackPanel>
  110. </ScrollViewer>
  111. </UserControl>