|
@@ -35,6 +35,7 @@
|
|
<Setter Property="Foreground" Value="{StaticResource color.sys.text.neutral.lv2}" />
|
|
<Setter Property="Foreground" Value="{StaticResource color.sys.text.neutral.lv2}" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="FontSize" Value="12" />
|
|
<Setter Property="FontSize" Value="12" />
|
|
|
|
+ <Setter Property="FontWeight" Value="Bold" />
|
|
</Style>
|
|
</Style>
|
|
<Style x:Key="Label2" TargetType="Label">
|
|
<Style x:Key="Label2" TargetType="Label">
|
|
<Setter Property="Foreground" Value="{StaticResource color.sys.text.neutral.lv1}" />
|
|
<Setter Property="Foreground" Value="{StaticResource color.sys.text.neutral.lv1}" />
|
|
@@ -66,7 +67,7 @@
|
|
Width="14"
|
|
Width="14"
|
|
Height="14"
|
|
Height="14"
|
|
HorizontalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
- VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
|
|
|
|
+ VerticalAlignment="Center"
|
|
Background="{TemplateBinding Background}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
@@ -137,94 +138,101 @@
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</TabItem.Header>
|
|
</TabItem.Header>
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
- <StackPanel Margin="16,10,10,0" Background="{StaticResource color.sys.layout.anti}">
|
|
|
|
|
|
+
|
|
|
|
+ <StackPanel Margin="16,10,10,0">
|
|
<Label Content="文档" Style="{StaticResource Label}" />
|
|
<Label Content="文档" Style="{StaticResource Label}" />
|
|
- <StackPanel Margin="0,10,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <CheckBox
|
|
|
|
- Margin="8"
|
|
|
|
- Content="APP启动时打开上次未关闭的文档"
|
|
|
|
- Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
- <CheckBox
|
|
|
|
- Margin="8"
|
|
|
|
- Content="文档打开时恢复上次视图设置"
|
|
|
|
- Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
- <Label
|
|
|
|
- Margin="8"
|
|
|
|
- Content="最近打开中文档最多显示数量:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <StackPanel Margin="8" Orientation="Horizontal">
|
|
|
|
- <cus:NumericUpDown
|
|
|
|
- Width="120"
|
|
|
|
- HorizontalAlignment="Left"
|
|
|
|
- BorderThickness="0"
|
|
|
|
- FontSize="14"
|
|
|
|
- Foreground="{StaticResource color.field.text.act}"
|
|
|
|
- Text="20" />
|
|
|
|
- <TextBlock
|
|
|
|
- Margin="8,0"
|
|
|
|
- VerticalAlignment="Center"
|
|
|
|
- Foreground="{StaticResource color.sys.text.neutral.lv3}"
|
|
|
|
- Text="10 to 50" />
|
|
|
|
- </StackPanel>
|
|
|
|
- <StackPanel Margin="8" Orientation="Horizontal">
|
|
|
|
- <CheckBox Content="APP自动保存文件,频次为每" Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
- <cus:NumericUpDown
|
|
|
|
- Width="120"
|
|
|
|
- Margin="8,0,0,0"
|
|
|
|
- HorizontalAlignment="Left"
|
|
|
|
- BorderThickness="0"
|
|
|
|
- FontSize="14"
|
|
|
|
- Foreground="{StaticResource color.field.text.act}"
|
|
|
|
- Text="10" />
|
|
|
|
- <Label
|
|
|
|
- Margin="8,0,0,0"
|
|
|
|
- Content="min"
|
|
|
|
- Style="{StaticResource Label}" />
|
|
|
|
- <TextBlock
|
|
|
|
- Margin="8,0"
|
|
|
|
- VerticalAlignment="Center"
|
|
|
|
- Foreground="{StaticResource color.sys.text.neutral.lv3}"
|
|
|
|
- Text="5 to 99" />
|
|
|
|
- </StackPanel>
|
|
|
|
- <Grid Margin="8">
|
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
|
- <ColumnDefinition Width="64" />
|
|
|
|
- <ColumnDefinition />
|
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
|
- <Grid.RowDefinitions>
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- </Grid.RowDefinitions>
|
|
|
|
|
|
+ <Border CornerRadius="6" Margin="0,10,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <StackPanel>
|
|
|
|
+ <CheckBox
|
|
|
|
+ Margin="8"
|
|
|
|
+ Content="APP启动时打开上次未关闭的文档"
|
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
+ <CheckBox
|
|
|
|
+ Margin="8"
|
|
|
|
+ Content="文档打开时恢复上次视图设置"
|
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
<Label
|
|
<Label
|
|
- Grid.Row="0"
|
|
|
|
- Grid.Column="0"
|
|
|
|
- Content="关闭文档:"
|
|
|
|
|
|
+ Margin="8"
|
|
|
|
+ Content="最近打开中文档最多显示数量:"
|
|
Style="{StaticResource Label2}" />
|
|
Style="{StaticResource Label2}" />
|
|
|
|
+ <StackPanel Margin="8" Orientation="Horizontal">
|
|
|
|
+ <cus:NumericUpDown
|
|
|
|
+ Width="120"
|
|
|
|
+ HorizontalAlignment="Left"
|
|
|
|
+ BorderThickness="0"
|
|
|
|
+ FontSize="14"
|
|
|
|
+ Foreground="{StaticResource color.field.text.act}"
|
|
|
|
+ Text="20" />
|
|
|
|
+ <TextBlock
|
|
|
|
+ Margin="8,0"
|
|
|
|
+ VerticalAlignment="Center"
|
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv3}"
|
|
|
|
+ Text="10 to 50" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <StackPanel Margin="8" Orientation="Horizontal">
|
|
|
|
+ <CheckBox Content="APP自动保存文件,频次为每" Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
+ <cus:NumericUpDown
|
|
|
|
+ Width="120"
|
|
|
|
+ Margin="8,0,0,0"
|
|
|
|
+ HorizontalAlignment="Left"
|
|
|
|
+ BorderThickness="0"
|
|
|
|
+ FontSize="14"
|
|
|
|
+ Foreground="{StaticResource color.field.text.act}"
|
|
|
|
+ Text="10" />
|
|
|
|
+ <Label
|
|
|
|
+ Margin="8,0,0,0"
|
|
|
|
+ Content="min"
|
|
|
|
+ Style="{StaticResource Label}" />
|
|
|
|
+ <TextBlock
|
|
|
|
+ Margin="8,0"
|
|
|
|
+ VerticalAlignment="Center"
|
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv3}"
|
|
|
|
+ Text="5 to 99" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ <Grid Margin="8">
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
+ <ColumnDefinition Width="64" />
|
|
|
|
+ <ColumnDefinition />
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="0"
|
|
|
|
+ Grid.Column="0"
|
|
|
|
+ Content="关闭文档:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <RadioButton
|
|
|
|
+ Grid.Row="0"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Content="弹出“保存/不保存”提示"
|
|
|
|
+ Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ <RadioButton
|
|
|
|
+ Grid.Row="1"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Margin="0,8"
|
|
|
|
+ Content="无提示,直接保存"
|
|
|
|
+ Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ </Grid>
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+
|
|
|
|
+ <Label Content="打开图片文档" Style="{StaticResource Label}" />
|
|
|
|
+ <Border CornerRadius="6" Margin="0,10,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <StackPanel>
|
|
<RadioButton
|
|
<RadioButton
|
|
- Grid.Row="0"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Content="弹出“保存/不保存”提示"
|
|
|
|
|
|
+ Margin="9,12,0,0"
|
|
|
|
+ Content="自动扫描并识别文本"
|
|
Style="{DynamicResource RadioButtonStyle1}" />
|
|
Style="{DynamicResource RadioButtonStyle1}" />
|
|
<RadioButton
|
|
<RadioButton
|
|
Grid.Row="1"
|
|
Grid.Row="1"
|
|
- Grid.Column="1"
|
|
|
|
- Margin="0,8"
|
|
|
|
- Content="无提示,直接保存"
|
|
|
|
|
|
+ Margin="9,10"
|
|
|
|
+ Content="提示扫描并识别文本"
|
|
Style="{DynamicResource RadioButtonStyle1}" />
|
|
Style="{DynamicResource RadioButtonStyle1}" />
|
|
- </Grid>
|
|
|
|
- </StackPanel>
|
|
|
|
- <Label Content="打开图片文档" Style="{StaticResource Label}" />
|
|
|
|
- <StackPanel Margin="0,10,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <RadioButton
|
|
|
|
- Margin="9,12,0,0"
|
|
|
|
- Content="自动扫描并识别文本"
|
|
|
|
- Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- <RadioButton
|
|
|
|
- Grid.Row="1"
|
|
|
|
- Margin="9,10"
|
|
|
|
- Content="提示扫描并识别文本"
|
|
|
|
- Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- </StackPanel>
|
|
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+
|
|
<WrapPanel>
|
|
<WrapPanel>
|
|
<Label
|
|
<Label
|
|
Margin="1,0"
|
|
Margin="1,0"
|
|
@@ -277,70 +285,76 @@
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
<StackPanel Margin="16,10,10,0" Background="{StaticResource color.sys.layout.anti}">
|
|
<StackPanel Margin="16,10,10,0" Background="{StaticResource color.sys.layout.anti}">
|
|
<Label Content="默认视图和缩放" Style="{StaticResource Label}" />
|
|
<Label Content="默认视图和缩放" Style="{StaticResource Label}" />
|
|
- <Grid Margin="0,5,0,10" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <Grid.RowDefinitions>
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- </Grid.RowDefinitions>
|
|
|
|
- <WrapPanel Margin="0,12,0,0">
|
|
|
|
- <Label Content="页面显示:" Style="{StaticResource Label2}" />
|
|
|
|
- <ComboBox
|
|
|
|
- Width="348"
|
|
|
|
- Height="30"
|
|
|
|
- SelectedIndex="0">
|
|
|
|
- <ComboBoxItem Content="单页" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="单页连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="双页" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="双页连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="书本" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="书本连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- </ComboBox>
|
|
|
|
- </WrapPanel>
|
|
|
|
- <WrapPanel Grid.Row="1" Margin="0,12">
|
|
|
|
- <Label Content="缩放比例:" Style="{StaticResource Label2}" />
|
|
|
|
- <ComboBox
|
|
|
|
- Width="348"
|
|
|
|
- Height="30"
|
|
|
|
- SelectedIndex="0">
|
|
|
|
- <ComboBoxItem Content="适应宽度" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="适应页面" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- <ComboBoxItem Content="实际大小" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
- </ComboBox>
|
|
|
|
- </WrapPanel>
|
|
|
|
- </Grid>
|
|
|
|
|
|
+ <Border CornerRadius="6" Margin="0,5,0,10" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <Grid>
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <WrapPanel Margin="0,12,0,0">
|
|
|
|
+ <Label Content="页面显示:" Style="{StaticResource Label2}" Margin="8,0" />
|
|
|
|
+ <ComboBox
|
|
|
|
+ Width="348"
|
|
|
|
+ Height="30"
|
|
|
|
+ SelectedIndex="0">
|
|
|
|
+ <ComboBoxItem Content="单页" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="单页连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="双页" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="双页连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="书本" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="书本连续" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ </ComboBox>
|
|
|
|
+ </WrapPanel>
|
|
|
|
+ <WrapPanel Grid.Row="1" Margin="0,12">
|
|
|
|
+ <Label Content="缩放比例:" Style="{StaticResource Label2}" Margin="8,0" />
|
|
|
|
+ <ComboBox
|
|
|
|
+ Width="348"
|
|
|
|
+ Height="30"
|
|
|
|
+ SelectedIndex="0">
|
|
|
|
+ <ComboBoxItem Content="适应宽度" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="适应页面" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ <ComboBoxItem Content="实际大小" Foreground="{StaticResource color.field.text.act}" />
|
|
|
|
+ </ComboBox>
|
|
|
|
+ </WrapPanel>
|
|
|
|
+ </Grid>
|
|
|
|
+ </Border>
|
|
|
|
|
|
<Label Content="左侧面板" Style="{StaticResource Label}" />
|
|
<Label Content="左侧面板" Style="{StaticResource Label}" />
|
|
- <StackPanel Margin="0,8" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <Label
|
|
|
|
- Margin="0,8,0,0"
|
|
|
|
- Content="默认显示:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <RadioButton
|
|
|
|
- Margin="8"
|
|
|
|
- Content="打开文件时收起"
|
|
|
|
- Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- <RadioButton
|
|
|
|
- Margin="8,0,0,8"
|
|
|
|
- Content="打开APP记住上次选择"
|
|
|
|
- Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- <CheckBox
|
|
|
|
- Margin="8,0,0,10"
|
|
|
|
- Content="有大纲时默认显示大纲列表"
|
|
|
|
- Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
- </StackPanel>
|
|
|
|
- <Label Content="属性面板" Style="{StaticResource Label}" />
|
|
|
|
|
|
+ <Border CornerRadius="6" Margin="0,8" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <StackPanel>
|
|
|
|
+ <Label
|
|
|
|
+ Margin="8,8,0,0"
|
|
|
|
+ Content="默认显示:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <RadioButton
|
|
|
|
+ Margin="12"
|
|
|
|
+ Content="打开文件时收起"
|
|
|
|
+ Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ <RadioButton
|
|
|
|
+ Margin="12,0,0,8"
|
|
|
|
+ Content="打开APP记住上次选择"
|
|
|
|
+ Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ <CheckBox
|
|
|
|
+ Margin="12,0,0,10"
|
|
|
|
+ Content="有大纲时默认显示大纲列表"
|
|
|
|
+ Foreground="{StaticResource color.sys.text.neutral.lv1}" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
|
|
- <WrapPanel Margin="0,8,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <Label
|
|
|
|
- Margin="8,5"
|
|
|
|
- Content="显示方式:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <RadioButton Content="自动展开" Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- <RadioButton
|
|
|
|
- Margin="8,5"
|
|
|
|
- Content="手动展开"
|
|
|
|
- Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
- </WrapPanel>
|
|
|
|
|
|
+ <Label Content="属性面板" Style="{StaticResource Label}" />
|
|
|
|
+ <Border CornerRadius="6" Margin="0,8,0,18" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <WrapPanel>
|
|
|
|
+ <Label
|
|
|
|
+ Margin="8,5"
|
|
|
|
+ Content="显示方式:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <RadioButton Content="自动展开" Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ <RadioButton
|
|
|
|
+ Margin="8,5"
|
|
|
|
+ Content="手动展开"
|
|
|
|
+ Style="{DynamicResource RadioButtonStyle1}" />
|
|
|
|
+ </WrapPanel>
|
|
|
|
+ </Border>
|
|
|
|
|
|
<Label Content="页码指示符:" Style="{StaticResource Label}" />
|
|
<Label Content="页码指示符:" Style="{StaticResource Label}" />
|
|
<WrapPanel Margin="6,10,6,18">
|
|
<WrapPanel Margin="6,10,6,18">
|
|
@@ -445,254 +459,257 @@
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
<ScrollViewer Margin="0,0,0,80" VerticalScrollBarVisibility="Auto">
|
|
<StackPanel Margin="16,10,10,0">
|
|
<StackPanel Margin="16,10,10,0">
|
|
<Label Content="注释默认颜色" Style="{StaticResource Label}" />
|
|
<Label Content="注释默认颜色" Style="{StaticResource Label}" />
|
|
- <Grid Margin="0,8" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
|
- <ColumnDefinition />
|
|
|
|
- <ColumnDefinition />
|
|
|
|
- <ColumnDefinition />
|
|
|
|
- <ColumnDefinition />
|
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
|
- <Grid.RowDefinitions>
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- <RowDefinition />
|
|
|
|
- </Grid.RowDefinitions>
|
|
|
|
|
|
+ <Border CornerRadius="6" Margin="0,8" Background="{StaticResource color.sys.layout.mg}">
|
|
|
|
+ <Grid>
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
+ <ColumnDefinition />
|
|
|
|
+ <ColumnDefinition />
|
|
|
|
+ <ColumnDefinition Width="150" />
|
|
|
|
+ <ColumnDefinition />
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ <RowDefinition />
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
|
|
- <Label Content="highlights:" Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
|
|
+ <Label Content="highlights:" Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Column="2"
|
|
|
|
+ Content="Rectangular borders:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Column="3"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="1"
|
|
|
|
+ Content="Strikthrough:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="1"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="1"
|
|
|
|
+ Grid.Column="2"
|
|
|
|
+ Content="Round borders:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="1"
|
|
|
|
+ Grid.Column="3"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="2"
|
|
|
|
+ Content="Underline:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="2"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="2"
|
|
|
|
+ Grid.Column="2"
|
|
|
|
+ Content="Line segment:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="2"
|
|
|
|
+ Grid.Column="3"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="3"
|
|
|
|
+ Content="Draw:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="3"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="3"
|
|
|
|
+ Grid.Column="2"
|
|
|
|
+ Content="Rectangular Fill:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="3"
|
|
|
|
+ Grid.Column="3"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="4"
|
|
|
|
+ Content="Text Notes:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="4"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="4"
|
|
|
|
+ Grid.Column="2"
|
|
|
|
+ Content="Round filling:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="4"
|
|
|
|
+ Grid.Column="3"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ <Label
|
|
|
|
+ Grid.Row="5"
|
|
|
|
+ Content="Notes:"
|
|
|
|
+ Style="{StaticResource Label2}" />
|
|
|
|
+ <Border
|
|
|
|
+ Grid.Row="5"
|
|
|
|
+ Grid.Column="1"
|
|
|
|
+ Width="66"
|
|
|
|
+ Margin="10"
|
|
|
|
+ BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
+ BorderThickness="1"
|
|
|
|
+ CornerRadius="4">
|
|
|
|
+ <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
+ <Ellipse
|
|
|
|
+ Width="20"
|
|
|
|
+ Height="20"
|
|
|
|
+ Margin="4,0"
|
|
|
|
+ Fill="#F3465B" />
|
|
|
|
+ <cus:ColorDropBox Margin="4,0" />
|
|
|
|
+ </StackPanel>
|
|
|
|
+ </Border>
|
|
|
|
+ </Grid>
|
|
|
|
+ </Border>
|
|
|
|
|
|
- <Label
|
|
|
|
- Grid.Column="2"
|
|
|
|
- Content="Rectangular borders:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Column="3"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="1"
|
|
|
|
- Content="Strikthrough:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="1"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="1"
|
|
|
|
- Grid.Column="2"
|
|
|
|
- Content="Round borders:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="1"
|
|
|
|
- Grid.Column="3"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="2"
|
|
|
|
- Content="Underline:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="2"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="2"
|
|
|
|
- Grid.Column="2"
|
|
|
|
- Content="Line segment:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="2"
|
|
|
|
- Grid.Column="3"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="3"
|
|
|
|
- Content="Draw:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="3"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="3"
|
|
|
|
- Grid.Column="2"
|
|
|
|
- Content="Rectangular Fill:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="3"
|
|
|
|
- Grid.Column="3"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="4"
|
|
|
|
- Content="Text Notes:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="4"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="4"
|
|
|
|
- Grid.Column="2"
|
|
|
|
- Content="Round filling:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="4"
|
|
|
|
- Grid.Column="3"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- <Label
|
|
|
|
- Grid.Row="5"
|
|
|
|
- Content="Notes:"
|
|
|
|
- Style="{StaticResource Label2}" />
|
|
|
|
- <Border
|
|
|
|
- Grid.Row="5"
|
|
|
|
- Grid.Column="1"
|
|
|
|
- Width="66"
|
|
|
|
- Margin="10"
|
|
|
|
- BorderBrush="{StaticResource color.field.border.norm}"
|
|
|
|
- BorderThickness="1"
|
|
|
|
- CornerRadius="4">
|
|
|
|
- <StackPanel Margin="5" Orientation="Horizontal">
|
|
|
|
- <Ellipse
|
|
|
|
- Width="20"
|
|
|
|
- Height="20"
|
|
|
|
- Margin="4,0"
|
|
|
|
- Fill="#F3465B" />
|
|
|
|
- <cus:ColorDropBox Margin="4,0" />
|
|
|
|
- </StackPanel>
|
|
|
|
- </Border>
|
|
|
|
- </Grid>
|
|
|
|
<Label Content="注释默认字体" Style="{StaticResource Label}" />
|
|
<Label Content="注释默认字体" Style="{StaticResource Label}" />
|
|
<WrapPanel Margin="0,10">
|
|
<WrapPanel Margin="0,10">
|
|
<WrapPanel>
|
|
<WrapPanel>
|
|
@@ -805,6 +822,7 @@
|
|
VerticalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
FontFamily="Segoe UI"
|
|
FontFamily="Segoe UI"
|
|
FontSize="16"
|
|
FontSize="16"
|
|
|
|
+ FontWeight="Bold"
|
|
Foreground="{StaticResource color.sys.text.neutral.lv1}"
|
|
Foreground="{StaticResource color.sys.text.neutral.lv1}"
|
|
Text="Preferences" />
|
|
Text="Preferences" />
|
|
<StackPanel
|
|
<StackPanel
|