123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <UserControl x:Class="Compdfkit_Tools.Measure.Property.StraightnessProperty"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Compdfkit_Tools.Measure.Property"
- xmlns:cpdfcommon="clr-namespace:Compdfkit_Tools.Common"
- xmlns:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl"
- mc:Ignorable="d"
- Loaded="UserControl_Loaded"
- Unloaded="UserControl_Unloaded"
- >
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="../../Asset/Styles/ComboBoxStyle.xaml"></ResourceDictionary>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <ScrollViewer VerticalScrollBarVisibility="Auto">
- <Grid Background="#FAFCFF">
- <StackPanel Orientation="Vertical">
- <Border BorderThickness="1" BorderBrush="#1A000000">
- <Grid Height="40" Background="White" >
- <TextBlock x:Name="TitleTextBlock" Text="Appearance" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="16" FontWeight="Bold" FontFamily="Segoe UI"></TextBlock>
- </Grid>
- </Border>
- <StackPanel Height="68" Margin="5">
- <TextBlock Text="Line Color" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"/>
- <cpdfcommon:ColorPickerControl Margin="0,8,0,0" x:Name="BorderColorPickerControl" Brush="Red" TransparentBtnProperty ="Collapsed"
- ColorChanged="BorderColorPickerControl_ColorChanged"/>
- </StackPanel>
- <StackPanel Height="68" Margin="5">
- <TextBlock Text="Opacity" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"/>
- <cpdfcommon:CPDFOpacityControl Margin="0,8,0,0" x:Name="CPDFOpacityControl" OpacityChanged="CPDFOpacityControl_OpacityChanged">
- </cpdfcommon:CPDFOpacityControl>
- </StackPanel>
- <StackPanel Height="68" Margin="5">
- <TextBlock Text="Line Width" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"></TextBlock>
- <cpdfcommon:CPDFThicknessControl Margin="0,8,0,0" x:Name="CPDFThicknessControl"
- ThicknessChanged="CPDFThicknessControl_ThicknessChanged">
- </cpdfcommon:CPDFThicknessControl>
- </StackPanel>
- <StackPanel x:Name="LineStyleStackPanel" Height="90" Margin="5">
- <TextBlock Text="Line and Border Style" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"/>
- <cpdfcommon:CPDFLineStyleControl Margin="0,8,0,0" x:Name="CPDFLineStyleControl"
- LineStyleChanged="CPDFLineStyleControl_LineStyleChanged">
- </cpdfcommon:CPDFLineStyleControl>
- </StackPanel>
- <StackPanel x:Name="ArrowStackPanel" Visibility="Visible" Height="75" Margin="5">
- <TextBlock Text="Start and End" Margin="0,0,0,10" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"/>
- <cpdfcommon:CPDFArrowControl x:Name="CPDFArrowControl" ArrowChanged="CPDFArrowControl_ArrowChanged">
- </cpdfcommon:CPDFArrowControl>
- </StackPanel>
- <StackPanel x:Name="FontColorStackPanel" Height="75" Margin="5">
- <TextBlock Text="Font Color" FontWeight="SemiBold" FontSize="14" LineHeight="16" FontFamily="Segoe UI"/>
- <cpdfcommon:ColorPickerControl Margin="0,8,0,0" x:Name="FontColorPickerControl" Brush="Transparent" TransparentBtnProperty ="Collapsed"
- ColorChanged="FontColorPickerControl_ColorChanged"></cpdfcommon:ColorPickerControl>
- </StackPanel>
- <StackPanel Margin="5">
- <TextBlock Margin="0,20,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Text="Text" FontSize="14" FontFamily="Segoe UI" FontWeight="Bold" />
- <ComboBox x:Name="FontCombox" Margin="0,8,0,0" Style="{StaticResource ComboBoxStyle1}" SelectedIndex="0" SelectionChanged="FontCombox_SelectionChanged">
- <ComboBoxItem Content="Arial"/>
- <ComboBoxItem Content="Courier New"/>
- <ComboBoxItem Content="Times New Roman"/>
- </ComboBox>
- <StackPanel Orientation="Horizontal" >
- <ComboBox x:Name="FontStyleCombox" Margin="0,8,0,0" Width="148" Style="{StaticResource ComboBoxStyle1}" SelectedIndex="0" SelectionChanged="FontStyleCombox_SelectionChanged">
- <ComboBoxItem Content="Regular"/>
- <ComboBoxItem Content="Bold"/>
- <ComboBoxItem Content="Italic"/>
- <ComboBoxItem Content="Bold Italic"/>
- </ComboBox>
- <Grid Grid.Row="1" Grid.Column="1" Margin="8,8,0,0">
- <ComboBox Name="FontSizeComboBox" Width="72" Height="28" BorderThickness="1" MaxDropDownHeight="200" Foreground="#43474D" FontSize="14"
- SelectionChanged="FontSizeComboBox_SelectionChanged" Style="{StaticResource ComboBoxStyle1}"/>
- </Grid>
- </StackPanel>
- </StackPanel>
- <StackPanel Height="160" Margin="5">
- <TextBlock Text="Note"></TextBlock>
- <TextBox Height="100" x:Name="NoteTextBox" TextChanged="NoteTextBox_TextChanged" TextWrapping="Wrap" AcceptsReturn="True"></TextBox>
- </StackPanel>
- </StackPanel>
- </Grid>
- </ScrollViewer>
- </UserControl>
|