CPDFTileControl.xaml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <UserControl x:Class="ComPDFKit.Controls.Common.CPDFTileControl"
  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.Common"
  7. mc:Ignorable="d"
  8. d:DesignHeight="72" d:DesignWidth="242">
  9. <UserControl.Resources>
  10. <local:CommonResourceConverter x:Key="CommonResourceConverter" />
  11. </UserControl.Resources>
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition></RowDefinition>
  15. <RowDefinition></RowDefinition>
  16. </Grid.RowDefinitions>
  17. <CheckBox x:Name="TileChk" VerticalAlignment="Center" Click="TileChk_Click">
  18. <TextBlock Text="{Binding Converter={StaticResource CommonResourceConverter},ConverterParameter=Chk_Tile}"></TextBlock>
  19. </CheckBox>
  20. <Grid Grid.Row="1" x:Name="TileGd">
  21. <Grid.Style>
  22. <Style TargetType="Grid">
  23. <Style.Triggers>
  24. <DataTrigger Binding="{Binding IsChecked, ElementName=TileChk}" Value="False">
  25. <Setter Property="Opacity" Value="0.5"/>
  26. <Setter Property="IsEnabled" Value="False"></Setter>
  27. </DataTrigger>
  28. </Style.Triggers>
  29. </Style>
  30. </Grid.Style>
  31. <StackPanel Orientation="Horizontal">
  32. <Canvas Width="16" Height="16" Margin="0,0,4,0">
  33. <Path Fill="Black" Data="M1,4H2V12H1V4ZM4.70703,7.5H11.2952L10.0278,6.23223L10.7349,5.52513L13.2097,8L10.7349,10.4749L10.0278,9.76777L11.2952,8.5H4.70703L5.97487,9.76777L5.26777,10.4749L2.79289,8L5.26777,5.52513L5.97487,6.23223L4.70703,7.5ZM15,4H14V12H15V4Z"/>
  34. </Canvas>
  35. <local:NumericUpDownControl x:Name="HorizontalNumericControl" Height="32" Width="90" Margin="0,0,4,0" Minimum="0" Maximum="99" Text="{Binding HorizontalSpacingValue, Mode=TwoWay}" Unit="mm"></local:NumericUpDownControl>
  36. </StackPanel>
  37. <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
  38. <Canvas Width="16" Height="16" Margin="0,0,4,0">
  39. <Path Fill="Black" Data="M12,1V2L4,2V1L12,1ZM8.5,4.70703V11.2952L9.76777,10.0278L10.4749,10.7349L8,13.2097L5.52513,10.7349L6.23223,10.0278L7.5,11.2952L7.5,4.70703L6.23223,5.97487L5.52513,5.26777L8,2.79289L10.4749,5.26777L9.76777,5.97487L8.5,4.70703ZM12,15V14H4V15H12Z"/>
  40. </Canvas>
  41. <local:NumericUpDownControl x:Name="VerticalNumericControl" Height="32" Width="90" Margin="0,0,4,0" Minimum="0" Maximum="99" Text="{Binding VerticalSpacingValue, Mode=TwoWay}" Unit="mm"></local:NumericUpDownControl>
  42. </StackPanel>
  43. </Grid>
  44. </Grid>
  45. </UserControl>