InkCanvasForClass/InkCanvasForClass/MainWindow.xaml

9358 lines
1.0 MiB
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<helpers:PerformanceTransparentWin x:Name="window" x:Class="Ink_Canvas.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
xmlns:c="clr-namespace:Ink_Canvas.Converter"
xmlns:Controls="http://schemas.microsoft.com/netfx/2009/xaml/presentation" xmlns:popups="clr-namespace:Ink_Canvas.Popups"
xmlns:inkCanvas="clr-namespace:Ink_Canvas"
xmlns:helpers="clr-namespace:Ink_Canvas.Helpers"
mc:Ignorable="d"
WindowStyle="None"
ResizeMode="NoResize"
WindowState="Maximized"
Loaded="Window_Loaded"
Background="Transparent"
ShowInTaskbar="False"
Title="InkCanvasforClass"
Topmost="True"
KeyDown="Window_KeyDown"
Closing="Window_Closing"
Closed="Window_Closed"
PreviewKeyDown="Main_Grid_PreviewKeyDown"
PreviewKeyUp="Main_Grid_PreviewKeyUp"
Height="18000" Width="1440"
FontFamily="Microsoft YaHei UI"
MouseWheel="Window_MouseWheel"
Foreground="Black"
SizeChanged="MainWindow_OnSizeChanged"
MouseMove="MainWindow_OnMouseMove"
Stylus.IsPressAndHoldEnabled="False"
Stylus.IsFlicksEnabled="False"
Stylus.IsTapFeedbackEnabled="False"
DpiChanged="MainWindow_OnDpiChanged"
PreviewStylusButtonDown="mainWin_StylusButtonDown"
PreviewStylusButtonUp="mainWin_StylusButtonUp"
PreviewStylusMove="mainWin_StylusMove"
PreviewStylusInAirMove="mainWin_StylusInAirMove"
Stylus.IsTouchFeedbackEnabled="False">
<!--资源中添加命令-->
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="MainWindow_cs/MW_ContextMenus.xaml" />
<ResourceDictionary Source="MainWindow_cs/MW_Eraser.xaml" />
</ResourceDictionary.MergedDictionaries>
<c:IsEnabledToOpacityConverter x:Key="IsEnabledToOpacityConverter" />
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
<c:IntNumberToString x:Key="IntNumberToString" />
<c:IntNumberToString2 x:Key="IntNumberToString2" />
<RoutedUICommand x:Key="KeyExit" Text=" " />
<RoutedUICommand x:Key="HotKey_Command_Undo" Text=" " />
<RoutedUICommand x:Key="HotKey_Command_Redo" Text=" " />
<RoutedUICommand x:Key="HotKey_Command_Clear" Text=" " />
<RoutedUICommand x:Key="HotKey_Capture" Text=" " />
<RoutedUICommand x:Key="HotKey_Hide" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToDrawTool" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToQuitDrawTool" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToSelect" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToEraser" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToBoard" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen1" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen2" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen3" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen4" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen5" Text=" " />
<RoutedUICommand x:Key="HotKey_DrawLine" Text=" " />
<RoutedUICommand x:Key="NothingWillHappened" Text=" " />
</ResourceDictionary>
</Window.Resources>
<!--输入命令绑定-->
<Window.InputBindings>
<KeyBinding Gesture="Escape" Command="{StaticResource KeyExit}" />
<KeyBinding Modifiers="Control" Key="Z" Command="{StaticResource HotKey_Command_Undo}" />
<KeyBinding Modifiers="Control" Key="Y" Command="{StaticResource HotKey_Command_Redo}" />
<KeyBinding Modifiers="Control" Key="E" Command="{StaticResource HotKey_Command_Clear}" />
<KeyBinding Modifiers="Alt" Key="C" Command="{StaticResource HotKey_Capture}" />
<KeyBinding Modifiers="Alt" Key="V" Command="{StaticResource HotKey_Hide}" />
<KeyBinding Modifiers="Alt" Key="S" Command="{StaticResource HotKey_ChangeToSelect}" />
<KeyBinding Modifiers="Alt" Key="D" Command="{StaticResource HotKey_ChangeToDrawTool}" />
<KeyBinding Modifiers="Alt" Key="Q" Command="{StaticResource HotKey_ChangeToQuitDrawTool}" />
<KeyBinding Modifiers="Alt" Key="E" Command="{StaticResource HotKey_ChangeToEraser}" />
<KeyBinding Modifiers="Alt" Key="B" Command="{StaticResource HotKey_ChangeToBoard}" />
<KeyBinding Modifiers="Alt" Key="D1" Command="{StaticResource HotKey_ChangeToPen1}" />
<KeyBinding Modifiers="Alt" Key="D2" Command="{StaticResource HotKey_ChangeToPen2}" />
<KeyBinding Modifiers="Alt" Key="D3" Command="{StaticResource HotKey_ChangeToPen3}" />
<KeyBinding Modifiers="Alt" Key="D4" Command="{StaticResource HotKey_ChangeToPen4}" />
<KeyBinding Modifiers="Alt" Key="D5" Command="{StaticResource HotKey_ChangeToPen5}" />
<KeyBinding Modifiers="Alt" Key="L" Command="{StaticResource HotKey_DrawLine}" />
<KeyBinding Modifiers="Alt" Key="F4" Command="{StaticResource NothingWillHappened}" />
</Window.InputBindings>
<!--命令执行方法绑定-->
<Window.CommandBindings>
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource KeyExit}" Executed="KeyExit" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_Command_Undo}"
Executed="HotKey_Undo" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_Command_Redo}"
Executed="HotKey_Redo" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_Command_Clear}"
Executed="HotKey_Clear" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_ChangeToDrawTool}"
Executed="KeyChangeToDrawTool" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_ChangeToQuitDrawTool}"
Executed="KeyChangeToQuitDrawTool" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_ChangeToSelect}"
Executed="KeyChangeToSelect" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_ChangeToEraser}"
Executed="KeyChangeToEraser" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_ChangeToBoard}"
Executed="KeyChangeToBoard" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_Capture}"
Executed="KeyCapture" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_Hide}"
Executed="KeyHide" />
<CommandBinding CanExecute="CommandBinding_CanExecute" Command="{StaticResource HotKey_DrawLine}"
Executed="KeyDrawLine" />
</Window.CommandBindings>
<Grid x:Name="Main_Grid">
<!--// 黑/白 板幕布 //-->
<Image Name="FreezeFrameBackgroundImage" Visibility="Collapsed" />
<Grid Name="GridBackgroundCoverHolder">
<Grid Name="GridBackgroundCover" Visibility="Collapsed" Background="#1F1F1F" />
</Grid>
<Grid Name="GridTransparencyFakeBackground" Opacity="0" />
<Label Name="Label" Visibility="Collapsed" Foreground="Gray" Content="0" />
<Grid Name="InkCanvasGridForInkReplay">
<helpers:RectangleSelectionViewer x:Name="RectangleSelection" />
<inkCanvas:IccInkCanvas x:Name="inkCanvas" ForceCursor="False"
TouchUp="Main_Grid_TouchUp" TouchDown="Main_Grid_TouchDown"
TouchMove="inkCanvas_TouchMove"
ManipulationDelta="Main_Grid_ManipulationDelta"
ManipulationCompleted="Main_Grid_ManipulationCompleted"
ManipulationInertiaStarting="inkCanvas_ManipulationInertiaStarting"
IsManipulationEnabled="True"
EditingModeChanged="inkCanvas_EditingModeChanged"
EditingModeInverted="None"
PreviewTouchDown="inkCanvas_PreviewTouchDown"
PreviewTouchUp="inkCanvas_PreviewTouchUp"
MouseDown="inkCanvas_MouseDown"
MouseMove="inkCanvas_MouseMove"
MouseUp="inkCanvas_MouseUp"
PreviewMouseRightButtonDown="InkCanvas_MouseRightButtonDown"
PreviewMouseRightButtonUp="InkCanvas_MouseRightButtonUp"
ManipulationStarting="inkCanvas_ManipulationStarting"
SelectionChanged="inkCanvas_SelectionChanged"
StrokeCollected="inkCanvas_StrokeCollected" ClipToBounds="False" Background="Transparent" />
</Grid>
<Canvas IsHitTestVisible="False">
<ui:SimpleStackPanel Canvas.Left="25" Canvas.Top="15" Orientation="Vertical">
<TextBlock Text="{Binding nowTime}" Name="WaterMarkTime" Visibility="Collapsed" FontSize="30"
FontWeight="Bold" Foreground="White" Opacity="0.6" />
<TextBlock Text="{Binding nowDate}" Name="WaterMarkDate" Visibility="Collapsed" Margin="2,0,0,0"
FontSize="16" Foreground="White" Opacity="0.45" />
</ui:SimpleStackPanel>
<TextBlock Canvas.Right="25" Canvas.Top="15" Text="多一份理解,少一份抱怨" Name="BlackBoardWaterMark"
Visibility="Collapsed" FontSize="24" FontWeight="Bold" Foreground="White" Opacity="0.5" />
</Canvas>
<Grid Visibility="{Binding ElementName=inkCanvas, Path=Visibility}">
<Grid Name="GridInkCanvasSelectionCover"
MouseDown="GridInkCanvasSelectionCover_MouseDown"
MouseUp="GridInkCanvasSelectionCover_MouseUp"
IsManipulationEnabled="True"
ManipulationStarting="GridInkCanvasSelectionCover_ManipulationStarting"
ManipulationCompleted="GridInkCanvasSelectionCover_ManipulationCompleted"
ManipulationDelta="GridInkCanvasSelectionCover_ManipulationDelta"
Background="#01FFFFFF" Opacity="0.01" Visibility="Visible" Margin="1,0,-1,0" />
<InkCanvas Background="Transparent" EditingMode="None" IsHitTestVisible="False" Name="InkSelectionStrokesBackgroundInkCanvas" Visibility="Collapsed" />
<helpers:InkStrokesOverlay x:Name="InkSelectionStrokesOverlay" IsHitTestVisible="False" />
<helpers:DrawingVisualCanvas x:Name="InkSelectionRotateGuidelineOverlay" Visibility="Collapsed" IsHitTestVisible="False" />
<!--RectangleSelectionHitTestBorder 用于矩形选择的HitTest-->
<Border Visibility="Collapsed" Background="Transparent" Name="RectangleSelectionHitTestBorder" MouseDown="RectangleSelectionHitTestBorder_MouseDown" MouseUp="RectangleSelectionHitTestBorder_MouseUp" MouseMove="RectangleSelectionHitTestBorder_MouseMove" />
<Canvas Name="InkCanvasSelectFakeAdornerCanvas" Visibility="Collapsed">
<Border Visibility="Collapsed" Name="StrokeSelectionBorder"
Canvas.Top="125" Canvas.Left="35" Width="225" Height="195">
<Border.RenderTransform>
<TransformGroup>
<RotateTransform x:Name="StrokeSelectionBorderRotateTransform" CenterX="0" CenterY="0" />
<TranslateTransform x:Name="StrokeSelectionBorderTranslateTransform" X="0" Y="0" />
</TransformGroup>
</Border.RenderTransform>
<Grid Margin="-9" Name="StrokeSelectionBorderGrid">
<Border BorderBrush="#2563eb" BorderThickness="2" />
<Line Name="StrokeSelectionRotateHandleConnectLine" HorizontalAlignment="Center" X1="0" Y1="0" X2="0" Y2="-48" Height="0" VerticalAlignment="Top" Stroke="#2563eb" StrokeThickness="2" />
<Border Name="StrokeSelectionCursorArea" MouseUp="StrokeSelectionBorder_MouseUp"
MouseMove="StrokeSelectionBorder_MouseMove" MouseDown="StrokeSelectionBorder_MouseDown"
MouseEnter="StrokeSelectionBorder_MouseEnter" MouseLeave="StrokeSelectionBorder_MouseLeave"
Background="#0560a5fa" />
<Border Name="StrokeSelectionLTHandle" Width="24" Height="24" CornerRadius="12" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="-12" />
<Border Name="StrokeSelectionRTHandle" Width="24" Height="24" CornerRadius="12" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="-12" />
<Border Name="StrokeSelectionLBHandle" Width="24" Height="24" CornerRadius="12" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="-12" />
<Border Name="StrokeSelectionRBHandle" Width="24" Height="24" CornerRadius="12" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="-12" />
<Border Name="StrokeSelectionLHandle" Width="16" Height="16" CornerRadius="4" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="-8" />
<Border Name="StrokeSelectionRHandle" Width="16" Height="16" CornerRadius="4" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="-8" />
<Border Name="StrokeSelectionTHandle" Width="16" Height="16" CornerRadius="4" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="-8" />
<Border Name="StrokeSelectionBHandle" Width="16" Height="16" CornerRadius="4" Background="White" BorderBrush="#2563eb" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="-8" />
<Grid Margin="0,-48,0,0">
<Border Name="StrokeSelectionRotateHandle" Width="20" Height="20" CornerRadius="12" Background="#dcfce7" BorderBrush="#22c55e" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="-10" />
</Grid>
<Canvas>
<Border Name="StrokeSelectionSizeToast" Visibility="Collapsed" Margin="12" Padding="6,2" Background="#CC18181b" CornerRadius="3">
<StackPanel Orientation="Horizontal" Name="StrokeSelectionSizeToastInner">
<TextBlock Foreground="White" Text="293" />
<Grid VerticalAlignment="Center" Width="8" Height="8" Margin="4,0">
<Line X1="0" Y1="0" X2="8" Y2="8" Stroke="White" StrokeThickness="1.25" />
<Line X1="8" Y1="0" X2="0" Y2="8" Stroke="White" StrokeThickness="1.25" />
</Grid>
<TextBlock Foreground="White" Text="1920" />
</StackPanel>
</Border>
<Border Name="StrokeSelectionMoveToast" Visibility="Collapsed" Margin="12" Padding="6,2" Background="#CC18181b" CornerRadius="3">
<StackPanel Orientation="Vertical" Name="StrokeSelectionMoveToastInner">
<StackPanel Orientation="Horizontal">
<TextBlock Foreground="White" Margin="0,0,8,0" Text="X: 293" />
<TextBlock Foreground="White" Text="Y: 1920" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Foreground="White" Margin="0,0,3,0" FontWeight="Bold" Text="偏移: " />
<TextBlock Foreground="White" Margin="0,0,8,0" Text="Δx: 293" />
<TextBlock Foreground="White" Text="Δy: 1920" />
</StackPanel>
</StackPanel>
</Border>
<Border Name="StrokeSelectionRotateToast" Visibility="Collapsed" Margin="12" Padding="6,2" Background="#CC18181b" CornerRadius="3">
<TextBlock Foreground="White" Text="120°" />
</Border>
</Canvas>
</Grid>
</Border>
</Canvas>
<Border HorizontalAlignment="Left" VerticalAlignment="Top" Name="BorderStrokeSelectionControl" Visibility="{Binding ElementName=GridInkCanvasSelectionCover, Path=Visibility}"
Width="660" Height="48" Margin="800,600,0,0">
<Border HorizontalAlignment="Center" VerticalAlignment="Center"
CornerRadius="6" Height="48"
Background="#f4f4f5"
BorderThickness="1" BorderBrush="#a1a1aa">
<ui:SimpleStackPanel Orientation="Horizontal" Height="44" Margin="2,0">
<Border Padding="10,0" Margin="-3,-2,3,-2" CornerRadius="6,0,0,6" Background="#2563eb">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M12,4C7.3338,4 4,6.90564 4,10 4,10.712 4.16669,11.4004 4.48142,12.0452 4.65151,12.0153 4.82497,12 5,12 5.79565,12 6.55871,12.3161 7.12132,12.8787 7.68393,13.4413 8,14.2044 8,15 8,15.0632 7.998,15.1262 7.99405,15.1889 9.16608,15.7017 10.5322,16 12,16 16.6662,16 20,13.0944 20,10 20,6.90564 16.6662,4 12,4z M2,10C2,11.079 2.26528,12.1019 2.73768,13.0297 2.26354,13.5741 2,14.2735 2,15 2,15.7956 2.31607,16.5587 2.87868,17.1213 3.20674,17.4494 3.60297,17.6936 4.03406,17.8402 4.13882,19.119 4.4887,20.3727 5.13211,21.4968 5.40647,21.9761 6.01744,22.1422 6.49676,21.8679 6.97608,21.5935 7.14224,20.9826 6.86789,20.5032 6.40974,19.7028 6.13635,18.787 6.03975,17.8141 6.44225,17.6653 6.81207,17.4306 7.12132,17.1213 7.15156,17.0911 7.18108,17.0603 7.20988,17.0289 8.63854,17.651 10.2724,18 12,18 17.2738,18 22,14.6376 22,10 22,5.36236 17.2738,2 12,2 6.7262,2 2,5.36236 2,10z M5,16C5.26522,16 5.51957,15.8946 5.70711,15.7071 5.80039,15.6138 5.87334,15.504 5.9231,15.3846 5.92608,15.3769 5.92917,15.3692 5.93235,15.3616 5.97665,15.2473 6,15.1249 6,15 6,14.7348 5.89464,14.4804 5.70711,14.2929 5.51957,14.1054 5.26522,14 5,14 4.73478,14 4.48043,14.1054 4.29289,14.2929 4.10536,14.4804 4,14.7348 4,15 4,15.2652 4.10536,15.5196 4.29289,15.7071 4.48043,15.8946 4.73478,16 5,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
<Border Name="BorderStrokeSelectionClone" Background="Transparent" MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave"
MouseUp="BorderStrokeSelectionClone_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="BorderStrokeSelectionCloneGeometryIcon" Brush="#18181b" Geometry="F0 M24,24z M0,0z M4,5C4,4.45228,4.45228,4,5,4L15,4C15.1876,4 15.266,4.04268 15.3156,4.07864 15.3868,4.13032 15.4886,4.23877 15.626,4.486 15.8945,4.96868 16.5033,5.14237 16.986,4.87396 17.4687,4.60554 17.6424,3.99667 17.374,3.514 17.1694,3.14623 16.8962,2.75468 16.4904,2.46011 16.063,2.14982 15.5624,2 15,2L5,2C3.34772,2,2,3.34772,2,5L2,15 2,15.0024C2.00128,15.5315 2.1422,16.0508 2.40853,16.5079 2.67485,16.965 3.05714,17.3437 3.51674,17.6057 3.99654,17.8793 4.60722,17.7121 4.88075,17.2323 5.15427,16.7525 4.98705,16.1418 4.50726,15.8683 4.35355,15.7806 4.2257,15.654 4.13662,15.5011 4.04772,15.3485 4.0006,15.1752 4,14.9986L4,5z M8.48825,8.48825C8.80088,8.17563,9.22488,8,9.667,8L18.333,8C18.5519,8 18.7687,8.04312 18.9709,8.12689 19.1732,8.21067 19.357,8.33346 19.5117,8.48825 19.6665,8.64305 19.7893,8.82682 19.8731,9.02907 19.9569,9.23132 20,9.44808 20,9.667L20,18.333C20,18.5519 19.9569,18.7687 19.8731,18.9709 19.7893,19.1732 19.6665,19.3569 19.5117,19.5117 19.3569,19.6665 19.1732,19.7893 18.9709,19.8731 18.7687,19.9569 18.5519,20 18.333,20L9.667,20C9.44808,20 9.23132,19.9569 9.02907,19.8731 8.82682,19.7893 8.64305,19.6665 8.48825,19.5117 8.33346,19.357 8.21067,19.1732 8.12689,18.9709 8.04312,18.7687 8,18.5519 8,18.333L8,9.667C8,9.22488,8.17563,8.80088,8.48825,8.48825z M9.667,6C8.69445,6 7.76174,6.38634 7.07404,7.07404 6.38634,7.76174 6,8.69445 6,9.667L6,18.333C6,18.8146 6.09485,19.2914 6.27913,19.7363 6.46342,20.1812 6.73353,20.5854 7.07404,20.926 7.41455,21.2665 7.8188,21.5366 8.2637,21.7209 8.7086,21.9052 9.18544,22 9.667,22L18.333,22C18.8146,22 19.2914,21.9052 19.7363,21.7209 20.1812,21.5366 20.5854,21.2665 20.926,20.926 21.2665,20.5854 21.5366,20.1812 21.7209,19.7363 21.9052,19.2914 22,18.8146 22,18.333L22,9.667C22,9.18544 21.9052,8.7086 21.7209,8.2637 21.5366,7.8188 21.2665,7.41455 20.926,7.07404 20.5854,6.73353 20.1812,6.46342 19.7363,6.27913 19.2914,6.09485 18.8146,6 18.333,6L9.667,6z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderStrokeSelectionCloneToNewBoard" Background="Transparent" MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave"
MouseUp="BorderStrokeSelectionCloneToNewBoard_MouseUp">
<Border Padding="9,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="5" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F1 M24,24z M0,0z M18.333,6C19.3055,6 20.2383,6.38634 20.926,7.07404 21.6137,7.76174 22,8.69445 22,9.667L22,18.333C22,19.3055 21.6137,20.2383 20.926,20.926 20.2383,21.6137 19.3055,22 18.333,22L9.667,22C8.69445,22 7.76174,21.6137 7.07404,20.926 6.38634,20.2383 6,19.3055 6,18.333L6,9.667C6,8.69445 6.38634,7.76174 7.07404,7.07404 7.76174,6.38634 8.69445,6 9.667,6L18.333,6z M14,10C13.7348,10 13.4804,10.1054 13.2929,10.2929 13.1054,10.4804 13,10.7348 13,11L13,13 11,13C10.7551,13 10.5187,13.09 10.3356,13.2527 10.1526,13.4155 10.0357,13.6397 10.007,13.883L10,14C10,14.2652 10.1054,14.5196 10.2929,14.7071 10.4804,14.8946 10.7348,15 11,15L13,15 13,17C13,17.2449 13.09,17.4813 13.2527,17.6644 13.4155,17.8474 13.6397,17.9643 13.883,17.993L14,18C14.2652,18 14.5196,17.8946 14.7071,17.7071 14.8946,17.5196 15,17.2652 15,17L15,15 17,15C17.2449,15 17.4813,14.91 17.6644,14.7473 17.8474,14.5845 17.9643,14.3603 17.993,14.117L18,14C18,13.7348 17.8946,13.4804 17.7071,13.2929 17.5196,13.1054 17.2652,13 17,13L15,13 15,11C15,10.7551 14.91,10.5187 14.7473,10.3356 14.5845,10.1526 14.3603,10.0357 14.117,10.007L14,10z M15,2C16.094,2 16.828,2.533 17.374,3.514 17.4378,3.62878 17.4784,3.755 17.4935,3.88546 17.5085,4.01592 17.4977,4.14807 17.4617,4.27436 17.4256,4.40065 17.3651,4.5186 17.2835,4.62149 17.2019,4.72437 17.1008,4.81018 16.986,4.874 16.8712,4.93782 16.745,4.97841 16.6145,4.99345 16.4841,5.0085 16.3519,4.99769 16.2256,4.96167 16.0994,4.92564 15.9814,4.86509 15.8785,4.78347 15.7756,4.70186 15.6898,4.60078 15.626,4.486 15.405,4.088 15.284,4 15,4L5,4C4.452,4,4,4.452,4,5L4,14.998C4,15.318,4.154,15.616,4.407,15.803L4.507,15.868C4.62112,15.933 4.72132,16.0198 4.80187,16.1236 4.88243,16.2273 4.94176,16.3459 4.97649,16.4725 5.01122,16.5992 5.02066,16.7315 5.00428,16.8618 4.98789,16.9921 4.946,17.1179 4.881,17.232 4.816,17.3461 4.72915,17.4463 4.62542,17.5269 4.5217,17.6074 4.40312,17.6668 4.27646,17.7015 4.1498,17.7362 4.01754,17.7457 3.88723,17.7293 3.75692,17.7129 3.63112,17.671 3.517,17.606 3.05661,17.3442 2.67374,16.9652 2.40729,16.5074 2.14085,16.0497 2.00032,15.5296 2,15L2,5C2,3.348,3.348,2,5,2L15,2z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Name="BorderStrokeSelectionCloneToNewBoardTextBlock" Text="克隆至新页" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="#18181b" />
</ui:SimpleStackPanel>
</Border>
</Border>
<Line X1="0" X2="0" Y1="0" Y2="47" Height="47" Margin="2,-2" StrokeThickness="1" Stroke="#66a1a1aa" />
<Border Name="BorderImageRotateClockwise" Background="Transparent" RenderTransformOrigin="0.5,0.5"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="ImageRotateClockwise_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M11.9909,21.0397C14.1799,21.0463 16.2962,20.2548 17.9437,18.8135 19.5913,17.3722 20.657,15.3799 20.9415,13.2094 21.0133,12.6618 20.6276,12.1597 20.08,12.088 19.5324,12.0162 19.0303,12.4019 18.9585,12.9495 18.7372,14.6376 17.9083,16.1872 16.6269,17.3082 15.3455,18.4292 13.6994,19.0448 11.9969,19.0397 10.2944,19.0346 8.65206,18.4092 7.37739,17.2806 6.10271,16.1519 5.28307,14.5974 5.0719,12.908 4.86072,11.2186 5.27249,9.51015 6.23012,8.10246 7.18775,6.69476 8.62559,5.68434 10.2745,5.26032 11.9234,4.8363 13.6703,5.02775 15.1882,5.79885 16.2399,6.33311 17.1317,7.12026 17.7899,8.07948L14.95,8.07948C14.3977,8.07948 13.95,8.52719 13.95,9.07948 13.95,9.63177 14.3977,10.0795 14.95,10.0795L19.4273,10.0795C19.4426,10.0798,19.4579,10.0798,19.4733,10.0795L19.95,10.0795C20.5023,10.0795,20.95,9.63177,20.95,9.07948L20.95,4.07948C20.95,3.5272 20.5023,3.07948 19.95,3.07948 19.3977,3.07948 18.95,3.5272 18.95,4.07948L18.95,6.29994C18.1705,5.35859 17.2012,4.57817 16.094,4.01574 14.1424,3.02433 11.8964,2.77817 9.77639,3.32334 7.65638,3.8685 5.80773,5.16762 4.57649,6.97751 3.34525,8.7874 2.81583,10.984 3.08734,13.1561 3.35885,15.3281 4.41267,17.3268 6.05154,18.7779 7.69041,20.2291 9.80196,21.0332 11.9909,21.0397z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderImageRotate45" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="ImageRotate_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Height="18">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V17 H34 V0 H0 Z">
<DrawingGroup.Transform>
<TranslateTransform X="9.0724505241723818E-08" Y="3.0544207163529791E-08" />
</DrawingGroup.Transform>
<GeometryDrawing Brush="#18181b" Geometry="F0 M34,17z M0,0z M9.30925,0.0490854C9.72116,0.183031,10,0.56693,10,1.00007L10,11.0001 11,11.0001C11.5523,11.0001 12,11.4478 12,12.0001 12,12.5524 11.5523,13.0001 11,13.0001L10,13.0001 10,16.0001C10,16.5524 9.55229,17.0001 9,17.0001 8.44772,17.0001 8,16.5524 8,16.0001L8,13.0001 1,13.0001C0.62388,13.0001 0.279566,12.789 0.108889,12.4538 -0.0617876,12.1187 -0.0299577,11.7161 0.191268,11.4119L8.19127,0.411896C8.44603,0.0616019,8.89734,-0.0848601,9.30925,0.0490854z M8,11.0001L8,4.07525 2.96377,11.0001 8,11.0001z" />
<GeometryDrawing Brush="#18181b" Geometry="F0 M34,17z M0,0z M14,1C14,0.447715,14.4477,3.39787E-09,15,3.39787E-09L23,3.39787E-09C23.5523,3.39787E-09 24,0.447715 24,1 24,1.55228 23.5523,2 23,2L16,2 16,7.5 19,7.5C20.306,7.5 21.5705,7.98578 22.5124,8.86881 23.4565,9.75389 24,10.9686 24,12.25 24,13.5314 23.4565,14.7461 22.5124,15.6312 21.5705,16.5142 20.306,17 19,17L15,17C14.4477,17 14,16.5523 14,16 14,15.4477 14.4477,15 15,15L19,15C19.8157,15 20.5861,14.6956 21.1445,14.1721 21.7007,13.6507 22,12.9578 22,12.25 22,11.5422 21.7007,10.8493 21.1445,10.3279 20.5861,9.80439 19.8157,9.5 19,9.5L15,9.5C14.4477,9.5,14,9.05229,14,8.5L14,1z" />
<GeometryDrawing Brush="#18181b" Geometry="F0 M34,17z M0,0z M28.4693,0.304482C28.9546,0.103463 29.4747,1.69894E-09 30,1.69894E-09 30.5253,1.69894E-09 31.0454,0.103463 31.5307,0.304482 32.016,0.505501 32.457,0.800139 32.8284,1.17157 33.1999,1.54301 33.4945,1.98396 33.6955,2.46927 33.8965,2.95457 34,3.47471 34,4 34,4.52529 33.8965,5.04543 33.6955,5.53073 33.4945,6.01604 33.1999,6.45699 32.8284,6.82843 32.457,7.19986 32.016,7.4945 31.5307,7.69552 31.0454,7.89654 30.5253,8 30,8 29.4747,8 28.9546,7.89654 28.4693,7.69552 27.984,7.4945 27.543,7.19986 27.1716,6.82843 26.8001,6.45699 26.5055,6.01604 26.3045,5.53073 26.1035,5.04543 26,4.52529 26,4 26,3.47471 26.1035,2.95457 26.3045,2.46927 26.5055,1.98396 26.8001,1.54301 27.1716,1.17157 27.543,0.800138 27.984,0.505501 28.4693,0.304482z M30,2C29.7374,2 29.4773,2.05173 29.2346,2.15224 28.992,2.25275 28.7715,2.40007 28.5858,2.58579 28.4001,2.7715 28.2528,2.99198 28.1522,3.23463 28.0517,3.47728 28,3.73736 28,4 28,4.26264 28.0517,4.52272 28.1522,4.76537 28.2528,5.00802 28.4001,5.2285 28.5858,5.41421 28.7715,5.59993 28.992,5.74725 29.2346,5.84776 29.4773,5.94827 29.7374,6 30,6 30.2626,6 30.5227,5.94827 30.7654,5.84776 31.008,5.74725 31.2285,5.59993 31.4142,5.41421 31.5999,5.2285 31.7473,5.00802 31.8478,4.76537 31.9483,4.52272 32,4.26264 32,4 32,3.73736 31.9483,3.47728 31.8478,3.23463 31.7473,2.99198 31.5999,2.7715 31.4142,2.58579 31.2285,2.40007 31.008,2.25275 30.7654,2.15224 30.5227,2.05173 30.2626,2 30,2z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderImageRotate90" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="ImageRotate_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Height="18">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V17 H32 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M32,17z M0,0z M1.48,1.37C2.42,0.49 3.69,0 5,0 6.31,0 7.57,0.49 8.52,1.37 9.46,2.26 10,3.47 10,4.75L10,12.26C10,13.54 9.46,14.75 8.52,15.64 7.58,16.52 6.31,17.01 5,17.01 3.69,17.01 2.43,16.52 1.48,15.64 0.54,14.75 0,13.54 0,12.26 0,11.71 0.45,11.27 1,11.27 1.55,11.27 2,11.71 2,12.26 2,12.97 2.3,13.67 2.86,14.19 3.42,14.71 4.19,15.02 5,15.02 5.81,15.02 6.58,14.72 7.14,14.19 7.7,13.67 8,12.97 8,12.26L8,9.49C7.14,10.11 6.08,10.44 5,10.44 3.69,10.44 2.43,9.95 1.48,9.07 0.54,8.18 0,6.97 0,5.69L0,4.75C0,3.47,0.54,2.26,1.48,1.37z M7.14,2.82C7.7,3.34,8,4.04,8,4.75L8,5.69C8,6.4 7.7,7.1 7.14,7.62 6.58,8.14 5.81,8.45 5,8.45 4.19,8.45 3.42,8.15 2.86,7.62 2.3,7.1 2,6.4 2,5.69L2,4.75C2,4.04 2.3,3.34 2.86,2.82 3.42,2.3 4.19,1.99 5,1.99 5.81,1.99 6.58,2.29 7.14,2.82z" />
<GeometryDrawing Brush="#18181b" Geometry="F0 M32,17z M0,0z M17,0C15.69,0 14.43,0.49 13.48,1.37 12.54,2.26 12,3.47 12,4.75L12,12.26C12,13.54 12.54,14.75 13.48,15.64 14.42,16.52 15.69,17.01 17,17.01 18.31,17.01 19.57,16.52 20.52,15.64 21.46,14.75 22,13.54 22,12.26L22,4.75C22,3.47 21.46,2.26 20.52,1.37 19.58,0.49 18.31,0 17,0z M14.86,2.82C15.42,2.3 16.19,1.99 17,1.99 17.81,1.99 18.58,2.29 19.14,2.82 19.7,3.34 20,4.04 20,4.75L20,12.26C20,12.97 19.7,13.67 19.14,14.19 18.58,14.71 17.81,15.02 17,15.02 16.19,15.02 15.42,14.72 14.86,14.19 14.3,13.67 14,12.97 14,12.26L14,4.75C14,4.04,14.3,3.34,14.86,2.82z" />
<GeometryDrawing Brush="#18181b" Geometry="F0 M32,17z M0,0z M28,0.0599976C27.48,0.0599976 26.96,0.159998 26.47,0.359998 25.98,0.559998 25.54,0.859998 25.17,1.23 24.8,1.6 24.5,2.04 24.3,2.53 24.1,3.01 24,3.54 24,4.06 24,4.58 24.1,5.1 24.3,5.59 24.5,6.08 24.8,6.52 25.17,6.89 25.54,7.26 25.98,7.56 26.47,7.76 26.95,7.96 27.48,8.06 28,8.06 28.52,8.06 29.04,7.96 29.53,7.76 30.02,7.56 30.46,7.26 30.83,6.89 31.2,6.52 31.5,6.08 31.7,5.59 31.9,5.11 32,4.58 32,4.06 32,3.54 31.9,3.02 31.7,2.53 31.5,2.04 31.2,1.6 30.83,1.23 30.46,0.859998 30.01,0.559998 29.53,0.359998 29.05,0.159998 28.52,0.0599976 28,0.0599976z M27.23,2.21C27.48,2.11 27.74,2.06 28,2.06 28.27,2.06 28.53,2.11 28.77,2.21 29.01,2.31 29.23,2.45 29.42,2.64 29.6,2.83 29.75,3.05 29.85,3.29 29.95,3.54 30,3.79 30,4.06 30,4.33 29.95,4.59 29.85,4.83 29.75,5.07 29.61,5.29 29.42,5.48 29.23,5.66 29.01,5.81 28.77,5.91 28.52,6.01 28.27,6.06 28,6.06 27.73,6.06 27.47,6.01 27.23,5.91 26.99,5.81 26.77,5.67 26.58,5.48 26.4,5.29 26.25,5.07 26.15,4.83 26.05,4.58 26,4.33 26,4.06 26,3.79 26.05,3.53 26.15,3.29 26.25,3.05 26.39,2.83 26.58,2.64 26.77,2.46 26.99,2.31 27.23,2.21z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Line X1="0" X2="0" Y1="0" Y2="47" Height="47" Margin="2,-2" StrokeThickness="1" Stroke="#66a1a1aa" />
<Border Name="BorderImageFlipHorizontal" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="ImageFlip_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M12,2C12.5523,2,13,2.44772,13,3L13,21C13,21.5523 12.5523,22 12,22 11.4477,22 11,21.5523 11,21L11,3C11,2.44772,11.4477,2,12,2z M15.7702,6.02675C16.2216,5.9202,16.687,6.13797,16.8944,6.55279L21.8944,16.5528C22.0494,16.8628 22.0329,17.2309 21.8507,17.5257 21.6684,17.8205 21.3466,18 21,18L16,18C15.4477,18,15,17.5523,15,17L15,7C15,6.53622,15.3189,6.13331,15.7702,6.02675z M17,11.2361L17,16 19.382,16 17,11.2361z M9,7C9,6.53622 8.68112,6.13331 8.22975,6.02675 7.77838,5.9202 7.31298,6.13797 7.10557,6.55279L2.10557,16.5528C1.95058,16.8628 1.96714,17.2309 2.14935,17.5257 2.33156,17.8205 2.65342,18 3,18L8,18C8.55229,18,9,17.5523,9,17L9,7z M7,16L4.61803,16 7,11.2361 7,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderImageFlipVertical" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="ImageFlip_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M7.44721,2.10557C7.13723,1.95058 6.76909,1.96714 6.47427,2.14935 6.17945,2.33156 6,2.65342 6,3L6,8C6,8.55229,6.44772,9,7,9L17,9C17.4638,9 17.8667,8.68112 17.9732,8.22975 18.0798,7.77838 17.862,7.31298 17.4472,7.10557L7.44721,2.10557z M8,7L8,4.61804 12.7639,7 8,7z M2,12C2,11.4477,2.44772,11,3,11L21,11C21.5523,11 22,11.4477 22,12 22,12.5523 21.5523,13 21,13L3,13C2.44772,13,2,12.5523,2,12z M6,16C6,15.4477,6.44772,15,7,15L17,15C17.4638,15 17.8667,15.3189 17.9732,15.7702 18.0798,16.2216 17.862,16.687 17.4472,16.8944L7.44721,21.8944C7.13723,22.0494 6.76909,22.0329 6.47427,21.8507 6.17945,21.6684 6,21.3466 6,21L6,16z M8,17L8,19.382 12.7639,17 8,17z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Line X1="0" X2="0" Y1="0" Y2="47" Height="47" Margin="2,-2" StrokeThickness="1" Stroke="#66a1a1aa" />
<Border Name="BorderStrokeSelectionLock" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="BorderStrokeSelectionLock_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24" Name="BorderStrokeSelectionLock_LockClose" Visibility="Collapsed">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F1 M24,24z M0,0z M12,2C13.3261,2 14.5979,2.52678 15.5355,3.46447 16.4732,4.40215 17,5.67392 17,7L17,10C17.7956,10 18.5587,10.3161 19.1213,10.8787 19.6839,11.4413 20,12.2044 20,13L20,19C20,19.7956 19.6839,20.5587 19.1213,21.1213 18.5587,21.6839 17.7956,22 17,22L7,22C6.20435,22 5.44129,21.6839 4.87868,21.1213 4.31607,20.5587 4,19.7956 4,19L4,13C4,12.2044 4.31607,11.4413 4.87868,10.8787 5.44129,10.3161 6.20435,10 7,10L7,7C7,5.67392 7.52678,4.40215 8.46447,3.46447 9.40215,2.52678 10.6739,2 12,2z M12,14C11.4954,13.9998 11.0094,14.1904 10.6395,14.5335 10.2695,14.8766 10.0428,15.3468 10.005,15.85L10,16C10,16.3956 10.1173,16.7822 10.3371,17.1111 10.5568,17.44 10.8692,17.6964 11.2346,17.8478 11.6001,17.9991 12.0022,18.0387 12.3902,17.9616 12.7781,17.8844 13.1345,17.6939 13.4142,17.4142 13.6939,17.1345 13.8844,16.7781 13.9616,16.3902 14.0387,16.0022 13.9991,15.6001 13.8478,15.2346 13.6964,14.8692 13.44,14.5568 13.1111,14.3371 12.7822,14.1173 12.3956,14 12,14z M12,4C11.2044,4 10.4413,4.31607 9.87868,4.87868 9.31607,5.44129 9,6.20435 9,7L9,10 15,10 15,7C15,6.20435 14.6839,5.44129 14.1213,4.87868 13.5587,4.31607 12.7956,4 12,4z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Image Width="24" Height="24" Name="BorderStrokeSelectionLock_LockOpen">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M9.87868,3.87868C10.4413,3.31607 11.2044,3 12,3 12.7956,3 13.5587,3.31607 14.1213,3.87868 14.6839,4.44129 15,5.20435 15,6 15,6.55228 15.4477,7 16,7 16.5523,7 17,6.55228 17,6 17,4.67392 16.4732,3.40215 15.5355,2.46447 14.5979,1.52678 13.3261,1 12,1 10.6739,1 9.40215,1.52678 8.46447,2.46447 7.52678,3.40215 7,4.67392 7,6L7,10C6.20435,10 5.44129,10.3161 4.87868,10.8787 4.31607,11.4413 4,12.2044 4,13L4,19C4,19.7957 4.31607,20.5587 4.87868,21.1213 5.44129,21.6839 6.20435,22 7,22L17,22C17.7957,22 18.5587,21.6839 19.1213,21.1213 19.6839,20.5587 20,19.7957 20,19L20,13C20,12.2043 19.6839,11.4413 19.1213,10.8787 18.5587,10.3161 17.7957,10 17,10L9,10 9,6C9,5.20435,9.31607,4.44129,9.87868,3.87868z M8,12L7,12C6.73478,12 6.48043,12.1054 6.29289,12.2929 6.10536,12.4804 6,12.7348 6,13L6,19C6,19.2652 6.10536,19.5196 6.29289,19.7071 6.48043,19.8946 6.73478,20 7,20L17,20C17.2652,20 17.5196,19.8946 17.7071,19.7071 17.8946,19.5196 18,19.2652 18,19L18,13C18,12.7348 17.8946,12.4804 17.7071,12.2929 17.5196,12.1054 17.2652,12 17,12L8,12z M10.5858,14.5858C10.9609,14.2107 11.4696,14 12,14 12.5304,14 13.0391,14.2107 13.4142,14.5858 13.7893,14.9609 14,15.4696 14,16 14,16.5304 13.7893,17.0391 13.4142,17.4142 13.0391,17.7893 12.5304,18 12,18 11.4696,18 10.9609,17.7893 10.5858,17.4142 10.2107,17.0391 10,16.5304 10,16 10,15.4696 10.2107,14.9609 10.5858,14.5858z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderStrokePaletteButton" Background="Transparent"
MouseDown="Border_MouseDown">
<Border Padding="7,0" Margin="3" CornerRadius="4" Background="#1809090b">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M6.34315,6.34315C7.84344,4.84285 9.87827,4 12,4 16.5317,4 20,7.24178 20,11 20,11.7543 19.6636,12.5066 19.0177,13.0805 18.3676,13.6582 17.463,14 16.5,14L14.0073,14C13.3411,13.9912 12.6909,14.2044 12.1593,14.6061 11.6253,15.0096 11.2415,15.5801 11.0691,16.2268 10.8966,16.8735 10.9454,17.5592 11.2076,18.175 11.447,18.7374 11.8519,19.2118 12.3664,19.5366 12.3885,19.5691 12.4042,19.6058 12.4122,19.6447 12.4249,19.7061 12.418,19.77 12.3926,19.8272 12.3671,19.8845 12.3243,19.9324 12.2702,19.9641 12.2162,19.9959 12.1535,20.0099 12.0911,20.0042 12.0608,20.0014 12.0304,20 12,20 9.87827,20 7.84344,19.1571 6.34315,17.6569 4.84285,16.1566 4,14.1217 4,12 4,9.87827 4.84285,7.84344 6.34315,6.34315z M12,2C9.34784,2 6.8043,3.05357 4.92893,4.92893 3.05357,6.8043 2,9.34784 2,12 2,14.6522 3.05357,17.1957 4.92893,19.0711 6.79478,20.9369 9.32205,21.9893 11.9596,21.9999 12.4214,22.0319 12.8826,21.9237 13.2825,21.6891 13.697,21.4458 14.025,21.0788 14.2202,20.6395 14.4154,20.2003 14.4681,19.7109 14.3709,19.2402 14.2737,18.7695 14.0314,18.341 13.6781,18.0151 13.6192,17.9607 13.554,17.9137 13.4839,17.8749 13.2886,17.7669 13.1351,17.5968 13.0477,17.3915 12.9603,17.1862 12.9441,16.9576 13.0015,16.7421 13.059,16.5265 13.1869,16.3364 13.3649,16.2019 13.543,16.0674 13.7608,15.9963 13.9839,15.9999L14,16 16.5,16C17.923,16 19.3084,15.4978 20.3463,14.5755 21.3884,13.6494 22,12.3657 22,11 22,5.92222 17.4083,2 12,2z M8.5,8.5C7.96957,8.5 7.46086,8.71071 7.08579,9.08579 6.71071,9.46086 6.5,9.96957 6.5,10.5 6.5,11.0304 6.71071,11.5391 7.08579,11.9142 7.46086,12.2893 7.96957,12.5 8.5,12.5 9.03043,12.5 9.53914,12.2893 9.91421,11.9142 10.2893,11.5391 10.5,11.0304 10.5,10.5 10.5,9.96957 10.2893,9.46086 9.91421,9.08579 9.53914,8.71071 9.03043,8.5 8.5,8.5z M11.0858,6.08579C11.4609,5.71071 11.9696,5.5 12.5,5.5 13.0304,5.5 13.5391,5.71071 13.9142,6.08579 14.2893,6.46086 14.5,6.96957 14.5,7.5 14.5,8.03043 14.2893,8.53914 13.9142,8.91421 13.5391,9.28929 13.0304,9.5 12.5,9.5 11.9696,9.5 11.4609,9.28929 11.0858,8.91421 10.7107,8.53914 10.5,8.03043 10.5,7.5 10.5,6.96957 10.7107,6.46086 11.0858,6.08579z M16.5,8.5C15.9696,8.5 15.4609,8.71071 15.0858,9.08579 14.7107,9.46086 14.5,9.96957 14.5,10.5 14.5,11.0304 14.7107,11.5391 15.0858,11.9142 15.4609,12.2893 15.9696,12.5 16.5,12.5 17.0304,12.5 17.5391,12.2893 17.9142,11.9142 18.2893,11.5391 18.5,11.0304 18.5,10.5 18.5,9.96957 18.2893,9.46086 17.9142,9.08579 17.5391,8.71071 17.0304,8.5 16.5,8.5z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Border Name="BorderStrokeSelectionDelete" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave" MouseUp="BorderStrokeSelectionDelete_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dc2626" Geometry="F0 M24,24z M0,0z M15.4142,2.58579C15.0391,2.21071,14.5304,2,14,2L10,2 9.85,2.005C9.34685,2.04284 8.87659,2.26947 8.5335,2.63945 8.19041,3.00943 7.99984,3.49542 8,4 8.00028,4.25488 8.09788,4.50003 8.27285,4.68537 8.44782,4.8707 8.68695,4.98223 8.94139,4.99717 9.19584,5.01211 9.44638,4.92933 9.64183,4.76574 9.83729,4.60214 9.9629,4.3701 9.993,4.117L10,4 14,4 14.007,4.117C14.0371,4.3701 14.1627,4.60214 14.3582,4.76574 14.5536,4.92933 14.8042,5.01211 15.0586,4.99717 15.313,4.98223 15.5522,4.8707 15.7272,4.68537 15.9021,4.50003 15.9997,4.25488 16,4 16,3.46957 15.7893,2.96086 15.4142,2.58579z M20.6855,6.27285C20.5001,6.09788,20.255,6.00028,20.0001,6L4.00011,6 3.88311,6.007C3.63002,6.0371 3.39797,6.16271 3.23438,6.35817 3.07079,6.55362 2.988,6.80416 3.00294,7.05861 3.01788,7.31305 3.12941,7.55218 3.31474,7.72715 3.50008,7.90212 3.74523,7.99972 4.00011,8L4.08011,8 5.00311,19.083 5.00811,19.25C5.09611,20.751,6.40211,22,8.00011,22L16.0001,22 16.1761,21.995C16.94,21.9501 17.6579,21.615 18.1828,21.0583 18.7078,20.5015 19.0002,19.7652 19.0001,19L19.9191,8 20.0001,8 20.1171,7.993C20.3702,7.9629 20.6023,7.83729 20.7658,7.64183 20.9294,7.44638 21.0122,7.19584 20.9973,6.94139 20.9823,6.68695 20.8708,6.44782 20.6855,6.27285z M9.81412,11.0166C10.0537,10.9714,10.3016,11.0153,10.5111,11.14L10.6131,11.21 10.7071,11.293 12.0001,12.585 13.2931,11.293C13.4731,11.1137 13.7145,11.0095 13.9685,11.0018 14.2224,10.994 14.4698,11.0832 14.6604,11.2512 14.851,11.4193 14.9704,11.6536 14.9945,11.9065 15.0186,12.1594 14.9455,12.412 14.7901,12.613L14.7071,12.707 13.4151,14 14.7071,15.293C14.8865,15.473 14.9906,15.7144 14.9983,15.9684 15.0061,16.2223 14.9169,16.4697 14.7489,16.6603 14.5808,16.8508 14.3466,16.9703 14.0936,16.9944 13.8407,17.0185 13.5881,16.9454 13.3871,16.79L13.2931,16.707 12.0001,15.415 10.7071,16.707C10.5272,16.8863 10.2857,16.9905 10.0317,16.9982 9.77778,17.006 9.5304,16.9168 9.33983,16.7488 9.14927,16.5807 9.02981,16.3464 9.00571,16.0935 8.98162,15.8406 9.0547,15.588 9.21011,15.387L9.29311,15.293 10.5851,14 9.29311,12.707C9.12055,12.5347 9.01687,12.3054 9.00157,12.062 8.98628,11.8187 9.06042,11.5781 9.21006,11.3856 9.3597,11.1931 9.57452,11.0619 9.81412,11.0166z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
<Line X1="0" X2="0" Y1="0" Y2="47" Height="47" Margin="2,-2" StrokeThickness="1" Stroke="#66a1a1aa" />
<Border Name="BorderStrokeMoreMenuButton" Background="Transparent"
MouseDown="BorderStrokeSelectionToolButton_MouseDown" MouseLeave="BorderStrokeSelectionToolButton_MouseLeave"
MouseUp="BorderStrokeMoreMenuButton_MouseUp">
<Border Padding="7,0" Margin="3" CornerRadius="4">
<ui:SimpleStackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="4" Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" Geometry="F0 M24,24z M0,0z M3.58579,10.5858C3.96086,10.2107 4.46957,10 5,10 5.53043,10 6.03914,10.2107 6.41421,10.5858 6.78929,10.9609 7,11.4696 7,12 7,12.5304 6.78929,13.0391 6.41421,13.4142 6.03914,13.7893 5.53043,14 5,14 4.46957,14 3.96086,13.7893 3.58579,13.4142 3.21071,13.0391 3,12.5304 3,12 3,11.4696 3.21071,10.9609 3.58579,10.5858z M10.5858,10.5858C10.9609,10.2107 11.4696,10 12,10 12.5304,10 13.0391,10.2107 13.4142,10.5858 13.7893,10.9609 14,11.4696 14,12 14,12.5304 13.7893,13.0391 13.4142,13.4142 13.0391,13.7893 12.5304,14 12,14 11.4696,14 10.9609,13.7893 10.5858,13.4142 10.2107,13.0391 10,12.5304 10,12 10,11.4696 10.2107,10.9609 10.5858,10.5858z M19,10C18.4696,10 17.9609,10.2107 17.5858,10.5858 17.2107,10.9609 17,11.4696 17,12 17,12.5304 17.2107,13.0391 17.5858,13.4142 17.9609,13.7893 18.4696,14 19,14 19.5304,14 20.0391,13.7893 20.4142,13.4142 20.7893,13.0391 21,12.5304 21,12 21,11.4696 20.7893,10.9609 20.4142,10.5858 20.0391,10.2107 19.5304,10 19,10z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
</Border>
</ui:SimpleStackPanel>
</Border>
</Border>
</Grid>
<Grid Background="Transparent" Name="GridEraserOverlay" Visibility="Collapsed" IsHitTestVisible="True">
<Border Loaded="EraserOverlay_Loaded" Background="Transparent" ForceCursor="True" Cursor="Arrow" />
<helpers:DrawingVisualCanvas IsHitTestVisible="False" x:Name="EraserOverlay_DrawingVisual" />
</Grid>
<Grid Name="ShapeDrawingOverlay">
<inkCanvas:ShapeDrawingLayer x:Name="ShapeDrawingV2Layer" />
</Grid>
<!--// BlackBoard 界面 //-->
<Grid Name="BlackboardUIGridForInkReplay">
<Grid Visibility="{Binding ElementName=GridBackgroundCoverHolder, Path=Visibility}">
<!-- 左下角 -->
<Viewbox x:Name="ViewboxBlackboardLeftSide" Margin="3,0,0,0" Height="55" HorizontalAlignment="Left"
VerticalAlignment="Bottom">
<Viewbox.LayoutTransform>
<ScaleTransform x:Name="ViewboxBlackboardLeftSideScaleTransform" ScaleX="1" ScaleY="1" />
</Viewbox.LayoutTransform>
<Grid Name="BlackboardLeftSide" Visibility="Visible" Margin="0,0,0,3" Height="50"
HorizontalAlignment="Center" VerticalAlignment="Bottom">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="5">
<Border CornerRadius="5,5,5,5" Background="#f4f4f5" Margin="0,0,0,0">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="60" Height="50" Name="BtnWhiteBoardSwitchPreviousL"
IsEnabled="{Binding ElementName=BtnWhiteBoardSwitchPrevious, Path=IsEnabled}"
BorderThickness="1,1,0,1" BorderBrush="#a1a1aa"
MouseUp="BtnWhiteBoardSwitchPrevious_Click" CornerRadius="5,0,0,5"
Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
x:Name="BtnLeftWhiteBoardSwitchPreviousGeometry"
Geometry="F1 M24,24z M0,0z M7.40091,10.456L14.5033,3.35357 12.3198,1.17001 1.48978,12 12.3198,22.83 14.5033,20.6465 7.40089,13.544 22.5102,13.544 22.5102,10.456 7.40091,10.456z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="上一页" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12"
x:Name="BtnLeftWhiteBoardSwitchPreviousLabel" />
</Grid>
</Border>
<Border Width="75" Height="50" MouseUp="BtnWhiteBoardPageIndex_Click"
Name="BtnLeftPageListWB"
BorderThickness="1,1,1,1" BorderBrush="#a1a1aa" Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<TextBlock HorizontalAlignment="Center" Text="1/1" Name="BtnLeftPageListWBTextCount"
Margin="0,-1,0,0" FontSize="17" FontWeight="Bold"
TextAlignment="Center" />
<TextBlock Text="页面" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Grid Width="0" Margin="0,0,0,5">
<Border ClipToBounds="True" Name="BoardBorderLeftPageListView"
Margin="-134,-465,-60,50"
CornerRadius="8"
Background="#fafafa" Opacity="1" BorderBrush="#a1a1aa"
BorderThickness="1">
<ui:ScrollViewerEx Name="BlackBoardLeftSidePageListScrollViewer"
Height="460"
VerticalScrollBarVisibility="Hidden"
ForceUseSmoothScroll="True">
<ListView ScrollViewer.CanContentScroll="False" SelectionMode="Single"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
Name="BlackBoardLeftSidePageListView">
<ListView.ItemTemplate>
<DataTemplate>
<ui:SimpleStackPanel Orientation="Vertical"
MouseUp="BlackBoardLeftSidePageListView_OnMouseUp">
<Border Margin="0,4" Width="160" BorderBrush="#a1a1aa"
BorderThickness="1">
<Grid>
<Viewbox Width="160">
<InkCanvas EditingMode="None"
Background="{Binding ElementName=GridBackgroundCover, Path=Background}"
Strokes="{Binding Strokes}"
Width="{Binding ElementName=inkCanvas, Path=ActualWidth}"
Height="{Binding ElementName=inkCanvas, Path=ActualHeight}">
</InkCanvas>
</Viewbox>
<Border Margin="4" Width="36" Height="20"
CornerRadius="3" HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#cc09090b">
<TextBlock FontSize="14"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontFamily="Consolas"
Foreground="White"
Text="{Binding Index}">
</TextBlock>
</Border>
</Grid>
</Border>
</ui:SimpleStackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ui:ScrollViewerEx>
</Border>
</Grid>
<Border Width="60" Height="50" MouseUp="BtnWhiteBoardSwitchNext_Click"
CornerRadius="0,5,5,0" Name="BtnWhiteBoardSwitchNextL"
BorderThickness="0,1,1,1" BorderBrush="#a1a1aa"
Background="#f4f4f5" Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
x:Name="BtnLeftWhiteBoardSwitchNextGeometry"
Geometry="F1 M24,24z M0,0z M16.5991,10.456L9.49667,3.35357 11.6802,1.17001 22.5102,12 11.6802,22.83 9.49667,20.6465 16.5991,13.544 1.48978,13.544 1.48978,10.456 16.5991,10.456z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="下一页" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12"
x:Name="BtnLeftWhiteBoardSwitchNextLabel" />
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
<Border Width="60" Height="50" Name="BtnWhiteboardAddLeft"
BorderThickness="1" BorderBrush="#a1a1aa"
MouseUp="BtnWhiteBoardAdd_Click" CornerRadius="5" Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" x:Name="BtnWhiteboardAddGeometryLeft"
Geometry="F0 M24,24z M0,0z M7.39778,13.723L10.7693,13.723 10.7693,10.3514 13.2307,10.3514 13.2307,13.723 16.6022,13.723 16.6022,16.1843 13.2307,16.1843 13.2307,19.5559 10.7693,19.5559 10.7693,16.1843 7.39778,16.1843 7.39778,13.723z M3.1391,1.17001L3.1391,22.83 20.8609,22.83 20.8609,6.66948 15.3614,1.17002 3.1391,1.17001z M12.9846,3.13911L5.10819,3.1391 5.10819,20.8609 18.8918,20.8609 18.8918,9.04638 12.9846,9.04638 12.9846,3.13911z M18.484,7.07729L14.9536,3.54692 14.9536,7.07729 18.484,7.07729z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="新页面" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" Name="BtnWhiteboardAddTextBlockLeft" />
</Grid>
</Border>
</ui:SimpleStackPanel>
</Grid>
</Viewbox>
<!-- 中间 -->
<Viewbox Margin="3,0,0,0" Height="56" HorizontalAlignment="Center"
VerticalAlignment="Bottom">
<Viewbox.LayoutTransform>
<ScaleTransform x:Name="ViewboxBlackboardCenterSideScaleTransform" ScaleX="1" ScaleY="1" />
</Viewbox.LayoutTransform>
<Grid x:Name="BlackboardCenterSide" Visibility="Visible" Margin="0,0,0,3" Height="50"
HorizontalAlignment="Center" VerticalAlignment="Bottom">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border CornerRadius="5,5,5,5" Background="#f4f4f5" Margin="0,0,5,0">
<Grid>
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="60" Height="50" MouseDown="BoardSideBtnMouseDown" MouseLeave="BoardSideBtnMouseLeave" Name="BoardGesture"
MouseUp="BoardGestureMouseUp" CornerRadius="5,0,0,5"
Background="#f4f4f5"
Opacity="1" BorderThickness="1,1,0,1" BorderBrush="#a1a1aa">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="BoardGestureGeometry"
Brush="#18181b"
Geometry="F0 M24,24z M0,0z M7.82154,10.0753L7.82154,3.74613C7.82154,3.06603 8.08946,2.40655 8.57377,1.92224 9.05808,1.43793 9.70726,1.17001 10.3977,1.17001 11.0881,1.17001 11.7372,1.43793 12.2216,1.92224 12.7059,2.40655 12.9738,3.05573 12.9738,3.74613L12.9738,6.37308C13.1415,6.33947 13.3139,6.32225 13.489,6.32225 14.1794,6.32225 14.8286,6.59016 15.3129,7.07447 15.4484,7.21001 15.567,7.35845 15.6675,7.5171 15.9551,7.40916 16.2634,7.35269 16.5803,7.35269 17.2707,7.35269 17.9199,7.62061 18.4042,8.10492 18.5461,8.24683 18.6695,8.4029 18.7729,8.57001 19.6856,8.26338 20.7674,8.45871 21.4647,9.15599 21.949,9.6403 22.2169,10.2998 22.2169,10.9799L22.2169,15.6169C22.2169,17.5438 21.4647,19.3574 20.1045,20.7176 18.7443,22.0778 16.9307,22.83 15.0038,22.83L13.149,22.83 13.1799,22.8094 12.8398,22.8094C11.7682,22.7579 10.7068,22.4694 9.75878,21.9541 8.70773,21.3874 7.81124,20.563 7.15175,19.5738L6.94566,19.2647C6.60562,18.7494 5.49273,16.8019 3.52458,13.3087 3.19484,12.7213 3.1021,12.0412 3.27727,11.3818 3.45245,10.7326 3.86463,10.1761 4.44168,9.83608 5.00842,9.49604 5.66791,9.35177 6.31709,9.43421 6.86548,9.50385 7.39181,9.7279 7.82154,10.0753z M10.037,3.38547C10.1297,3.28243 10.2637,3.23091 10.3977,3.23091 10.5316,3.23091 10.6656,3.29273 10.7583,3.38547 10.8614,3.47821 10.9129,3.61217 10.9129,3.74613L10.9129,11.4745C10.9129,12.0412 11.3766,12.5049 11.9433,12.5049 12.5101,12.5049 12.9738,12.0412 12.9738,11.4745L12.9738,8.89836C12.9738,8.7644 13.0356,8.63045 13.1283,8.53771 13.2211,8.43466 13.355,8.38314 13.489,8.38314 13.623,8.38314 13.7569,8.44497 13.8497,8.53771 13.9527,8.63045 14.0042,8.7644 14.0042,8.89836L14.0042,11.4745C14.0042,12.0412 14.4679,12.5049 15.0347,12.5049 15.6014,12.5049 16.0651,12.0412 16.0651,11.4745L16.0651,9.92881C16.0651,9.79485 16.1269,9.66089 16.2197,9.56815 16.3124,9.46511 16.4464,9.41359 16.5803,9.41359 16.7143,9.41359 16.8483,9.47541 16.941,9.56815 17.044,9.66089 17.0956,9.79485 17.0956,9.92881L17.0956,10.5869C17.0752,10.7163 17.0646,10.8477 17.0646,10.9799 17.0646,11.0661 17.0754,11.1499 17.0956,11.2301L17.0956,11.4745C17.0956,12.0412 17.5593,12.5049 18.126,12.5049 18.6928,12.5049 19.1565,12.0412 19.1565,11.4745L19.1565,10.8128C19.1834,10.7399 19.2266,10.6727 19.2801,10.6192 19.4759,10.4234 19.8159,10.4234 20.0117,10.6192 20.1148,10.712 20.1663,10.8459 20.1663,10.9799L20.1663,15.6169C20.1663,16.9977 19.6408,18.296 18.6618,19.2647 17.6829,20.2333 16.3949,20.7691 15.0141,20.7691L13.1593,20.7691C12.3143,20.7691 11.4796,20.5527 10.7274,20.1509 9.98548,19.749 9.3363,19.1616 8.8726,18.4506L8.66651,18.1415C8.35737,17.6675 7.23419,15.7096 5.31756,12.2988 5.24543,12.1752 5.23512,12.0412 5.26604,11.9073 5.30725,11.7733 5.38969,11.6703 5.50304,11.5981 5.66791,11.4951 5.874,11.4539 6.06978,11.4745 6.26557,11.5054 6.45105,11.5878 6.59531,11.7321L8.11007,13.2469C8.49419,13.631 9.10425,13.648 9.50833,13.2978 9.73651,13.1084 9.88244,12.8229 9.88244,12.5049L9.88244,3.74613C9.88244,3.61217,9.94426,3.47821,10.037,3.38547z M2.99905,6.31195L1.78313,4.65293 2.61779,4.04497C3.46275,3.4267,4.37985,2.89087,5.33817,2.46838L6.27587,2.0459 7.12084,3.93162 6.18313,4.3541C5.35878,4.72506,4.56533,5.17846,3.83372,5.71429L2.99905,6.32225 2.99905,6.31195z M18.2806,5.20935L19.1565,5.75549 20.259,4.01404 19.3831,3.4679C18.1157,2.67446,16.7452,2.0768,15.3026,1.68523L14.303,1.41731 13.7672,3.40607 14.7667,3.67399C16.0033,4.00373,17.1883,4.51895,18.2806,5.20935z" />
<GeometryDrawing x:Name="BoardGestureGeometry2"
Brush="#18181b"
Geometry="F0 M24,24z M0,0z " />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="手势" Foreground="#18181b" VerticalAlignment="Bottom"
Name="BoardGestureLabel"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Grid Width="0" Margin="0,0,0,5">
<Border ClipToBounds="True" Name="BoardTwoFingerGestureBorder"
Margin="-115,-161,-55,50"
CornerRadius="8"
Background="#fafafa" Opacity="1" BorderBrush="#2563eb"
BorderThickness="1">
<ui:SimpleStackPanel Margin="0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="8,8,0,0"
Background="#2563eb" Margin="-1,-1,-1,1">
<Canvas Height="36" ClipToBounds="True">
<TextBlock Text="手势选项" Canvas.Left="12" Foreground="White"
Padding="0,7"
FontSize="17" FontWeight="Bold"
TextAlignment="Center" />
</Canvas>
</Border>
<Viewbox Margin="8,0,8,0">
<ui:SimpleStackPanel Margin="0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Margin="0,3,0,0">
<Image Source="/Resources/new-icons/multi-touch.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" />
<Label Content="多指书写" FontSize="10"
VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
Name="BoardToggleSwitchEnableMultiTouchMode"
FontFamily="Microsoft YaHei UI"
IsOn="False"
OnContent=""
OffContent=""
Toggled="ToggleSwitchEnableMultiTouchMode_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Opacity="{Binding ElementName=TwoFingerGestureSimpleStackPanel, Path=Opacity}"
Orientation="Horizontal" Spacing="4"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/hand-move.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" />
<Label Content="双指移动" FontSize="10"
VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
Name="BoardToggleSwitchEnableTwoFingerTranslate"
FontFamily="Microsoft YaHei UI"
IsOn="False"
OnContent=""
OffContent=""
Toggled="ToggleSwitchEnableTwoFingerTranslate_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Opacity="{Binding ElementName=TwoFingerGestureSimpleStackPanel, Path=Opacity}"
Orientation="Horizontal" Spacing="4"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/zoom.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" />
<Label Content="双指缩放" FontSize="10"
VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
FontFamily="Microsoft YaHei UI"
IsOn="False" OnContent="" OffContent=""
Name="BoardToggleSwitchEnableTwoFingerZoom"
Toggled="ToggleSwitchEnableTwoFingerZoom_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Opacity="{Binding ElementName=TwoFingerGestureSimpleStackPanel, Path=Opacity}"
Orientation="Horizontal" Spacing="4"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/rotate.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" />
<Label Content="双指旋转" FontSize="10"
VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
FontFamily="Microsoft YaHei UI"
IsOn="False" OnContent="" OffContent=""
Name="BoardToggleSwitchEnableTwoFingerRotation"
Toggled="ToggleSwitchEnableTwoFingerRotation_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Viewbox>
</ui:SimpleStackPanel>
</Border>
</Grid>
<Border Width="60" Height="50" Name="BoardBackground" MouseDown="BoardSideBtnMouseDown" MouseLeave="BoardSideBtnMouseLeave"
MouseUp="BoardChangeBackgroundColorBtn_MouseUp" CornerRadius="0,5,5,0"
Background="#f4f4f5" Opacity="1" BorderThickness="0,1,1,1"
BorderBrush="#a1a1aa">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M4.71815,3.98345C6.64142,2.23541 9.19629,1.17001 12,1.17001 17.9812,1.17001 22.83,6.01877 22.83,12 22.83,17.9813 17.9812,22.83 12,22.83 11.6262,22.83 11.2568,22.8111 10.8927,22.7741 5.8167,22.2586 1.77699,18.2377 1.2325,13.1703 1.22536,13.1039 1.21882,13.0373 1.21289,12.9705 1.20871,12.9234 1.20483,12.8762 1.20125,12.8289 1.18054,12.5553 1.17,12.2789 1.17,12 1.17,9.41057 2.07878,7.03339 3.59479,5.17001 3.9391,4.74681 4.31473,4.35011 4.71815,3.98345z M12,20.83C16.8767,20.83 20.83,16.8767 20.83,12 20.83,7.12334 16.8767,3.17001 12,3.17001L12,20.83z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="背景" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Grid Width="0" Margin="0,0,0,5">
<Border ClipToBounds="True" Name="BoardBackgroundPopup"
Margin="-134,-278,-51,50"
CornerRadius="8"
Background="#fafafa" Opacity="1" BorderBrush="#2563eb"
BorderThickness="1">
<ui:SimpleStackPanel Margin="0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="8,8,0,0"
Background="#2563eb" Margin="-1,-1,-1,1">
<Canvas Height="36" ClipToBounds="True">
<TextBlock Text="背景选项" Canvas.Left="12" Foreground="White"
Padding="0,7"
FontSize="17" FontWeight="Bold"
TextAlignment="Center" />
</Canvas>
</Border>
<Viewbox Width="182" HorizontalAlignment="Center">
<StackPanel Orientation="Vertical">
<ui:SimpleStackPanel Margin="12,8">
<TextBlock FontSize="12" Foreground="#18181b" Text="背景颜色" />
<ui:SimpleStackPanel Spacing="4" Orientation="Horizontal"
Margin="0,5,0,0">
<Border Width="46" Height="46" CornerRadius="4"
Background="#27272a" BorderBrush="#18181b"
BorderThickness="1" MouseUp="BoardBackgroundColor1Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14">
<CheckBox IsHitTestVisible="False" Name="BoardBackgroundColor1Checkbox"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="White" Text="灰黑" />
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="#172a25" BorderBrush="#052e16"
BorderThickness="1" MouseUp="BoardBackgroundColor2Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14" Name="BoardBackgroundColor2Checkbox"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="White" Text="黑板绿" />
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="#eaebed" BorderBrush="#a1a1aa"
BorderThickness="1" MouseUp="BoardBackgroundColor3Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14" Name="BoardBackgroundColor3Checkbox"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="#18181b" Text="白" />
</Canvas>
</Border>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Spacing="4" Orientation="Horizontal"
Margin="0,5,0,0">
<Border Width="46" Height="46" CornerRadius="4"
Background="#0f172a" BorderBrush="#020617"
BorderThickness="1" MouseUp="BoardBackgroundColor4Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4" Name="BoardBackgroundColor4Checkbox"
Width="14" Height="14" Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="White" Text="蓝黑" />
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="#B5E6B5" BorderBrush="#059669"
BorderThickness="1" MouseUp="BoardBackgroundColor5Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14" Name="BoardBackgroundColor5Checkbox"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="#18181b" Text="护眼绿" />
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="Black" BorderBrush="#52525b"
BorderThickness="1" MouseUp="BoardBackgroundColor6Border_MouseUp">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14" Name="BoardBackgroundColor6Checkbox"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="White" Text="纯黑" />
</Canvas>
</Border>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="12,2,12,0">
<TextBlock FontSize="12" Foreground="#18181b" Text="稿纸格式" />
<ui:SimpleStackPanel Spacing="4" Orientation="Horizontal"
Margin="0,5,0,0">
<Border Width="46" Height="46" CornerRadius="4"
Background="#eaebed" BorderBrush="#a1a1aa"
BorderThickness="1">
<Canvas>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<TextBlock Canvas.Bottom="4" Canvas.Left="4"
FontSize="10" Foreground="#18181b" Text="无" />
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="#eaebed" BorderBrush="#a1a1aa"
BorderThickness="1">
<Canvas>
<Image Width="44" Height="44">
<Image.Clip>
<RectangleGeometry Rect="0,0,44,44"
RadiusX="5" RadiusY="5" />
</Image.Clip>
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V46 H46 V0 H0 Z">
<GeometryDrawing
Brush="#22000000"
Geometry="F0 M46,46z M0,0z M4,3C4,3.55225 3.55225,4 3,4 2.44775,4 2,3.55225 2,3 2,2.44775 2.44775,2 3,2 3.13818,2 3.27002,2.02832 3.38965,2.0791 3.66357,2.19531 3.875,2.42969 3.95947,2.71826 3.96777,2.74609 3.97461,2.7749 3.98047,2.80371L3.99072,2.86328C3.99658,2.9082,4,2.95361,4,3z M9,3C9,3.55225 8.55225,4 8,4 7.7373,4 7.49805,3.89844 7.31934,3.73291 7.12305,3.55029 7,3.28955 7,3 7,2.44775 7.44775,2 8,2 8.37402,2 8.7002,2.20557 8.87207,2.50977 8.95361,2.65479 9,2.82178 9,3z M13.7422,3.67041C13.9023,3.49316 14,3.25781 14,3 14,2.44775 13.5522,2 13,2 12.4478,2 12,2.44775 12,3 12,3.55225 12.4478,4 13,4 13.2944,4 13.5591,3.87256 13.7422,3.67041z M19,3C19,3.55225 18.5522,4 18,4 17.4478,4 17,3.55225 17,3 17,2.44775 17.4478,2 18,2 18.5522,2 19,2.44775 19,3z M23,4C23.5522,4 24,3.55225 24,3 24,2.44775 23.5522,2 23,2 22.4478,2 22,2.44775 22,3 22,3.55225 22.4478,4 23,4z M29,3C29,3.55225 28.5522,4 28,4 27.4478,4 27,3.55225 27,3 27,2.44775 27.4478,2 28,2 28.5522,2 29,2.44775 29,3z M33,4C33.5522,4 34,3.55225 34,3 34,2.44775 33.5522,2 33,2 32.4478,2 32,2.44775 32,3 32,3.25781 32.0977,3.49268 32.2578,3.66992 32.4409,3.87256 32.7056,4 33,4z M39,3C39,3.28906 38.8774,3.5498 38.6812,3.73242 38.6035,3.80469 38.5146,3.86426 38.417,3.90918 38.29,3.96729 38.1489,4 38,4 37.4478,4 37,3.55225 37,3 37,2.9209 37.0093,2.84424 37.0269,2.77051 37.0488,2.67627 37.084,2.58789 37.1304,2.50635 37.2139,2.35986 37.333,2.23633 37.4761,2.14795 37.6284,2.0542 37.8081,2 38,2 38.5522,2 39,2.44775 39,3z M43,4C43.5522,4 44,3.55225 44,3 44,2.44775 43.5522,2 43,2 42.6221,2 42.2935,2.20947 42.1235,2.51855 42.085,2.58887 42.0547,2.66406 42.0337,2.74316 42.0117,2.8252 42,2.91113 42,3 42,3.55225 42.4478,4 43,4z M4,8C4,8.55225 3.55225,9 3,9 2.82715,9 2.66455,8.95605 2.52295,8.87891 2.40479,8.81494 2.30127,8.72754 2.21777,8.62305 2.08154,8.45215 2,8.23535 2,8 2,7.79932 2.05908,7.61279 2.16064,7.45605 2.33887,7.18164 2.64844,7 3,7 3.55225,7 4,7.44775 4,8z M8,9C8.55225,9 9,8.55225 9,8 9,7.44775 8.55225,7 8,7 7.44775,7 7,7.44775 7,8 7,8.55225 7.44775,9 8,9z M14,8C14,8.55225 13.5522,9 13,9 12.4478,9 12,8.55225 12,8 12,7.44775 12.4478,7 13,7 13.5522,7 14,7.44775 14,8z M18,9C18.5522,9 19,8.55225 19,8 19,7.74463 18.9043,7.51172 18.7466,7.33496 18.5635,7.12939 18.2969,7 18,7 17.7402,7 17.5034,7.09912 17.3257,7.26172 17.2256,7.35352 17.144,7.46484 17.0874,7.59033 17.0312,7.71533 17,7.854 17,8 17,8.55225 17.4478,9 18,9z M24,8C24,8.55225 23.5522,9 23,9 22.4478,9 22,8.55225 22,8 22,7.44775 22.4478,7 23,7 23.5522,7 24,7.44775 24,8z M28,9C28.5522,9 29,8.55225 29,8 29,7.70703 28.874,7.44336 28.6733,7.26025 28.4956,7.09863 28.2593,7 28,7 27.8413,7 27.6914,7.03711 27.5586,7.10254 27.4448,7.15869 27.3433,7.23584 27.2588,7.32861 27.0981,7.50635 27,7.7417 27,8 27,8.55225 27.4478,9 28,9z M34,8C34,8.55225 33.5522,9 33,9 32.4478,9 32,8.55225 32,8 32,7.44775 32.4478,7 33,7 33.5522,7 34,7.44775 34,8z M38,9C38.5522,9 39,8.55225 39,8 39,7.44775 38.5522,7 38,7 37.4478,7 37,7.44775 37,8 37,8.55225 37.4478,9 38,9z M43.9526,8.30566C43.9155,8.42188 43.8574,8.52832 43.7832,8.62158 43.6001,8.85205 43.3174,9 43,9 42.4478,9 42,8.55225 42,8 42,7.44775 42.4478,7 43,7 43.1792,7 43.3477,7.04736 43.4932,7.12988 43.6338,7.20947 43.7534,7.32275 43.8408,7.4585 43.9414,7.61426 44,7.80029 44,8 44,8.04932 43.9966,8.09814 43.9897,8.14551 43.9814,8.20068 43.9692,8.25391 43.9526,8.30566z M3,14C3.55225,14 4,13.5522 4,13 4,12.4478 3.55225,12 3,12 2.8042,12 2.62158,12.0562 2.46729,12.1533 2.30273,12.2573 2.17041,12.4077 2.08936,12.5859 2.03223,12.7124 2,12.8525 2,13 2,13.5522 2.44775,14 3,14z M9,13C9,13.5522 8.55225,14 8,14 7.44775,14 7,13.5522 7,13 7,12.4478 7.44775,12 8,12 8.55225,12 9,12.4478 9,13z M13,14C13.5522,14 14,13.5522 14,13 14,12.4478 13.5522,12 13,12 12.4478,12 12,12.4478 12,13 12,13.5522 12.4478,14 13,14z M19,13C19,13.5522 18.5522,14 18,14 17.4478,14 17,13.5522 17,13 17,12.4478 17.4478,12 18,12 18.5522,12 19,12.4478 19,13z M23,14C23.5522,14 24,13.5522 24,13 24,12.4478 23.5522,12 23,12 22.4478,12 22,12.4478 22,13 22,13.5522 22.4478,14 23,14z M29,13C29,13.5522 28.5522,14 28,14 27.4478,14 27,13.5522 27,13 27,12.4478 27.4478,12 28,12 28.5522,12 29,12.4478 29,13z M33,14C33.5522,14 34,13.5522 34,13 34,12.4478 33.5522,12 33,12 32.4478,12 32,12.4478 32,13 32,13.5522 32.4478,14 33,14z M39,13C39,13.5522 38.5522,14 38,14 37.4478,14 37,13.5522 37,13 37,12.4478 37.4478,12 38,12 38.5522,12 39,12.4478 39,13z M43,14C43.5522,14 44,13.5522 44,13 44,12.8486 43.9663,12.7051 43.9062,12.5767 43.7466,12.2358 43.4009,12 43,12 42.4478,12 42,12.4478 42,13 42,13.5522 42.4478,14 43,14z M4,18C4,18.5522 3.55225,19 3,19 2.74121,19 2.50537,18.9019 2.32812,18.7407 2.12646,18.5576 2,18.2935 2,18 2,17.4478 2.44775,17 3,17 3.55225,17 4,17.4478 4,18z M8.81152,18.5845C8.93018,18.4199 9,18.2183 9,18 9,17.4478 8.55225,17 8,17 7.44775,17 7,17.4478 7,18 7,18.5522 7.44775,19 8,19 8.13428,19 8.26221,18.9736 8.37891,18.9258 8.55322,18.854 8.70264,18.7349 8.81152,18.5845z M14,18C14,18.5522 13.5522,19 13,19 12.771,19 12.5601,18.9229 12.3916,18.7935 12.1533,18.6108 12,18.3232 12,18 12,17.4478 12.4478,17 13,17 13.5522,17 14,17.4478 14,18z M18,19C18.5522,19 19,18.5522 19,18 19,17.6138 18.7812,17.2788 18.4609,17.1123 18.3228,17.0405 18.166,17 18,17 17.4478,17 17,17.4478 17,18 17,18.5522 17.4478,19 18,19z M24,18C24,18.1211 23.9785,18.2373 23.939,18.3447 23.8799,18.5059 23.7803,18.6479 23.6523,18.7578 23.5801,18.8198 23.499,18.8721 23.4111,18.9116 23.2856,18.9683 23.1465,19 23,19 22.7515,19 22.5239,18.9092 22.3491,18.7588 22.2363,18.6621 22.1455,18.5405 22.0845,18.4028 22.0649,18.3579 22.0483,18.3115 22.0352,18.2637 22.0122,18.1797 22,18.0913 22,18 22,17.4478 22.4478,17 23,17 23.5522,17 24,17.4478 24,18z M28,19C28.5522,19 29,18.5522 29,18 29,17.4478 28.5522,17 28,17 27.5957,17 27.2476,17.2397 27.0898,17.585 27.0322,17.7114 27,17.8521 27,18 27,18.5522 27.4478,19 28,19z M33.6108,18.7915C33.4419,18.9224 33.23,19 33,19 32.4478,19 32,18.5522 32,18 32,17.4478 32.4478,17 33,17 33.5522,17 34,17.4478 34,18 34,18.0776 33.9912,18.1528 33.9746,18.2251 33.9507,18.3291 33.9111,18.4268 33.8574,18.5151L33.8418,18.54 33.8125,18.583 33.7856,18.6191 33.751,18.6602C33.7085,18.7085,33.6616,18.7524,33.6108,18.7915z M38,19C38.5522,19 39,18.5522 39,18 39,17.4478 38.5522,17 38,17 37.4478,17 37,17.4478 37,18 37,18.1387 37.0283,18.271 37.0796,18.3911 37.0923,18.4214 37.1064,18.4507 37.1221,18.479 37.1421,18.5151 37.1641,18.5503 37.188,18.5835 37.2983,18.7368 37.4507,18.8574 37.6284,18.9287 37.7432,18.9746 37.8687,19 38,19z M44,18C44,18.2935 43.8735,18.5571 43.6724,18.7402 43.4946,18.9014 43.2588,19 43,19 42.4478,19 42,18.5522 42,18 42,17.4478 42.4478,17 43,17 43.5522,17 44,17.4478 44,18z M3,24C3.55225,24 4,23.5522 4,23 4,22.4478 3.55225,22 3,22 2.44775,22 2,22.4478 2,23 2,23.2617 2.10059,23.4995 2.26514,23.6777 2.44775,23.876 2.70947,24 3,24z M9,23C9,23.2368 8.91797,23.4541 8.78027,23.6255 8.59668,23.854 8.31543,24 8,24 7.44775,24 7,23.5522 7,23 7,22.4478 7.44775,22 8,22 8.55225,22 9,22.4478 9,23z M13,24C13.5522,24 14,23.5522 14,23 14,22.4478 13.5522,22 13,22 12.4478,22 12,22.4478 12,23 12,23.5522 12.4478,24 13,24z M19,23C19,23.5522 18.5522,24 18,24 17.4478,24 17,23.5522 17,23 17,22.7329 17.105,22.4897 17.2759,22.3105 17.458,22.1191 17.7148,22 18,22 18.5522,22 19,22.4478 19,23z M23.7251,23.6885C23.8955,23.5093 24,23.2666 24,23 24,22.4478 23.5522,22 23,22 22.4478,22 22,22.4478 22,23 22,23.2671 22.1045,23.5093 22.2754,23.6885 22.4575,23.8804 22.7148,24 23,24 23.2856,24 23.543,23.8804 23.7251,23.6885z M29,23C29,23.5522 28.5522,24 28,24 27.4478,24 27,23.5522 27,23 27,22.4478 27.4478,22 28,22 28.2842,22 28.5405,22.1187 28.7227,22.3086 28.8945,22.4883 29,22.7319 29,23z M33,24C33.5522,24 34,23.5522 34,23 34,22.4478 33.5522,22 33,22 32.4478,22 32,22.4478 32,23 32,23.5522 32.4478,24 33,24z M39,23C39,23.5522 38.5522,24 38,24 37.6851,24 37.4038,23.8545 37.2207,23.6265 37.1709,23.5649 37.1284,23.4976 37.0942,23.4253 37.0337,23.2964 37,23.1523 37,23 37,22.4478 37.4478,22 38,22 38.5522,22 39,22.4478 39,23z M43.7358,23.6772C43.8999,23.499 44,23.2612 44,23 44,22.4478 43.5522,22 43,22 42.4478,22 42,22.4478 42,23 42,23.5522 42.4478,24 43,24 43.291,24 43.5527,23.876 43.7358,23.6772z M4,28C4,28.5522 3.55225,29 3,29 2.44775,29 2,28.5522 2,28 2,27.4478 2.44775,27 3,27 3.55225,27 4,27.4478 4,28z M8,29C8.55225,29 9,28.5522 9,28 9,27.4478 8.55225,27 8,27 7.44775,27 7,27.4478 7,28 7,28.5522 7.44775,29 8,29z M14,28C14,28.5522 13.5522,29 13,29 12.4478,29 12,28.5522 12,28 12,27.4478 12.4478,27 13,27 13.5522,27 14,27.4478 14,28z M18,29C18.5522,29 19,28.5522 19,28 19,27.9233 18.9917,27.8486 18.9751,27.7769 18.9663,27.7373 18.9551,27.6992 18.9414,27.6621 18.9268,27.6221 18.9097,27.5835 18.8906,27.5459 18.8677,27.501 18.8413,27.4575 18.812,27.4165 18.7861,27.3804 18.7578,27.3462 18.7275,27.314 18.606,27.1846 18.4497,27.0879 18.2739,27.0381 18.2314,27.0259 18.188,27.0166 18.144,27.0103L18.0845,27.0034 18.0635,27.002C18.0425,27.0005 18.0215,27 18,27 17.9497,27 17.9004,27.0034 17.8521,27.0107 17.7642,27.0234 17.6802,27.0479 17.6016,27.082 17.5044,27.1245 17.415,27.1821 17.3364,27.252 17.1299,27.4351 17,27.7021 17,28 17,28.0806 17.0093,28.1587 17.0273,28.2339 17.0449,28.3071 17.0703,28.377 17.103,28.4429 17.165,28.5679 17.2524,28.6782 17.3584,28.7671 17.5322,28.9126 17.7559,29 18,29z M24,28C24,28.5522 23.5522,29 23,29 22.4478,29 22,28.5522 22,28 22,27.4478 22.4478,27 23,27 23.5522,27 24,27.4478 24,28z M28,29C28.2427,29 28.4653,28.9136 28.6387,28.7695 28.7012,28.7173 28.7573,28.6577 28.8057,28.5923 28.832,28.5562 28.856,28.5181 28.8779,28.4785 28.8979,28.4424 28.9155,28.4048 28.9312,28.3657 28.9756,28.2524 29,28.1289 29,28 29,27.7017 28.8691,27.4336 28.6616,27.25 28.4854,27.0942 28.2539,27 28,27 27.7148,27 27.4575,27.1196 27.2754,27.311 27.1045,27.4902 27,27.7329 27,28 27,28.5522 27.4478,29 28,29z M34,28C34,28.5522 33.5522,29 33,29 32.4478,29 32,28.5522 32,28 32,27.4478 32.4478,27 33,27 33.5522,27 34,27.4478 34,28z M38,29C38.5522,29 39,28.5522 39,28 39,27.4478 38.5522,27 38,27 37.4478,27 37,27.4478 37,28 37,28.5522 37.4478,29 38,29z M44,28C44,28.5522 43.5522,29 43,29 42.4478,29 42,28.5522 42,28 42,27.4478 42.4478,27 43,27 43.5522,27 44,27.4478 44,28z M3,34C3.22852,34 3.43896,33.9233 3.60742,33.7944 3.84619,33.6118 4,33.3237 4,33 4,32.4478 3.55225,32 3,32 2.771,32 2.55957,32.0771 2.39111,32.207 2.29346,32.2817 2.20996,32.3745 2.14551,32.48 2.104,32.5483 2.07031,32.6221 2.0459,32.7002 2.03076,32.748 2.01904,32.7974 2.01123,32.8481L2.00391,32.9087C2.00146,32.939 2,32.9692 2,33 2,33.5522 2.44775,34 3,34z M9,33C9,33.5522 8.55225,34 8,34 7.44775,34 7,33.5522 7,33 7,32.4478 7.44775,32 8,32 8.2876,32 8.54639,32.1211 8.729,32.3154 8.77783,32.3672 8.8208,32.4243 8.85742,32.4854 8.89941,32.5552 8.93311,32.6304 8.95703,32.7095 8.98486,32.8013 9,32.8989 9,33z M13,34C13.5522,34 14,33.5522 14,33 14,32.4478 13.5522,32 13,32 12.4478,32 12,32.4478 12,33 12,33.5522 12.4478,34 13,34z M18.6436,33.7651C18.4697,33.9116 18.2451,34 18,34 17.7119,34 17.4521,33.8779 17.2695,33.6831 17.1021,33.5044 17,33.2642 17,33 17,32.4478 17.4478,32 18,32 18.5522,32 19,32.4478 19,33 19,33.3071 18.8613,33.582 18.6436,33.7651z M23,34C23.5522,34 24,33.5522 24,33 24,32.6963 23.8647,32.4243 23.6509,32.2407 23.5435,32.1484 23.4165,32.0786 23.2764,32.0386L23.2197,32.0239 23.1729,32.0146C23.1167,32.0049 23.0591,32 23,32 22.751,32 22.5234,32.0908 22.3486,32.2412 22.3008,32.2822 22.2568,32.3276 22.2178,32.377 22.1812,32.4229 22.1489,32.4717 22.1211,32.5234 22.0874,32.585 22.0601,32.6504 22.04,32.7188 22.0332,32.7422 22.0273,32.7661 22.0225,32.7905L22.0107,32.856C22.0039,32.9028 22,32.9512 22,33 22,33.5522 22.4478,34 23,34z M28.7285,33.6851C28.5459,33.8789 28.2871,34 28,34 27.835,34 27.6792,33.96 27.542,33.8892 27.5132,33.8745 27.4854,33.8584 27.458,33.8408 27.4233,33.8184 27.3901,33.7939 27.3589,33.7676 27.1396,33.584 27,33.3081 27,33 27,32.4478 27.4478,32 28,32 28.5522,32 29,32.4478 29,33 29,33.2651 28.897,33.5063 28.7285,33.6851z M33,34C33.5522,34 34,33.5522 34,33 34,32.4478 33.5522,32 33,32 32.4478,32 32,32.4478 32,33 32,33.5522 32.4478,34 33,34z M39,33C39,33.5522 38.5522,34 38,34 37.4478,34 37,33.5522 37,33 37,32.7349 37.103,32.4941 37.271,32.3154 37.3765,32.2036 37.5068,32.1157 37.6538,32.0615 37.7617,32.0215 37.8784,32 38,32 38.5522,32 39,32.4478 39,33z M43,34C43.5522,34 44,33.5522 44,33 44,32.4478 43.5522,32 43,32 42.4478,32 42,32.4478 42,33 42,33.3247 42.1548,33.6133 42.3945,33.7959 42.5625,33.9238 42.7725,34 43,34z M4,38C4,38.5522 3.55225,39 3,39 2.44775,39 2,38.5522 2,38 2,37.7378 2.10107,37.499 2.2666,37.3203 2.44922,37.123 2.70996,37 3,37 3.31445,37 3.59473,37.145 3.77832,37.3721 3.84277,37.4521 3.89502,37.542 3.93262,37.6396 3.97607,37.7515 4,37.873 4,38z M8,39C8.55225,39 9,38.5522 9,38 9,37.7979 8.93994,37.6094 8.83643,37.4521 8.65771,37.1797 8.3501,37 8,37 7.44775,37 7,37.4478 7,38 7,38.2192 7.0708,38.4219 7.19043,38.5869 7.37207,38.8374 7.66699,39 8,39z M14,38C14,38.5522 13.5522,39 13,39 12.4478,39 12,38.5522 12,38 12,37.4478 12.4478,37 13,37 13.5522,37 14,37.4478 14,38z M18,39C18.5522,39 19,38.5522 19,38 19,37.4478 18.5522,37 18,37 17.688,37 17.4097,37.1426 17.2266,37.3662 17.085,37.5391 17,37.7598 17,38 17,38.5522 17.4478,39 18,39z M24,38C24,38.5522 23.5522,39 23,39 22.4478,39 22,38.5522 22,38 22,37.8906 22.0176,37.7852 22.0503,37.6865 22.0938,37.5547 22.1641,37.4351 22.2544,37.334 22.4375,37.1289 22.7036,37 23,37 23.2964,37 23.5625,37.1289 23.7456,37.3335 23.7622,37.3521 23.7783,37.3711 23.7935,37.3911 23.8145,37.4185 23.834,37.4473 23.8521,37.4766 23.875,37.5132 23.8955,37.5513 23.9131,37.5908 23.9473,37.6675 23.9722,37.749 23.9863,37.8345 23.9907,37.8613 23.9941,37.8882 23.9961,37.9155L23.9995,37.9697 24,38z M28,39C28.5522,39 29,38.5522 29,38 29,37.9136 28.9893,37.8301 28.9688,37.75 28.9321,37.6079 28.8647,37.478 28.7749,37.3682 28.6626,37.2305 28.5146,37.1235 28.3447,37.061 28.2373,37.0215 28.1211,37 28,37 27.4478,37 27,37.4478 27,38 27,38.5522 27.4478,39 28,39z M34,38C34,38.5522 33.5522,39 33,39 32.4478,39 32,38.5522 32,38 32,37.4478 32.4478,37 33,37 33.5522,37 34,37.4478 34,38z M38.8086,38.5884C38.8433,38.541 38.874,38.4907 38.8999,38.4375 38.9644,38.3052 39,38.1567 39,38 39,37.4478 38.5522,37 38,37 37.6494,37 37.3413,37.1802 37.1626,37.4531 37.0596,37.6104 37,37.7983 37,38 37,38.5522 37.4478,39 38,39 38.332,39 38.6265,38.8379 38.8086,38.5884z M44,38C44,38.5522 43.5522,39 43,39 42.4478,39 42,38.5522 42,38 42,37.7632 42.082,37.5459 42.2197,37.3745 42.2505,37.3354 42.2847,37.2993 42.3213,37.2656 42.3457,37.2432 42.3711,37.2217 42.3979,37.2017 42.439,37.1704 42.4824,37.1426 42.5283,37.1177 42.5781,37.0908 42.6304,37.0684 42.6851,37.0503 42.7212,37.0386 42.7578,37.0288 42.7954,37.021 42.8613,37.0073 42.9297,37 43,37 43.2896,37 43.5508,37.123 43.7334,37.3198 43.8989,37.4985 44,37.7373 44,38z M3,44C3.55225,44 4,43.5522 4,43 4,42.4478 3.55225,42 3,42 2.9624,42 2.9248,42.002 2.88818,42.0063 2.82617,42.0132 2.76611,42.0254 2.70801,42.043 2.66992,42.0547 2.63281,42.0688 2.59668,42.0845 2.55908,42.1011 2.52295,42.1201 2.48779,42.1411 2.41211,42.1865 2.34277,42.2412 2.28174,42.3042 2.10742,42.4844 2,42.7295 2,43 2,43.5522 2.44775,44 3,44z M8.96484,43.2632L8.9502,43.3135 8.93359,43.3589C8.88623,43.4814 8.81592,43.5923 8.72754,43.686 8.61816,43.8022 8.48145,43.8921 8.32715,43.9453 8.22461,43.9805 8.11475,44 8,44 7.44775,44 7,43.5522 7,43 7,42.4478 7.44775,42 8,42 8.04248,42 8.08447,42.0029 8.12598,42.0083 8.16553,42.0132 8.20508,42.0205 8.24316,42.0298 8.26611,42.0356 8.28857,42.042 8.31104,42.0493 8.42676,42.0869 8.5332,42.1455 8.62598,42.2202 8.854,42.4033 9,42.6846 9,43 9,43.0269 8.99902,43.0532 8.99658,43.0796 8.99414,43.1099 8.99072,43.1396 8.98535,43.1685 8.97998,43.2007 8.97314,43.2324 8.96484,43.2632z M13,44C13.5522,44 14,43.5522 14,43 14,42.6265 13.7954,42.3008 13.4922,42.1289 13.3467,42.0469 13.1787,42 13,42 12.7285,42 12.4824,42.1084 12.3022,42.2837 12.1157,42.4653 12,42.7192 12,43 12,43.5522 12.4478,44 13,44z M19,43C19,43.5522 18.5522,44 18,44 17.4478,44 17,43.5522 17,43 17,42.4478 17.4478,42 18,42 18.5522,42 19,42.4478 19,43z M23.6489,43.7612C23.8638,43.5776 24,43.3047 24,43 24,42.7319 23.8945,42.4888 23.7227,42.3091 23.6372,42.2197 23.5352,42.146 23.4214,42.0928 23.2935,42.0332 23.1509,42 23,42 22.7158,42 22.459,42.1187 22.2769,42.3091 22.1055,42.4888 22,42.7319 22,43 22,43.3042 22.1357,43.5767 22.3501,43.7603 22.5249,43.9097 22.752,44 23,44 23.2476,44 23.4741,43.9102 23.6489,43.7612z M29,43C29,43.5522 28.5522,44 28,44 27.4478,44 27,43.5522 27,43 27,42.4478 27.4478,42 28,42 28.5522,42 29,42.4478 29,43z M33,44C33.5522,44 34,43.5522 34,43 34,42.7207 33.8853,42.4683 33.7007,42.2866 33.5205,42.1094 33.2729,42 33,42 32.894,42 32.792,42.0166 32.6963,42.0474 32.6309,42.0684 32.5684,42.0957 32.5093,42.1289 32.2051,42.3003 32,42.626 32,43 32,43.5522 32.4478,44 33,44z M39,43C39,43.5522 38.5522,44 38,44 37.7134,44 37.4551,43.8794 37.2725,43.686 37.1035,43.5068 37,43.2656 37,43 37,42.7837 37.0688,42.583 37.186,42.4189 37.2397,42.3438 37.3037,42.2764 37.376,42.2188 37.5469,42.082 37.7637,42 38,42 38.5522,42 39,42.4478 39,43z M43,44C43.5522,44 44,43.5522 44,43 44,42.4478 43.5522,42 43,42 42.4478,42 42,42.4478 42,43 42,43.5522 42.4478,44 43,44z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<Border Background="#eaebed"
Margin="-2,-1,-1,0"
Padding="2,1,2,1" CornerRadius="4"
Canvas.Bottom="3" Canvas.Left="5">
<TextBlock TextAlignment="Left"
FontSize="10" Foreground="#18181b"
Text="点" />
</Border>
</Canvas>
</Border>
<Border Width="46" Height="46" CornerRadius="4"
Background="#eaebed" BorderBrush="#a1a1aa"
BorderThickness="1">
<Canvas>
<Image Margin="-1,-1,0,0" Width="46"
Height="46">
<Image.Clip>
<RectangleGeometry Rect="0,0,46,46"
RadiusX="5" RadiusY="5" />
</Image.Clip>
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V46 H46 V0 H0 Z">
<GeometryDrawing
Brush="#22000000"
Geometry="F0 M46,46z M0,0z M4.5,1.5L1.5,1.5 1.5,4.5 4.5,4.5 4.5,1.5z M5.5,4.5L8.5,4.5 8.5,1.5 5.5,1.5 5.5,4.5z M12.5,4.5L9.5,4.5 9.5,1.5 12.5,1.5 12.5,4.5z M13.5,4.5L16.5,4.5 16.5,1.5 13.5,1.5 13.5,4.5z M20.5,4.5L17.5,4.5 17.5,1.5 20.5,1.5 20.5,4.5z M21.5,4.5L24.5,4.5 24.5,1.5 21.5,1.5 21.5,4.5z M28.5,4.5L25.5,4.5 25.5,1.5 28.5,1.5 28.5,4.5z M29.5,4.5L32.5,4.5 32.5,1.5 29.5,1.5 29.5,4.5z M36.5,4.5L33.5,4.5 33.5,1.5 36.5,1.5 36.5,4.5z M37.5,4.5L40.5,4.5 40.5,1.5 37.5,1.5 37.5,4.5z M44.5,4.5L41.5,4.5 41.5,1.5 44.5,1.5 44.5,4.5z M37.5,5.5L40.5,5.5 40.5,8.5 37.5,8.5 37.5,5.5z M41.5,8.5L44.5,8.5 44.5,5.5 41.5,5.5 41.5,8.5z M45.5,8.5L45.5,5.5 45.5,4.5 45.5,1.5 45.5,0.5 44.5,0.5 41.5,0.5 40.5,0.5 37.5,0.5 36.5,0.5 33.5,0.5 32.5,0.5 29.5,0.5 28.5,0.5 25.5,0.5 24.5,0.5 21.5,0.5 20.5,0.5 17.5,0.5 16.5,0.5 13.5,0.5 12.5,0.5 9.5,0.5 8.5,0.5 5.5,0.5 4.5,0.5 1.5,0.5 0.5,0.5 0.5,1.5 0.5,4.5 0.5,5.5 0.5,8.5 0.5,9.5 0.5,12.5 0.5,13.5 0.5,16.5 0.5,17.5 0.5,20.5 0.5,21.5 0.5,24.5 0.5,25.5 0.5,28.5 0.5,29.5 0.5,32.5 0.5,33.5 0.5,36.5 0.5,37.5 0.5,40.5 0.5,41.5 0.5,44.5 0.5,45.5 1.5,45.5 4.5,45.5 5.5,45.5 8.5,45.5 9.5,45.5 12.5,45.5 13.5,45.5 16.5,45.5 17.5,45.5 20.5,45.5 21.5,45.5 24.5,45.5 25.5,45.5 28.5,45.5 29.5,45.5 32.5,45.5 33.5,45.5 36.5,45.5 37.5,45.5 40.5,45.5 41.5,45.5 44.5,45.5 45.5,45.5 45.5,44.5 45.5,41.5 45.5,40.5 45.5,37.5 45.5,36.5 45.5,33.5 45.5,32.5 45.5,29.5 45.5,28.5 45.5,25.5 45.5,24.5 45.5,21.5 45.5,20.5 45.5,17.5 45.5,16.5 45.5,13.5 45.5,12.5 45.5,9.5 45.5,8.5z M44.5,40.5L44.5,37.5 41.5,37.5 41.5,40.5 44.5,40.5z M40.5,40.5L40.5,37.5 37.5,37.5 37.5,40.5 40.5,40.5z M41.5,44.5L44.5,44.5 44.5,41.5 41.5,41.5 41.5,44.5z M40.5,44.5L40.5,41.5 37.5,41.5 37.5,44.5 40.5,44.5z M36.5,41.5L36.5,44.5 33.5,44.5 33.5,41.5 36.5,41.5z M33.5,40.5L36.5,40.5 36.5,37.5 33.5,37.5 33.5,40.5z M32.5,44.5L32.5,41.5 29.5,41.5 29.5,44.5 32.5,44.5z M32.5,40.5L29.5,40.5 29.5,37.5 32.5,37.5 32.5,40.5z M28.5,41.5L28.5,44.5 25.5,44.5 25.5,41.5 28.5,41.5z M25.5,40.5L28.5,40.5 28.5,37.5 25.5,37.5 25.5,40.5z M24.5,44.5L24.5,41.5 21.5,41.5 21.5,44.5 24.5,44.5z M24.5,40.5L21.5,40.5 21.5,37.5 24.5,37.5 24.5,40.5z M20.5,41.5L20.5,44.5 17.5,44.5 17.5,41.5 20.5,41.5z M17.5,40.5L20.5,40.5 20.5,37.5 17.5,37.5 17.5,40.5z M16.5,44.5L16.5,41.5 13.5,41.5 13.5,44.5 16.5,44.5z M16.5,40.5L13.5,40.5 13.5,37.5 16.5,37.5 16.5,40.5z M12.5,41.5L12.5,44.5 9.5,44.5 9.5,41.5 12.5,41.5z M9.5,40.5L12.5,40.5 12.5,37.5 9.5,37.5 9.5,40.5z M8.5,44.5L8.5,41.5 5.5,41.5 5.5,44.5 8.5,44.5z M8.5,40.5L5.5,40.5 5.5,37.5 8.5,37.5 8.5,40.5z M4.5,41.5L4.5,44.5 1.5,44.5 1.5,41.5 4.5,41.5z M1.5,40.5L4.5,40.5 4.5,37.5 1.5,37.5 1.5,40.5z M44.5,36.5L41.5,36.5 41.5,33.5 44.5,33.5 44.5,36.5z M37.5,36.5L40.5,36.5 40.5,33.5 37.5,33.5 37.5,36.5z M36.5,36.5L33.5,36.5 33.5,33.5 36.5,33.5 36.5,36.5z M29.5,36.5L32.5,36.5 32.5,33.5 29.5,33.5 29.5,36.5z M28.5,36.5L25.5,36.5 25.5,33.5 28.5,33.5 28.5,36.5z M21.5,36.5L24.5,36.5 24.5,33.5 21.5,33.5 21.5,36.5z M20.5,36.5L17.5,36.5 17.5,33.5 20.5,33.5 20.5,36.5z M13.5,36.5L16.5,36.5 16.5,33.5 13.5,33.5 13.5,36.5z M12.5,36.5L9.5,36.5 9.5,33.5 12.5,33.5 12.5,36.5z M5.5,36.5L8.5,36.5 8.5,33.5 5.5,33.5 5.5,36.5z M4.5,36.5L1.5,36.5 1.5,33.5 4.5,33.5 4.5,36.5z M44.5,32.5L44.5,29.5 41.5,29.5 41.5,32.5 44.5,32.5z M40.5,32.5L40.5,29.5 37.5,29.5 37.5,32.5 40.5,32.5z M33.5,32.5L36.5,32.5 36.5,29.5 33.5,29.5 33.5,32.5z M32.5,32.5L29.5,32.5 29.5,29.5 32.5,29.5 32.5,32.5z M25.5,32.5L28.5,32.5 28.5,29.5 25.5,29.5 25.5,32.5z M24.5,32.5L21.5,32.5 21.5,29.5 24.5,29.5 24.5,32.5z M17.5,32.5L20.5,32.5 20.5,29.5 17.5,29.5 17.5,32.5z M16.5,32.5L13.5,32.5 13.5,29.5 16.5,29.5 16.5,32.5z M9.5,32.5L12.5,32.5 12.5,29.5 9.5,29.5 9.5,32.5z M8.5,32.5L5.5,32.5 5.5,29.5 8.5,29.5 8.5,32.5z M1.5,32.5L4.5,32.5 4.5,29.5 1.5,29.5 1.5,32.5z M44.5,28.5L41.5,28.5 41.5,25.5 44.5,25.5 44.5,28.5z M37.5,28.5L40.5,28.5 40.5,25.5 37.5,25.5 37.5,28.5z M36.5,28.5L33.5,28.5 33.5,25.5 36.5,25.5 36.5,28.5z M29.5,28.5L32.5,28.5 32.5,25.5 29.5,25.5 29.5,28.5z M28.5,28.5L25.5,28.5 25.5,25.5 28.5,25.5 28.5,28.5z M21.5,28.5L24.5,28.5 24.5,25.5 21.5,25.5 21.5,28.5z M20.5,28.5L17.5,28.5 17.5,25.5 20.5,25.5 20.5,28.5z M13.5,28.5L16.5,28.5 16.5,25.5 13.5,25.5 13.5,28.5z M12.5,28.5L9.5,28.5 9.5,25.5 12.5,25.5 12.5,28.5z M5.5,28.5L8.5,28.5 8.5,25.5 5.5,25.5 5.5,28.5z M4.5,28.5L1.5,28.5 1.5,25.5 4.5,25.5 4.5,28.5z M44.5,24.5L44.5,21.5 41.5,21.5 41.5,24.5 44.5,24.5z M40.5,24.5L40.5,21.5 37.5,21.5 37.5,24.5 40.5,24.5z M33.5,24.5L36.5,24.5 36.5,21.5 33.5,21.5 33.5,24.5z M32.5,24.5L29.5,24.5 29.5,21.5 32.5,21.5 32.5,24.5z M25.5,24.5L28.5,24.5 28.5,21.5 25.5,21.5 25.5,24.5z M24.5,24.5L21.5,24.5 21.5,21.5 24.5,21.5 24.5,24.5z M17.5,24.5L20.5,24.5 20.5,21.5 17.5,21.5 17.5,24.5z M16.5,24.5L13.5,24.5 13.5,21.5 16.5,21.5 16.5,24.5z M9.5,24.5L12.5,24.5 12.5,21.5 9.5,21.5 9.5,24.5z M8.5,24.5L5.5,24.5 5.5,21.5 8.5,21.5 8.5,24.5z M1.5,24.5L4.5,24.5 4.5,21.5 1.5,21.5 1.5,24.5z M44.5,20.5L41.5,20.5 41.5,17.5 44.5,17.5 44.5,20.5z M37.5,20.5L40.5,20.5 40.5,17.5 37.5,17.5 37.5,20.5z M36.5,20.5L33.5,20.5 33.5,17.5 36.5,17.5 36.5,20.5z M29.5,20.5L32.5,20.5 32.5,17.5 29.5,17.5 29.5,20.5z M28.5,20.5L25.5,20.5 25.5,17.5 28.5,17.5 28.5,20.5z M21.5,20.5L24.5,20.5 24.5,17.5 21.5,17.5 21.5,20.5z M20.5,20.5L17.5,20.5 17.5,17.5 20.5,17.5 20.5,20.5z M13.5,20.5L16.5,20.5 16.5,17.5 13.5,17.5 13.5,20.5z M12.5,20.5L9.5,20.5 9.5,17.5 12.5,17.5 12.5,20.5z M5.5,20.5L8.5,20.5 8.5,17.5 5.5,17.5 5.5,20.5z M4.5,20.5L1.5,20.5 1.5,17.5 4.5,17.5 4.5,20.5z M44.5,16.5L44.5,13.5 41.5,13.5 41.5,16.5 44.5,16.5z M40.5,16.5L40.5,13.5 37.5,13.5 37.5,16.5 40.5,16.5z M33.5,16.5L36.5,16.5 36.5,13.5 33.5,13.5 33.5,16.5z M32.5,16.5L29.5,16.5 29.5,13.5 32.5,13.5 32.5,16.5z M25.5,16.5L28.5,16.5 28.5,13.5 25.5,13.5 25.5,16.5z M24.5,16.5L21.5,16.5 21.5,13.5 24.5,13.5 24.5,16.5z M17.5,16.5L20.5,16.5 20.5,13.5 17.5,13.5 17.5,16.5z M16.5,16.5L13.5,16.5 13.5,13.5 16.5,13.5 16.5,16.5z M9.5,16.5L12.5,16.5 12.5,13.5 9.5,13.5 9.5,16.5z M8.5,16.5L5.5,16.5 5.5,13.5 8.5,13.5 8.5,16.5z M1.5,16.5L4.5,16.5 4.5,13.5 1.5,13.5 1.5,16.5z M44.5,12.5L41.5,12.5 41.5,9.5 44.5,9.5 44.5,12.5z M37.5,12.5L40.5,12.5 40.5,9.5 37.5,9.5 37.5,12.5z M36.5,12.5L33.5,12.5 33.5,9.5 36.5,9.5 36.5,12.5z M29.5,12.5L32.5,12.5 32.5,9.5 29.5,9.5 29.5,12.5z M28.5,12.5L25.5,12.5 25.5,9.5 28.5,9.5 28.5,12.5z M21.5,12.5L24.5,12.5 24.5,9.5 21.5,9.5 21.5,12.5z M20.5,12.5L17.5,12.5 17.5,9.5 20.5,9.5 20.5,12.5z M13.5,12.5L16.5,12.5 16.5,9.5 13.5,9.5 13.5,12.5z M12.5,12.5L9.5,12.5 9.5,9.5 12.5,9.5 12.5,12.5z M5.5,12.5L8.5,12.5 8.5,9.5 5.5,9.5 5.5,12.5z M4.5,12.5L1.5,12.5 1.5,9.5 4.5,9.5 4.5,12.5z M36.5,5.5L36.5,8.5 33.5,8.5 33.5,5.5 36.5,5.5z M32.5,8.5L29.5,8.5 29.5,5.5 32.5,5.5 32.5,8.5z M25.5,8.5L28.5,8.5 28.5,5.5 25.5,5.5 25.5,8.5z M24.5,8.5L21.5,8.5 21.5,5.5 24.5,5.5 24.5,8.5z M17.5,8.5L20.5,8.5 20.5,5.5 17.5,5.5 17.5,8.5z M16.5,8.5L13.5,8.5 13.5,5.5 16.5,5.5 16.5,8.5z M9.5,8.5L12.5,8.5 12.5,5.5 9.5,5.5 9.5,8.5z M8.5,8.5L5.5,8.5 5.5,5.5 8.5,5.5 8.5,8.5z M1.5,8.5L4.5,8.5 4.5,5.5 1.5,5.5 1.5,8.5z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Viewbox Canvas.Right="4" Canvas.Top="4"
Width="14" Height="14"
Visibility="Collapsed">
<CheckBox IsHitTestVisible="False"
IsTabStop="False" IsChecked="True"
MinWidth="0" Padding="0" MinHeight="0">
</CheckBox>
</Viewbox>
<Border Background="#eaebed"
Margin="-2,-1,-1,0"
Padding="2,1,2,1" CornerRadius="4"
Canvas.Bottom="3" Canvas.Left="5">
<TextBlock TextAlignment="Left"
FontSize="10" Foreground="#18181b"
Text="网格" />
</Border>
</Canvas>
</Border>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</StackPanel>
</Viewbox>
</ui:SimpleStackPanel>
</Border>
</Grid>
</ui:SimpleStackPanel>
<Border Name="BoardSideBtnMouseFeedbakBorder" Visibility="Collapsed" IsHitTestVisible="False" Width="60" HorizontalAlignment="Left" Height="50" Padding="1">
<Border CornerRadius="4.5,0,0,0" Background="#2509090b" />
</Border>
</Grid>
</Border>
<Border CornerRadius="5,5,5,5" Background="#f4f4f5" Margin="0,0,5,0">
<Grid>
<ui:SimpleStackPanel Orientation="Horizontal">
<Border x:Name="BoardSelect" Width="60" Height="50" MouseDown="BoardToolBtnMouseDown" MouseLeave="BoardToolBtnMouseLeave"
BorderThickness="1,1,0,1" BorderBrush="#a1a1aa"
MouseUp="BoardSelectMouseUp" CornerRadius="5,0,0,5"
Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="BoardSelectGeometry"
Brush="#18181b"
Geometry="F1 M24,24z M0,0z M22.7989,10.1653L1.14304,1.14304 10.1653,22.7989 12.8305,14.9518 19.6892,21.8105 21.8105,19.6892 14.9518,12.8305 22.7989,10.1653z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="选择" Foreground="#18181b" VerticalAlignment="Bottom"
Name="BoardSelectLabel"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border x:Name="BoardPen" Width="60" Height="50" MouseDown="BoardToolBtnMouseDown"
BorderThickness="0,1,0,1" BorderBrush="#a1a1aa" MouseLeave="BoardToolBtnMouseLeave"
MouseUp="BoardPenMouseUp" Background="#f4f4f5" Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image x:Name="BoardPenIcon" VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="BoardPenGeometry"
Brush="#18181b"
Geometry="F1 M24,24z M0,0z M20.4786,1.42438C19.9985,1.23743 19.4847,1.15194 18.9698,1.17319 18.4549,1.19444 17.9499,1.32197 17.4869,1.54789 17.0368,1.76752 16.6358,2.07554 16.3083,2.45361L3.85516,14.9067 9.08243,20.134 21.5311,7.68529C21.9113,7.36382 22.223,6.96912 22.447,6.52438 22.6786,6.06462 22.8113,5.56167 22.8365,5.04763 22.8616,4.5336 22.7787,4.02012 22.593,3.54002 22.4073,3.05994 22.1232,2.62403 21.759,2.25988 21.3949,1.89574 20.9587,1.61132 20.4786,1.42438z M7.28056,21.1605L2.8286,16.7086 1.15912,22.83 7.28056,21.1605z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="笔" Foreground="Black" VerticalAlignment="Bottom"
Name="BoardPenLabel"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border>
<Grid Margin="0,5,0,5" Width="0" d:IsHidden="True">
<Grid Name="BoardPenPaletteGrid" Margin="-160,-200,-33,50"
RenderTransformOrigin="0,1">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1.5" ScaleY="1.5" />
<SkewTransform />
<RotateTransform />
<TranslateTransform />
</TransformGroup>
</Grid.RenderTransform>
<Border x:Name="BoardPenPalette" Visibility="Visible"
Background="#fafafa"
Opacity="1" BorderBrush="#2563eb"
BorderThickness="1" CornerRadius="8">
<ui:SimpleStackPanel>
<Border BorderBrush="#1e3a8a" Height="32"
BorderThickness="0,0,0,1"
CornerRadius="8,8,0,0" Background="#2563eb"
Margin="-1,-1,-1,0"
Padding="1,1,1,0">
<ui:SimpleStackPanel Orientation="Vertical"
VerticalAlignment="Center">
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Stretch"
Margin="8,0,0,0" Spacing="2">
<Border x:Name="BoardDefaultPenTabButton"
MouseDown="SwitchToDefaultPen"
Background="#48dbeafe" Height="20"
Width="36"
CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel
x:Name="BoardDefaultPenTabButtonIndicator"
Visibility="Visible"
Orientation="Horizontal"
Canvas.Left="9" Canvas.Right="9"
Canvas.Bottom="0">
<Border Width="18" Height="2"
Background="#fafafa"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical"
Height="20" Width="36">
<ui:SimpleStackPanel
VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,3">
<Image
Source="/Resources/new-icons/pen-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="13" Width="13" />
<TextBlock
x:Name="BoardDefaultPenTabButtonText"
Foreground="White"
FontWeight="Medium"
FontSize="9"
TextAlignment="Center"
Text="笔" Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Border x:Name="BoardHighlightPenTabButton"
MouseDown="SwitchToHighlighterPen"
Background="Transparent" Height="20"
Width="52"
CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel Visibility="Collapsed"
x:Name="BoardHighlightPenTabButtonIndicator"
Orientation="Horizontal"
Canvas.Left="14"
Canvas.Right="14" Canvas.Bottom="0">
<Border Width="24" Height="2"
Background="#fafafa"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical"
Height="20" Width="52">
<ui:SimpleStackPanel
VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,3">
<Image
Source="/Resources/new-icons/highlighter-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="13" Width="13" />
<TextBlock
x:Name="BoardHighlightPenTabButtonText"
Foreground="White"
FontWeight="Medium"
FontSize="9"
TextAlignment="Center"
Text="荧光笔" Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Image Margin="66,0,0,0"
Source="/Resources/new-icons/close-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16" Width="16"
MouseDown="Border_MouseDown"
MouseUp="CloseBordertools_MouseUp" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
<Viewbox Name="BoardDefaultPenPropsPanel"
Visibility="Collapsed"
Margin="12,8,12,0" HorizontalAlignment="Center"
VerticalAlignment="Center" Stretch="Fill">
<ui:SimpleStackPanel>
<Controls:UniformGrid Columns="2" Width="300"
Height="55">
<ui:SimpleStackPanel Orientation="Horizontal"
Height="35">
<Label Content="笔锋" Margin="0,0,6,0"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="16" FontWeight="Bold"
VerticalAlignment="Center" />
<ComboBox Height="30"
VerticalAlignment="Center"
Name="BoardComboBoxPenStyle"
FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxPenStyle_SelectionChanged">
<ComboBoxItem Content="基于点集"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="基于速率"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="关闭笔锋"
FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,-5,0,-5"
VerticalAlignment="Center">
<ui:SimpleStackPanel
x:Name="BoardNibModeSimpleStackPanel"
Orientation="Horizontal" Width="140">
<Label Content="笔尖模式" FontSize="15"
VerticalAlignment="Center" />
<ui:ToggleSwitch
x:Name="BoardToggleSwitchEnableNibMode"
MinWidth="0"
FontFamily="Microsoft YaHei UI"
Width="70" Margin="10,0,0,0"
Toggled="ToggleSwitchEnableNibMode_Toggled"
IsOn="True" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal"
Width="140">
<Label Margin="0,0,10,0" Content="墨迹纠正"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="15"
VerticalAlignment="Center" />
<ui:ToggleSwitch
Foreground="{DynamicResource FloatBarForeground}"
FontFamily="Microsoft YaHei UI"
Width="70"
Toggled="ToggleSwitchEnableInkToShape_Toggled"
MinWidth="0"
IsOn="{Binding ElementName=ToggleSwitchEnableInkToShape, Path=IsOn}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="粗细"
FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="BoardInkWidthSlider" Minimum="1"
Maximum="20"
Width="208" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True"
Value="5"
TickFrequency="0.1" TickPlacement="None"
ValueChanged="InkWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=InkWidthSlider, Mode=OneWay}"
FontFamily="Consolas"
VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="透明"
FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="BoardInkAlphaSlider"
Margin="0,0,0,0"
Minimum="1" Maximum="255" Width="208"
FontFamily="Microsoft YaHei UI"
FontSize="20"
IsSnapToTickEnabled="True" Value="255"
TickFrequency="1"
TickPlacement="None"
ValueChanged="InkAlphaSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=InkAlphaSlider, Mode=OneWay}"
FontFamily="Consolas"
VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox Name="BoardHighlighterPenPropsPanel"
Margin="12,8,12,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Stretch="Fill">
<ui:SimpleStackPanel>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="粗细"
FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="BoardHighlighterWidthSlider"
Minimum="15"
Maximum="45" Width="208"
FontFamily="Microsoft YaHei UI"
FontSize="20"
IsSnapToTickEnabled="True" Value="20"
TickFrequency="1" TickPlacement="None"
ValueChanged="HighlighterWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=HighlighterWidthSlider, Mode=OneWay}"
FontFamily="Consolas"
VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox x:Name="BoardDefaultPenColorsPanel"
Visibility="Collapsed"
Margin="0,8,0,0" Stretch="Fill">
<ui:SimpleStackPanel Width="300" Margin="0,0,0,0">
<!--<TextBlock FontSize="25">画笔颜色</TextBlock>-->
<Border Width="300" Height="100" BorderBrush="Black"
BorderThickness="0" CornerRadius="5">
<Controls:UniformGrid Rows="2" Height="100">
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5"
Width="270"
Margin="0">
<Border BorderBrush="Black"
BorderThickness="1"
CornerRadius="100" Width="45"
MouseDown="Border_MouseDown"
MouseUp="ColorThemeSwitch_MouseUp">
<Grid Margin="3">
<Image
x:Name="BoardColorThemeSwitchIcon"
Source="/Resources/Icons-Fluent/ic_fluent_weather_sunny_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="23"
Height="23"
Margin="0,0,0,0" />
<TextBlock Margin="0,0,0,2"
x:Name="BoardColorThemeSwitchTextBlock"
Text="亮系"
Foreground="Black"
VerticalAlignment="Bottom"
HorizontalAlignment="Center"
FontSize="11" />
</Grid>
</Border>
<Border
x:Name="BoardBorderPenColorBlack"
Background="Black"
BorderBrush="Black"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorBlack_Click">
<Viewbox
Name="BoardViewboxBtnColorBlackContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorWhite"
Background="White"
BorderBrush="#71717a"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorWhite_Click">
<Viewbox
x:Name="BoardViewboxBtnColorWhiteContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BoardBorderPenColorRed"
Background="#dc2626"
BorderBrush="#7f1d1d"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorRed_Click">
<Viewbox
Name="BoardViewboxBtnColorRedContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorYellow"
Background="#eab308"
BorderBrush="#713f12"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorYellow_Click">
<Viewbox
x:Name="BoardViewboxBtnColorYellowContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5"
Width="270"
Margin="0">
<Border
x:Name="BoardBorderPenColorGreen"
Background="#16a34a"
BorderBrush="#14532d"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorGreen_Click">
<Viewbox
x:Name="BoardViewboxBtnColorGreenContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorBlue"
Background="#2563eb"
BorderBrush="#1e3a8a"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorBlue_Click">
<Viewbox
x:Name="BoardViewboxBtnColorBlueContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorPink"
Background="#db2777"
BorderBrush="#831843"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorPink_Click">
<Viewbox
x:Name="BoardViewboxBtnColorPinkContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorTeal"
Background="#0d9488"
BorderBrush="#134e4a"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorTeal_Click">
<Viewbox
x:Name="BoardViewboxBtnColorTealContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border
x:Name="BoardBorderPenColorOrange"
Background="#ea580c"
BorderBrush="#7c2d12"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorOrange_Click">
<Viewbox
x:Name="BoardViewboxBtnColorOrangeContent"
Visibility="Collapsed"
Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox x:Name="BoardHighlighterPenColorsPanel"
Visibility="Visible"
Margin="0,8,0,0" Stretch="Fill">
<ui:SimpleStackPanel Width="300" Margin="0,0,0,0">
<!--<TextBlock FontSize="25">画笔颜色</TextBlock>-->
<Border Width="300" Height="110" BorderBrush="Black"
BorderThickness="0" CornerRadius="5">
<Controls:UniformGrid Rows="2" Height="110">
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5"
Width="270"
Margin="0">
<Border
x:Name="BoardHighlighterPenColorBlack"
BorderBrush="#e4e4e7"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorBlack_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="Black"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorBlackContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorWhite"
Background="White"
BorderBrush="#dddddd"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnHighlighterColorWhite_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="White"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorWhiteContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorRed"
BorderBrush="#fecaca"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorRed_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#ef4444"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorRedContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorYellow"
BorderBrush="#fef08a"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorYellow_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#eab308"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorYellowContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorGreen"
BorderBrush="#bbf7d0"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorGreen_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#22c55e"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorGreenContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5"
Width="270"
Margin="0">
<Border
x:Name="BoardHighlighterPenColorZinc"
BorderBrush="#e4e4e7"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorZinc_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#71717a"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorZincContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorBlue"
BorderBrush="#bfdbfe"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorBlue_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#3b82f6"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorBlueContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenPenColorPurple"
BorderBrush="#e9d5ff"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorPurple_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#a855f7"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorPurpleContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorTeal"
BorderBrush="#99f6e4"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorTeal_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#14b8a6"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorTealContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="BoardHighlighterPenColorOrange"
BorderBrush="#fed7aa"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorOrange_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#f97316"
Width="42"
Height="42"
CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="BoardHighlighterPenViewboxBtnColorOrangeContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
</ui:SimpleStackPanel>
</Border>
</Grid>
</Grid>
</Border>
<Border x:Name="BoardEraser" MouseDown="BoardToolBtnMouseDown" MouseLeave="BoardToolBtnMouseLeave" Width="60" Height="50"
BorderThickness="0,1,1,1" BorderBrush="#a1a1aa"
MouseUp="BoardEraserMouseUp" Background="#f4f4f5" Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="BoardEraserGeometry"
Brush="#18181b"
Geometry="F1 M24,24z M0,0z M15.6314,20.7262L22.7921,13.5655C24.3494,12.141,24.2819,9.81776,22.8105,8.34633L16.7793,2.31508C15.3547,0.757753,13.0315,0.825236,11.5601,2.29666L4.38099,9.47574 15.6314,20.7262z M14.2172,22.1404L2.96677,10.89 1.20761,12.6491C-0.34971,14.0737,-0.281711,16.3974,1.18971,17.8688L6.15089,22.83 13.5276,22.83 14.2172,22.1404z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="橡皮" Foreground="#18181b" VerticalAlignment="Bottom"
Name="BoardEraserLabel"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border d:IsHidden="True">
<Grid RenderTransformOrigin="0,1" Margin="-133,-172,13,55">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1.5" ScaleY="1.5" />
<SkewTransform />
<RotateTransform />
<TranslateTransform />
</TransformGroup>
</Grid.RenderTransform>
<Border Visibility="Visible" ClipToBounds="True"
Name="BoardEraserSizePanel"
CornerRadius="5" Background="#fafafa"
Opacity="1"
BorderBrush="#2563eb" BorderThickness="1">
<ui:SimpleStackPanel Margin="0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="6,6,0,0"
Background="#2563eb" Margin="-1,-1,-1,1">
<Canvas Height="24" ClipToBounds="True">
<TextBlock Text="橡皮选项" Canvas.Left="8" Foreground="White"
Padding="0,5"
FontSize="11" FontWeight="Bold"
TextAlignment="Center" />
</Canvas>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Margin="0,6,0,0"
Spacing="-2"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Label Margin="0,0,0,0" Content="大小" FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="10"
VerticalAlignment="Center" />
<Viewbox Margin="8,0,0,0" Height="20" Width="52">
<ComboBox Name="BoardComboBoxEraserSize"
FontFamily="Microsoft YaHei UI" SelectedIndex="2"
SelectionChanged="ComboBoxEraserSizeFloatingBar_SelectionChanged">
<ComboBoxItem Content="很小"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较小"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="中等"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较大"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="很大"
FontFamily="Microsoft YaHei UI" />
</ComboBox>
</Viewbox>
</ui:SimpleStackPanel>
<TextBlock HorizontalAlignment="Center" Margin="0,8,0,6"
Text="橡皮形状"
FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="10" VerticalAlignment="Center" />
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,0,0,0" Spacing="4">
<Border x:Name="BoardCircleEraserTabButton"
MouseDown="SwitchToCircleEraser"
Background="#553b82f6" Height="20" Width="40"
CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel
x:Name="BoardCircleEraserTabButtonIndicator"
Visibility="Visible" Orientation="Horizontal"
Canvas.Left="11" Canvas.Right="11"
Canvas.Bottom="0">
<Border Width="18" Height="2" Background="#2563eb"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Height="20"
Width="40">
<ui:SimpleStackPanel VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center" Margin="0,3">
<TextBlock
x:Name="BoardCircleEraserTabButtonText"
Foreground="#172554" FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="圆形擦"
Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Border x:Name="BoardRectangleEraserTabButton"
MouseDown="SwitchToRectangleEraser"
Background="Transparent"
Height="20" Width="40" CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel Visibility="Collapsed"
x:Name="BoardRectangleEraserTabButtonIndicator"
Orientation="Horizontal" Canvas.Left="11"
Canvas.Right="11" Canvas.Bottom="0">
<Border Width="18" Height="2" Background="#2563eb"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Height="20"
Width="40">
<ui:SimpleStackPanel VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center" Margin="0,3">
<TextBlock
x:Name="BoardRectangleEraserTabButtonText"
Foreground="#172554" FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="黑板擦"
Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
</ui:SimpleStackPanel>
<Button Click="BoardSymbolIconDelete_MouseUp" Foreground="White"
HorizontalAlignment="Center" Margin="0,6,0,0">
<Button.Resources>
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundKey}"
Color="#b91c1c" />
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundPointerOverKey}"
Color="#b91c1c" />
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundPressedKey}"
Color="#991b1b" />
</Button.Resources>
<Button.Content>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4">
<Image RenderOptions.BitmapScalingMode="HighQuality"
Height="15">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F0 M24,24z M0,0z M10.1573,10.0421C10.7298,10.0421,11.1938,10.5062,11.1938,11.0787L11.1938,16.6067C11.1938,17.1792 10.7298,17.6433 10.1573,17.6433 9.58485,17.6433 9.12079,17.1792 9.12079,16.6067L9.12079,11.0787C9.12079,10.5062,9.58485,10.0421,10.1573,10.0421z M13.8427,10.0421C14.4151,10.0421,14.8792,10.5062,14.8792,11.0787L14.8792,16.6067C14.8792,17.1792 14.4151,17.6433 13.8427,17.6433 13.2702,17.6433 12.8062,17.1792 12.8062,16.6067L12.8062,11.0787C12.8062,10.5062,13.2702,10.0421,13.8427,10.0421z M3.70787,5.43539C3.13541,5.43539 2.67135,5.89946 2.67135,6.47191 2.67135,7.04436 3.13541,7.50843 3.70787,7.50843L4.51405,7.50843 4.51405,19.3708C4.51405,20.1686 4.9025,20.8796 5.39348,21.3706 5.88445,21.8615 6.59548,22.25 7.39326,22.25L16.6067,22.25C17.4045,22.25 18.1155,21.8615 18.6065,21.3706 19.0975,20.8796 19.486,20.1686 19.486,19.3708L19.486,7.50843 20.2921,7.50843C20.8646,7.50843 21.3287,7.04436 21.3287,6.47191 21.3287,5.89946 20.8646,5.43539 20.2921,5.43539L16.7219,5.43539 16.7219,4.62921C16.7219,3.83143 16.3335,3.12041 15.8425,2.62943 15.3515,2.13845 14.6405,1.75 13.8427,1.75L10.1573,1.75C9.35952,1.75 8.6485,2.13845 8.15752,2.62943 7.66654,3.12041 7.27809,3.83143 7.27809,4.62921L7.27809,5.43539 3.70787,5.43539z M6.58708,19.3708C6.58708,19.4944 6.6593,19.7047 6.85933,19.9047 7.05937,20.1047 7.26969,20.177 7.39326,20.177L16.6067,20.177C16.7303,20.177 16.9406,20.1047 17.1407,19.9047 17.3407,19.7047 17.4129,19.4944 17.4129,19.3708L17.4129,7.50843 6.58708,7.50843 6.58708,19.3708z M9.62338,4.09529C9.42334,4.29532,9.35112,4.50565,9.35112,4.62921L9.35112,5.43539 14.6489,5.43539 14.6489,4.62921C14.6489,4.50565 14.5767,4.29532 14.3766,4.09529 14.1766,3.89525 13.9663,3.82303 13.8427,3.82303L10.1573,3.82303C10.0337,3.82303,9.82341,3.89525,9.62338,4.09529z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock FontSize="11" VerticalAlignment="Center"
Foreground="White" FontWeight="Bold">
清空墨迹
</TextBlock>
</ui:SimpleStackPanel>
</Button.Content>
</Button>
<Button Click="BoardSymbolIconDeleteInkAndHistories_MouseUp"
Foreground="White" HorizontalAlignment="Center"
Margin="0,4,0,0">
<Button.Resources>
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundKey}"
Color="#b91c1c" />
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundPointerOverKey}"
Color="#b91c1c" />
<SolidColorBrush
x:Key="{x:Static ui:ThemeKeys.ButtonBackgroundPressedKey}"
Color="#991b1b" />
</Button.Resources>
<Button.Content>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4"
Margin="-4,-1">
<Image RenderOptions.BitmapScalingMode="HighQuality"
Height="12">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F0 M24,24z M0,0z M10.1573,10.0421C10.7298,10.0421,11.1938,10.5062,11.1938,11.0787L11.1938,16.6067C11.1938,17.1792 10.7298,17.6433 10.1573,17.6433 9.58485,17.6433 9.12079,17.1792 9.12079,16.6067L9.12079,11.0787C9.12079,10.5062,9.58485,10.0421,10.1573,10.0421z M13.8427,10.0421C14.4151,10.0421,14.8792,10.5062,14.8792,11.0787L14.8792,16.6067C14.8792,17.1792 14.4151,17.6433 13.8427,17.6433 13.2702,17.6433 12.8062,17.1792 12.8062,16.6067L12.8062,11.0787C12.8062,10.5062,13.2702,10.0421,13.8427,10.0421z M3.70787,5.43539C3.13541,5.43539 2.67135,5.89946 2.67135,6.47191 2.67135,7.04436 3.13541,7.50843 3.70787,7.50843L4.51405,7.50843 4.51405,19.3708C4.51405,20.1686 4.9025,20.8796 5.39348,21.3706 5.88445,21.8615 6.59548,22.25 7.39326,22.25L16.6067,22.25C17.4045,22.25 18.1155,21.8615 18.6065,21.3706 19.0975,20.8796 19.486,20.1686 19.486,19.3708L19.486,7.50843 20.2921,7.50843C20.8646,7.50843 21.3287,7.04436 21.3287,6.47191 21.3287,5.89946 20.8646,5.43539 20.2921,5.43539L16.7219,5.43539 16.7219,4.62921C16.7219,3.83143 16.3335,3.12041 15.8425,2.62943 15.3515,2.13845 14.6405,1.75 13.8427,1.75L10.1573,1.75C9.35952,1.75 8.6485,2.13845 8.15752,2.62943 7.66654,3.12041 7.27809,3.83143 7.27809,4.62921L7.27809,5.43539 3.70787,5.43539z M6.58708,19.3708C6.58708,19.4944 6.6593,19.7047 6.85933,19.9047 7.05937,20.1047 7.26969,20.177 7.39326,20.177L16.6067,20.177C16.7303,20.177 16.9406,20.1047 17.1407,19.9047 17.3407,19.7047 17.4129,19.4944 17.4129,19.3708L17.4129,7.50843 6.58708,7.50843 6.58708,19.3708z M9.62338,4.09529C9.42334,4.29532,9.35112,4.50565,9.35112,4.62921L9.35112,5.43539 14.6489,5.43539 14.6489,4.62921C14.6489,4.50565 14.5767,4.29532 14.3766,4.09529 14.1766,3.89525 13.9663,3.82303 13.8427,3.82303L10.1573,3.82303C10.0337,3.82303,9.82341,3.89525,9.62338,4.09529z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock FontSize="9" VerticalAlignment="Center"
Foreground="White">
清空墨迹和历史
</TextBlock>
</ui:SimpleStackPanel>
</Button.Content>
</Button>
</ui:SimpleStackPanel>
</Border>
</Grid>
</Border>
<Border x:Name="BoardEraserByStrokes" Width="60" Height="55"
MouseDown="Border_MouseDown"
Visibility="Collapsed"
MouseUp="BoardEraserIconByStrokes_Click" Background="LightGray"
Opacity="0.85">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
Source="/Resources/Icons-png/eraser-line.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="28" Width="28" />
<TextBlock Text="墨迹擦" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border x:Name="BoardGeometry" Width="60" Height="50" MouseDown="BoardToolBtnMouseDown" MouseLeave="BoardToolBtnMouseLeave"
BorderThickness="0,1,1,1" BorderBrush="#a1a1aa"
MouseUp="BoardGeometryMouseUp" Background="#f4f4f5" Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M17.8604,10.7597L12.0068,1.17001 6.13961,10.7597 17.8604,10.7597z" />
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M10.9345,13.2403L1.34476,13.2403 1.34476,22.83 10.9345,22.83 10.9345,13.2403z" />
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M17.8604,13.2403C15.2122,13.2403 13.0655,15.387 13.0655,18.0352 13.0655,20.6833 15.2122,22.83 17.8604,22.83 20.5085,22.83 22.6552,20.6833 22.6552,18.0352 22.6552,15.387 20.5085,13.2403 17.8604,13.2403z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="图形" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border Width="0">
<Border x:Name="BoardBorderDrawShape" Visibility="Visible"
Background="LightGray"
Opacity="0.85" BorderBrush="Black" BorderThickness="1" CornerRadius="5"
Margin="-147,-286,-89,59">
<Viewbox>
<ui:SimpleStackPanel Spacing="-8" Orientation="Vertical">
<TextBlock FontSize="16"
Foreground="{DynamicResource FloatBarForeground}"
HorizontalAlignment="Left" Margin="10,8">
<Run Text="图形" />
<Run Text="(第一行支持长按保持选中)" FontSize="10" />
</TextBlock>
<ui:SymbolIcon Margin="0,-20,8,15" Symbol="Pin"
MouseDown="Border_MouseDown"
MouseUp="SymbolIconPinBorderDrawShape_MouseUp"
Foreground="{DynamicResource FloatBarForeground}"
HorizontalAlignment="Right" />
<ui:SimpleStackPanel Margin="20,0,0,0" Orientation="Horizontal">
<ui:SimpleStackPanel Visibility="Collapsed" Margin="58,6,5,6"
Width="54">
<Label Margin="0,0,0,-2" Content="自动隐藏"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="13"
VerticalAlignment="Center" />
<Viewbox Height="25">
<ui:ToggleSwitch
Name="ToggleSwitchDrawShapeBorderAutoHide"
Foreground="{DynamicResource FloatBarForeground}"
FontFamily="Microsoft YaHei UI" Width="70"
IsOn="True" />
</Viewbox>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="50" Spacing="14"
Orientation="Horizontal">
<Image Name="ImageDrawLine" Margin="16,12,0,12"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawLine_Click"
Source="{DynamicResource DrawShapeImageSource.Line}" />
<Image Name="ImageDrawDashedLine" Margin="0,12,0,12"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawDashedLine_Click"
Source="{DynamicResource DrawShapeImageSource.DashedLine}" />
<Image Name="ImageDrawDotLine" Margin="0,12,0,12"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawDotLine_Click"
Source="{DynamicResource DrawShapeImageSource.DotLine}" />
<Image Name="ImageDrawArrow" Margin="0,12,0,12"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawArrow_Click"
Source="{DynamicResource DrawShapeImageSource.ArrowLine}" />
<Image Name="ImageDrawParallelLine" Margin="0,11.5,16,11.5"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawParallelLine_Click"
Source="{DynamicResource DrawShapeImageSource.ParallelLine}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="50" Spacing="15"
Orientation="Horizontal">
<Image Margin="16,12,0,12" MouseUp="BtnDrawCoordinate1_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate1}" />
<Image Margin="0,12" MouseUp="BtnDrawCoordinate2_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate2}" />
<Image Margin="0,12" MouseUp="BtnDrawCoordinate3_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate3}" />
<Image Margin="0,12" MouseUp="BtnDrawCoordinate4_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate4}" />
<Image Margin="-1,11.5" MouseUp="BtnDrawCoordinate5_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate5}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="16,11,2,11"
MouseUp="BtnDrawRectangleCenter_Click"
Source="{DynamicResource DrawShapeImageSource.RectangleCenter}" />
<Image Visibility="Collapsed" Margin="0,10"
MouseUp="BtnDrawEllipse_Click"
Source="{DynamicResource DrawShapeImageSource.Ellipse}" />
<Image Margin="0,10" MouseUp="BtnDrawCircle_Click"
Source="{DynamicResource DrawShapeImageSource.Circle}" />
<Image Margin="0,10" MouseUp="BtnDrawDashedCircle_Click"
Source="{DynamicResource DrawShapeImageSource.DashedCircle}" />
<Image Margin="0,10" MouseUp="BtnDrawCenterEllipse_Click"
Source="{DynamicResource DrawShapeImageSource.EllipseCenter}"
Width="30" />
<Image Margin="0,10"
MouseUp="BtnDrawCenterEllipseWithFocalPoint_Click"
Source="{DynamicResource DrawShapeImageSource.EllipseCenterWithFocalPoint}"
Width="30" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="16,10,2,10" MouseUp="BtnDrawHyperbola_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Hyperbola}" />
<Image Margin="4,10,2,10"
MouseUp="BtnDrawHyperbolaWithFocalPoint_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.HyperbolaWithFocalPoint}" />
<Image Margin="2.5,10,2,10" MouseUp="BtnDrawParabola1_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Parabola}" />
<Image Margin="1,10,2,10"
MouseUp="BtnDrawParabolaWithFocalPoint_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.ParabolaWithFocalPoint}"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="90" />
<TranslateTransform />
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Margin="2,10,2,10" MouseUp="BtnDrawParabola2_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Parabola}"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="90" />
<TranslateTransform />
</TransformGroup>
</Image.RenderTransform>
</Image>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="15,11,2,11" MouseUp="BtnDrawRectangle_Click"
Source="{DynamicResource DrawShapeImageSource.Rectangle}" />
<Image Margin="6,10,2,10" MouseUp="BtnDrawCylinder_Click"
Source="{DynamicResource DrawShapeImageSource.Cylinder}" />
<Image Margin="8,12.5,0,10" MouseUp="BtnDrawCone_Click"
Source="{DynamicResource DrawShapeImageSource.Cone}" />
<Image Margin="5.5,12.5,2.5,10" MouseUp="BtnDrawCuboid_Click"
Source="{DynamicResource DrawShapeImageSource.Cuboid}" />
<Image Visibility="Collapsed" Margin="0,11.5,2.5,9.5"
MouseUp="BtnDrawCuboid_Click"
Source="{DynamicResource DrawShapeImageSource.Tetrahedron}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Viewbox>
</Border>
</Border>
<Border x:Name="BoardUndo" Width="60" Height="50" MouseDown="BoardToolBtnMouseDown" MouseLeave="BoardToolBtnMouseLeave"
MouseUp="BoardUndoMouseUp" BorderThickness="0,1,0,1"
BorderBrush="#a1a1aa"
IsEnabled="{Binding ElementName=SymbolIconUndo, Path=IsEnabled}"
Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20"
Opacity="{Binding ElementName=SymbolIconUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M8.71408,16.8493L0.874451,9.00964 8.71408,1.17001 8.71408,7.42358 15.7239,7.42358C16.7074,7.42358 17.6791,7.62744 18.583,8.02124 19.4866,8.41493 20.3023,8.98966 20.9857,9.70849 21.6689,10.4271 22.2069,11.276 22.5726,12.2047 22.9383,13.1333 23.1256,14.126 23.1256,15.1268 23.1256,16.1276 22.9383,17.1203 22.5726,18.0489 22.2069,18.9776 21.6689,19.8264 20.9857,20.5451 20.3023,21.2639 19.4866,21.8387 18.583,22.2324 17.6791,22.6262 16.7074,22.83 15.7239,22.83L10.437,22.83 10.437,19.6579 15.7239,19.6579C16.2679,19.6579 16.8086,19.5453 17.3159,19.3243 17.8235,19.1031 18.29,18.7767 18.6867,18.3594 19.0835,17.942 19.4023,17.4422 19.6211,16.8866 19.8399,16.3308 19.9534,15.7326 19.9534,15.1268 19.9534,14.5209 19.8399,13.9227 19.6211,13.367 19.4023,12.8114 19.0835,12.3115 18.6867,11.8941 18.29,11.4769 17.8235,11.1505 17.3159,10.9293 16.8086,10.7083 16.2679,10.5957 15.7239,10.5957L8.71408,10.5957 8.71408,16.8493z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Opacity="{Binding ElementName=SymbolIconUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}"
Text="撤销" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border x:Name="BoardRedo" Width="60" Height="50" CornerRadius="0,5,5,0"
MouseDown="BoardToolBtnMouseDown" MouseLeave="BoardToolBtnMouseLeave" MouseUp="BoardRedoMouseUp"
BorderThickness="0,1,1,1"
BorderBrush="#a1a1aa"
IsEnabled="{Binding ElementName=SymbolIconRedo, Path=IsEnabled}"
Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20"
Opacity="{Binding ElementName=SymbolIconRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M15.2859,16.8493L23.1255,9.00964 15.2859,1.17001 15.2859,7.42358 8.27607,7.42358C7.29262,7.42358 6.32086,7.62744 5.41703,8.02124 4.51341,8.41493 3.69773,8.98966 3.01434,9.70849 2.33111,10.4271 1.79312,11.276 1.42741,12.2047 1.06174,13.1333 0.874422,14.126 0.874422,15.1268 0.874422,16.1276 1.06174,17.1203 1.42741,18.0489 1.79312,18.9776 2.33111,19.8264 3.01434,20.5451 3.69773,21.2639 4.51341,21.8387 5.41703,22.2324 6.32086,22.6262 7.29262,22.83 8.27607,22.83L13.563,22.83 13.563,19.6579 8.27607,19.6579C7.7321,19.6579 7.19139,19.5453 6.68406,19.3243 6.17652,19.1031 5.70999,18.7767 5.31333,18.3594 4.91651,17.942 4.59775,17.4422 4.37894,16.8866 4.1601,16.3308 4.04656,15.7326 4.04656,15.1268 4.04656,14.5209 4.1601,13.9227 4.37894,13.367 4.59775,12.8114 4.91651,12.3115 5.31333,11.8941 5.70999,11.4769 6.17652,11.1505 6.68406,10.9293 7.19139,10.7083 7.7321,10.5957 8.27607,10.5957L15.2859,10.5957 15.2859,16.8493z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="重做" Opacity="{Binding ElementName=SymbolIconRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
</ui:SimpleStackPanel>
<Border Name="BoardMouseFeedbakBorder" Visibility="Collapsed" IsHitTestVisible="False" Width="60" HorizontalAlignment="Left" Height="50" Padding="1">
<Border CornerRadius="4.5,0,0,0" Background="#2509090b" />
</Border>
</Grid>
</Border>
<Border CornerRadius="5,5,5,5" Background="#f4f4f5">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="60" Height="50" MouseDown="Border_MouseDown"
MouseUp="SymbolIconTools_MouseUp" Background="#f4f4f5" Opacity="0.95"
BorderThickness="1,1,0,1" BorderBrush="#a1a1aa"
CornerRadius="5,0,0,5">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F1 M24,24z M0,0z M3.336,1.17001C2.13975,1.17001,1.17,2.13976,1.17,3.33601L1.17,8.75101C1.17,9.94726,2.13975,10.917,3.336,10.917L8.751,10.917C9.94725,10.917,10.917,9.94726,10.917,8.75101L10.917,3.33601C10.917,2.13976,9.94725,1.17001,8.751,1.17001L3.336,1.17001z M15.249,1.17001C14.0527,1.17001,13.083,2.13976,13.083,3.33601L13.083,8.75101C13.083,9.94726,14.0527,10.917,15.249,10.917L20.664,10.917C21.8602,10.917,22.83,9.94726,22.83,8.75101L22.83,3.33601C22.83,2.13976,21.8602,1.17001,20.664,1.17001L15.249,1.17001z M3.336,13.083C2.13975,13.083,1.17,14.0528,1.17,15.249L1.17,20.664C1.17,21.8603,2.13975,22.83,3.336,22.83L8.751,22.83C9.94725,22.83,10.917,21.8603,10.917,20.664L10.917,15.249C10.917,14.0528,9.94725,13.083,8.751,13.083L3.336,13.083z M15.249,13.083C14.0527,13.083,13.083,14.0528,13.083,15.249L13.083,20.664C13.083,21.8603,14.0527,22.83,15.249,22.83L20.664,22.83C21.8602,22.83,22.83,21.8603,22.83,20.664L22.83,15.249C22.83,14.0528,21.8602,13.083,20.664,13.083L15.249,13.083z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="工具" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Border>
<Grid Width="0" Margin="0,0,0,5" RenderTransformOrigin="0,1">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1.5" ScaleY="1.5" />
<SkewTransform />
<RotateTransform />
<TranslateTransform />
</TransformGroup>
</Grid.RenderTransform>
<Border ClipToBounds="True" Name="BoardBorderTools"
Margin="-105,-138.5,-14,33.5"
CornerRadius="5" Background="#fafafa" Opacity="1"
BorderThickness="1"
BorderBrush="#2563eb">
<ui:SimpleStackPanel Margin="-1,0,0,0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="6,6,0,0" Background="#2563eb"
Margin="-1,-1,-1,0"
Padding="1,1,1,0">
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Stretch">
<TextBlock Text="更多功能" Foreground="White"
Padding="8,5,44,5"
FontSize="11" FontWeight="Bold"
TextAlignment="Center" />
<Image Margin="0,0,0,0"
Source="/Resources/new-icons/close-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" MouseDown="Border_MouseDown"
MouseUp="CloseBordertools_MouseUp" />
</ui:SimpleStackPanel>
</Border>
<!---->
<ui:SimpleStackPanel Margin="10,3,10,2" Spacing="-2">
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="ImageCountdownTimer_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M12,3C11.7613,3 11.5324,3.09482 11.3636,3.2636 11.1948,3.43239 11.1,3.6613 11.1,3.9L11.1,6.6C11.1,7.09705 11.5029,7.5 12,7.5 12.4971,7.5 12.9,7.09705 12.9,6.6L12.9,4.85646C14.3196,5.0353 15.6613,5.63436 16.7472,6.58675 18.0606,7.73848 18.9104,9.32838 19.1384,11.0602 19.3664,12.792 18.957,14.5477 17.9865,16.0001 17.0162,17.4525 15.5508,18.5026 13.8635,18.9547 12.1762,19.4067 10.3822,19.2301 8.81552,18.4575 7.24888,17.6849 6.01653,16.3691 5.34806,14.7554 4.67961,13.1415 4.62062,11.3397 5.1821,9.68563 5.49617,8.76044 5.99235,7.91676 6.63344,7.2 6.96481,6.8295 6.93309,6.26054 6.5626,5.92917 6.19212,5.59781 5.62315,5.62952 5.29179,6.00001 4.49049,6.8959 3.87021,7.95054 3.47763,9.10704 2.77577,11.1746 2.84951,13.4269 3.68509,15.4441 4.52067,17.4614 6.0611,19.1061 8.0194,20.0718 9.97769,21.0375 12.2203,21.2585 14.3294,20.6933 16.4384,20.1282 18.2701,18.8156 19.4832,17.0001 20.6963,15.1847 21.208,12.9901 20.923,10.8252 20.638,8.66047 19.5758,6.67311 17.9341,5.23344 16.2925,3.79377 14.1835,3 12,3z M9.0364,7.7636C8.68492,7.41213 8.11508,7.41213 7.7636,7.7636 7.41213,8.11508 7.41213,8.68492 7.7636,9.0364L10.2609,11.5338C10.2212,11.6825 10.2,11.8387 10.2,12 10.2,12.9941 11.0059,13.8 12,13.8 12.9941,13.8 13.8,12.9941 13.8,12 13.8,11.0059 12.9941,10.2 12,10.2 11.8387,10.2 11.6825,10.2212 11.5338,10.2609L9.0364,7.7636z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="计时器" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconRand_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M15.9475,4.75965C15.7358,5.18305,15.9074,5.69791,16.3308,5.90961L16.9034,6.19589C14.0673,6.82039 11.7039,8.89176 10.7582,11.729 9.8511,14.4502 7.3045,16.2857 4.43608,16.2857L3.85713,16.2857C3.38376,16.2857 3,16.6694 3,17.1428 3,17.6162 3.38376,17.9999 3.85713,17.9999L4.43608,17.9999C8.04237,17.9999 11.2441,15.6923 12.3845,12.271 13.2915,9.54985 15.8381,7.71436 18.7066,7.71436L20.124,7.71436C20.1661,7.71524 20.208,7.71301 20.2494,7.70777 20.4903,7.67729 20.7143,7.54515 20.8554,7.33338 20.9116,7.24952 20.9533,7.15519 20.9771,7.05396 21.001,6.95301 21.0059,6.85024 20.9932,6.75036 20.9627,6.50938 20.8304,6.28523 20.6184,6.14418 20.5838,6.12101 20.5474,6.1003 20.5094,6.08229L17.0974,4.37632C16.674,4.16462,16.1592,4.33624,15.9475,4.75965z M20.8557,16.667C20.9116,16.7507 20.9533,16.8447 20.977,16.9456 21.001,17.0467 21.0059,17.1497 20.9932,17.2498 20.9626,17.4908 20.8303,17.7148 20.6185,17.8558 20.5838,17.8791 20.5474,17.8997 20.5094,17.9177L17.0975,19.6237C16.674,19.8354 16.1592,19.6638 15.9475,19.2404 15.7358,18.817 15.9074,18.3022 16.3308,18.0904L17.0491,17.7313C15.7728,17.4079 14.5941,16.8029 13.5952,15.9737 13.231,15.6713 13.1809,15.1308 13.4833,14.7667 13.7857,14.4025 14.3261,14.3523 14.6903,14.6547 15.9326,15.6862 17.5188,16.2857 19.2067,16.2857L20.1241,16.2857C20.1662,16.2848 20.2081,16.287 20.2495,16.2923 20.4905,16.3228 20.7146,16.455 20.8557,16.667z M3,6.85722C3,6.38384,3.38376,6.00009,3.85713,6.00009L4.36455,6.00009C6.25231,6.00009 8.03834,6.60414 9.50119,7.6588 9.88517,7.93565 9.972,8.47136 9.69519,8.85534 9.41835,9.23934 8.88264,9.32619 8.49866,9.04935 7.32072,8.2001 5.88391,7.71436 4.36455,7.71436L3.85713,7.71436C3.38376,7.71436,3,7.3306,3,6.85722z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="随机抽" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconRandOne_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M3.9,9.3C4.39706,9.3,4.8,8.89706,4.8,8.4L4.8,4.8 8.4,4.8C8.89705,4.8 9.3,4.39706 9.3,3.9 9.3,3.40295 8.89705,3 8.4,3L3.9,3C3.6613,3 3.43239,3.09482 3.2636,3.2636 3.09482,3.43239 3,3.6613 3,3.9L3,8.4C3,8.89706,3.40295,9.3,3.9,9.3z M3.9,14.7C4.39706,14.7,4.8,15.1029,4.8,15.6L4.8,19.2 8.4,19.2C8.89705,19.2 9.3,19.6029 9.3,20.1 9.3,20.5971 8.89705,21 8.4,21L3.9,21C3.6613,21 3.43239,20.9051 3.2636,20.7364 3.09482,20.5676 3,20.3387 3,20.1L3,15.6C3,15.1029,3.40295,14.7,3.9,14.7z M20.1,9.3C19.6029,9.3,19.2,8.89706,19.2,8.4L19.2,4.8 15.6,4.8C15.1029,4.8 14.7,4.39706 14.7,3.9 14.7,3.40295 15.1029,3 15.6,3L20.1,3C20.3387,3 20.5676,3.09482 20.7364,3.2636 20.9051,3.43239 21,3.6613 21,3.9L21,8.4C21,8.89706,20.5971,9.3,20.1,9.3z M20.1,14.7C19.6029,14.7,19.2,15.1029,19.2,15.6L19.2,19.2 15.6,19.2C15.1029,19.2 14.7,19.6029 14.7,20.1 14.7,20.5971 15.1029,21 15.6,21L20.1,21C20.3387,21 20.5676,20.9051 20.7364,20.7364 20.9051,20.5676 21,20.3387 21,20.1L21,15.6C21,15.1029,20.5971,14.7,20.1,14.7z M8.4,10.2C8.4,8.21177 10.0118,6.6 12,6.6 13.9882,6.6 15.6,8.21177 15.6,10.2 15.6,12.1882 13.9882,13.8 12,13.8 10.0118,13.8 8.4,12.1882 8.4,10.2z M12,8.4C11.0059,8.4 10.2,9.20589 10.2,10.2 10.2,11.1941 11.0059,12 12,12 12.9941,12 13.8,11.1941 13.8,10.2 13.8,9.20589 12.9941,8.4 12,8.4z M7.5,16.5C7.5,16.0029,7.90295,15.6,8.4,15.6L15.6,15.6C16.0971,15.6 16.5,16.0029 16.5,16.5 16.5,16.9971 16.0971,17.4 15.6,17.4L8.4,17.4C7.90295,17.4,7.5,16.9971,7.5,16.5z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="单次抽选" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconSaveStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M6,5C5.73478,5 5.48043,5.10536 5.29289,5.29289 5.10536,5.48043 5,5.73478 5,6L5,18C5,18.2652 5.10536,18.5196 5.29289,18.7071 5.48043,18.8946 5.73478,19 6,19L18,19C18.2652,19 18.5196,18.8946 18.7071,18.7071 18.8946,18.5196 19,18.2652 19,18L19,8.41421 15.5858,5 15,5 15,8C15,8.55228,14.5523,9,14,9L8,9C7.44772,9,7,8.55228,7,8L7,5 6,5z M8,3L6,3C5.20435,3 4.44129,3.31607 3.87868,3.87868 3.31607,4.44129 3,5.20435 3,6L3,18C3,18.7956 3.31607,19.5587 3.87868,20.1213 4.44129,20.6839 5.20435,21 6,21L18,21C18.7957,21 19.5587,20.6839 20.1213,20.1213 20.6839,19.5587 21,18.7957 21,18L21,8C21,7.73478,20.8946,7.48043,20.7071,7.29289L16.7071,3.29289C16.5196,3.10536,16.2652,3,16,3L14,3 8,3z M9,5L9,7 13,7 13,5 9,5z M9.87868,11.8787C10.4413,11.3161 11.2043,11 12,11 12.7957,11 13.5587,11.3161 14.1213,11.8787 14.6839,12.4413 15,13.2043 15,14 15,14.7957 14.6839,15.5587 14.1213,16.1213 13.5587,16.6839 12.7957,17 12,17 11.2043,17 10.4413,16.6839 9.87868,16.1213 9.31607,15.5587 9,14.7957 9,14 9,13.2043 9.31607,12.4413 9.87868,11.8787z M12,13C11.7348,13 11.4804,13.1054 11.2929,13.2929 11.1054,13.4804 11,13.7348 11,14 11,14.2652 11.1054,14.5196 11.2929,14.7071 11.4804,14.8946 11.7348,15 12,15 12.2652,15 12.5196,14.8946 12.7071,14.7071 12.8946,14.5196 13,14.2652 13,14 13,13.7348 12.8946,13.4804 12.7071,13.2929 12.5196,13.1054 12.2652,13 12,13z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="保存" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconOpenStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M5,5C4.73478,5 4.48043,5.10536 4.29289,5.29289 4.10536,5.48043 4,5.73478 4,6L4,17C4,17.2652 4.10536,17.5196 4.29289,17.7071 4.32236,17.7366 4.35349,17.764 4.38604,17.7893L6.82062,11.298C6.82065,11.2979 6.8206,11.2981 6.82062,11.298 6.96351,10.9169 7.21932,10.5883 7.55377,10.3564 7.88827,10.1245 8.28558,10.0002 8.69262,10L20,10 20,9C20,8.73478 19.8946,8.48043 19.7071,8.29289 19.5196,8.10536 19.2652,8 19,8L12,8C11.7348,8,11.4804,7.89464,11.2929,7.70711L8.58579,5 5,5z M20.9992,12L8.69338,12 6.44307,18 19.0257,18C19.0258,18 19.0256,18 19.0257,18 19.2583,17.9999 19.4838,17.9187 19.663,17.7705 19.8422,17.6222 19.9641,17.416 20.0077,17.1875L20.9992,12z M22,10.2682C22.1988,10.383 22.3767,10.5315 22.5256,10.7073 22.7133,10.9288 22.8504,11.1885 22.9276,11.4684 23.0048,11.7483 23.0201,12.0416 22.9725,12.328L22.9682,12.3517 21.9723,17.5625C21.8414,18.248 21.4756,18.8665 20.9379,19.3114 20.4002,19.7563 19.7242,19.9998 19.0263,20L5,20C4.20435,20 3.44129,19.6839 2.87868,19.1213 2.31607,18.5587 2,17.7956 2,17L2,6C2,5.20435 2.31607,4.44129 2.87868,3.87868 3.44129,3.31607 4.20435,3 5,3L9,3C9.26522,3,9.51957,3.10536,9.70711,3.29289L12.4142,6 19,6C19.7957,6 20.5587,6.31607 21.1213,6.87868 21.6839,7.44129 22,8.20435 22,9L22,10.2682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="打开..." FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="GridInkReplayButton_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M11,4.99999C11,4.60761 10.7705,4.25149 10.4132,4.08935 10.0559,3.92722 9.63679,3.98903 9.3415,4.24741L1.3415,11.2474C1.12448,11.4373 1,11.7116 1,12 1,12.2883 1.12448,12.5627 1.3415,12.7526L9.3415,19.7526C9.63679,20.0109 10.0559,20.0728 10.4132,19.9106 10.7705,19.7485 11,19.3924 11,19L11,4.99999z M9,16.7962L3.51859,12 9,7.20375 9,16.7962z M22,4.99999C22,4.60761 21.7705,4.25149 21.4132,4.08935 21.0559,3.92722 20.6368,3.98903 20.3415,4.24741L12.3415,11.2474C12.1245,11.4373 12,11.7116 12,12 12,12.2883 12.1245,12.5627 12.3415,12.7526L20.3415,19.7526C20.6368,20.0109 21.0559,20.0728 21.4132,19.9106 21.7705,19.7485 22,19.3924 22,19L22,4.99999z M20,16.7962L14.5186,12 20,7.20375 20,16.7962z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="重播" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconScreenshot_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M9,3C8.46957,3 7.96086,3.21071 7.58579,3.58579 7.21071,3.96086 7,4.46957 7,5 7,5.26522 6.89464,5.51957 6.70711,5.70711 6.51957,5.89464 6.26522,6 6,6L5,6C4.20435,6 3.44129,6.31607 2.87868,6.87868 2.31607,7.44129 2,8.20435 2,9L2,18C2,18.7956 2.31607,19.5587 2.87868,20.1213 3.44129,20.6839 4.20435,21 5,21L19,21C19.7957,21 20.5587,20.6839 21.1213,20.1213 21.6839,19.5587 22,18.7957 22,18L22,9C22,8.20435 21.6839,7.44129 21.1213,6.87868 20.5587,6.31607 19.7957,6 19,6L18,6C17.7348,6 17.4804,5.89464 17.2929,5.70711 17.1054,5.51957 17,5.26522 17,5 17,4.46957 16.7893,3.96086 16.4142,3.58579 16.0391,3.21071 15.5304,3 15,3L9,3z M9,5L15,5C15,5.79565 15.3161,6.55871 15.8787,7.12132 16.4413,7.68393 17.2044,8 18,8L19,8C19.2652,8 19.5196,8.10536 19.7071,8.29289 19.8946,8.48043 20,8.73478 20,9L20,18C20,18.2652 19.8946,18.5196 19.7071,18.7071 19.5196,18.8946 19.2652,19 19,19L5,19C4.73478,19 4.48043,18.8946 4.29289,18.7071 4.10536,18.5196 4,18.2652 4,18L4,9C4,8.73478 4.10536,8.48043 4.29289,8.29289 4.48043,8.10536 4.73478,8 5,8L6,8C6.79565,8 7.55871,7.68393 8.12132,7.12132 8.68393,6.55871 9,5.79565 9,5z M12,9C10.9391,9 9.92172,9.42143 9.17157,10.1716 8.42143,10.9217 8,11.9391 8,13 8,14.0609 8.42143,15.0783 9.17157,15.8284 9.92172,16.5786 10.9391,17 12,17 13.0609,17 14.0783,16.5786 14.8284,15.8284 15.5786,15.0783 16,14.0609 16,13 16,11.9391 15.5786,10.9217 14.8284,10.1716 14.0783,9.42143 13.0609,9 12,9z M10.5858,11.5858C10.9609,11.2107 11.4696,11 12,11 12.5304,11 13.0391,11.2107 13.4142,11.5858 13.7893,11.9609 14,12.4696 14,13 14,13.5304 13.7893,14.0391 13.4142,14.4142 13.0391,14.7893 12.5304,15 12,15 11.4696,15 10.9609,14.7893 10.5858,14.4142 10.2107,14.0391 10,13.5304 10,13 10,12.4696 10.2107,11.9609 10.5858,11.5858z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="截屏" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="OperatingGuideWindowIcon_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M8.17317,2.7612C9.38642,2.25866 10.6868,2 12,2 13.3132,2 14.6136,2.25866 15.8268,2.7612 17.0401,3.26375 18.1425,4.00035 19.0711,4.92893 19.9997,5.85752 20.7362,6.95991 21.2388,8.17317 21.7413,9.38642 22,10.6868 22,12 22,13.3132 21.7413,14.6136 21.2388,15.8268 20.7362,17.0401 19.9997,18.1425 19.0711,19.0711 18.1425,19.9997 17.0401,20.7362 15.8268,21.2388 14.6136,21.7413 13.3132,22 12,22 10.6868,22 9.38642,21.7413 8.17317,21.2388 6.95991,20.7362 5.85752,19.9997 4.92893,19.0711 4.00035,18.1425 3.26375,17.0401 2.7612,15.8268 2.25866,14.6136 2,13.3132 2,12 2,10.6868 2.25866,9.38642 2.7612,8.17317 3.26375,6.95991 4.00035,5.85752 4.92893,4.92893 5.85752,4.00035 6.95991,3.26375 8.17317,2.7612z M12,4C10.9494,4 9.90914,4.20693 8.93853,4.60896 7.96793,5.011 7.08601,5.60028 6.34315,6.34315 5.60028,7.08601 5.011,7.96793 4.60896,8.93853 4.20693,9.90914 4,10.9494 4,12 4,13.0506 4.20693,14.0909 4.60896,15.0615 5.011,16.0321 5.60028,16.914 6.34315,17.6569 7.08601,18.3997 7.96793,18.989 8.93853,19.391 9.90914,19.7931 10.9494,20 12,20 13.0506,20 14.0909,19.7931 15.0615,19.391 16.0321,18.989 16.914,18.3997 17.6569,17.6569 18.3997,16.914 18.989,16.0321 19.391,15.0615 19.7931,14.0909 20,13.0506 20,12 20,10.9494 19.7931,9.90914 19.391,8.93853 18.989,7.96793 18.3997,7.08602 17.6569,6.34315 16.914,5.60028 16.0321,5.011 15.0615,4.60896 14.0909,4.20693 13.0506,4 12,4z M12,16C12.5523,16,13,16.4477,13,17L13,17.01C13,17.5623 12.5523,18.01 12,18.01 11.4477,18.01 11,17.5623 11,17.01L11,17C11,16.4477,11.4477,16,12,16z M12.0813,5.97153C11.5241,5.96998 10.9742,6.09779 10.4748,6.3449 9.97535,6.59201 9.54013,6.95167 9.20334,7.39557 8.86952,7.83555 8.95559,8.46284 9.39557,8.79666 9.83555,9.13047 10.4628,9.04441 10.7967,8.60443 10.9463,8.40714 11.1398,8.24729 11.3617,8.13746 11.5837,8.02764 11.8281,7.97083 12.0758,7.97152 12.3234,7.97221 12.5675,8.03037 12.7888,8.14142 13.0102,8.25248 13.2027,8.4134 13.3513,8.61151 13.4999,8.80963 13.6005,9.03953 13.6451,9.28311 13.6897,9.5267 13.6772,9.77732 13.6086,10.0152 13.5399,10.2532 13.4169,10.4719 13.2493,10.6542 13.084,10.8341 12.8798,10.9736 12.6524,11.0623 12.1479,11.2435 11.7149,11.5821 11.4175,12.0283 11.1169,12.4792 10.9709,13.0156 11.0016,13.5566 11.0329,14.108 11.5052,14.5297 12.0566,14.4984 12.608,14.4671 13.0297,13.9948 12.9984,13.4434 12.9923,13.3352 13.0214,13.2279 13.0816,13.1377 13.1417,13.0475 13.2295,12.9793 13.3317,12.9434 13.3403,12.9404 13.3487,12.9373 13.3572,12.934 13.8776,12.735 14.3448,12.4179 14.7218,12.0077 15.0989,11.5974 15.3756,11.1053 15.5301,10.5699 15.6846,10.0346 15.7128,9.47068 15.6124,8.92261 15.5119,8.37454 15.2856,7.85727 14.9513,7.41151 14.617,6.96576 14.1838,6.60369 13.6857,6.35381 13.1877,6.10393 12.6385,5.97307 12.0813,5.97153z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="说明书" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconSettings_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M4.66591,7.13141L11.4017,3.15976C11.5957,3.0552 11.8126,3.00041 12.033,3.00041 12.2534,3.00041 12.4704,3.0552 12.6643,3.15977L19.2182,7.02415C19.2676,7.06721 19.3219,7.10586 19.3806,7.13926 19.5699,7.24687 19.727,7.40296 19.8358,7.59146 19.9447,7.77997 20.0014,7.99407 20,8.21175L20,8.21175 20,8.218 20,15.502C20,15.943 19.7585,16.3548 19.3603,16.5737 19.3424,16.5835 19.3247,16.5939 19.3074,16.6049L12.5874,20.8559C12.4062,20.9506 12.2047,21.0001 12,21.0001 11.7953,21.0001 11.5938,20.9506 11.4126,20.8559L4.69261,16.6049C4.6746,16.5935 4.65624,16.5827 4.63755,16.5725 4.44494,16.4672 4.28416,16.3122 4.172,16.1235 4.05999,15.9351 4.00059,15.72 4,15.5008L4,8.217C4,7.77653 4.24107,7.36544 4.63968,7.14635 4.6485,7.1415 4.65724,7.13652 4.66591,7.13141z M20.4159,5.40859C20.4791,5.44583 20.5369,5.4892 20.589,5.53759 20.9895,5.81003 21.3244,6.16988 21.5678,6.59125 21.8538,7.08656 22.003,7.649 22,8.22093L22,15.502C22,16.6678,21.3677,17.7387,20.353,18.31L13.6266,22.5651C13.6092,22.5761 13.5914,22.5866 13.5733,22.5966 13.0911,22.8613 12.55,23.0001 12,23.0001 11.45,23.0001 10.9089,22.8613 10.4267,22.5966 10.4086,22.5866 10.3908,22.5761 10.3734,22.5651L3.64791,18.3106C3.15439,18.0339 2.74214,17.6322 2.45282,17.1455 2.15755,16.6488 2.00116,16.0818 2,15.504L2,15.502 2,8.217C2,7.04497,2.63892,5.97063,3.6619,5.40163L10.4001,1.42859C10.4084,1.4237 10.4167,1.41894 10.4252,1.41429 10.9176,1.1428 11.4707,1.00041 12.033,1.00041 12.5953,1.00041 13.1484,1.1428 13.6408,1.41429 13.6493,1.41894 13.6576,1.4237 13.6659,1.42859L20.4159,5.40859z M12,8C10.9391,8 9.92172,8.42143 9.17157,9.17157 8.42143,9.92172 8,10.9391 8,12 8,13.0609 8.42143,14.0783 9.17157,14.8284 9.92172,15.5786 10.9391,16 12,16 13.0609,16 14.0783,15.5786 14.8284,14.8284 15.5786,14.0783 16,13.0609 16,12 16,10.9391 15.5786,9.92172 14.8284,9.17157 14.0783,8.42143 13.0609,8 12,8z M10.5858,10.5858C10.9609,10.2107 11.4696,10 12,10 12.5304,10 13.0391,10.2107 13.4142,10.5858 13.7893,10.9609 14,11.4696 14,12 14,12.5304 13.7893,13.0391 13.4142,13.4142 13.0391,13.7893 12.5304,14 12,14 11.4696,14 10.9609,13.7893 10.5858,13.4142 10.2107,13.0391 10,12.5304 10,12 10,11.4696 10.2107,10.9609 10.5858,10.5858z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="设置" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
</Border>
<Border Width="60" Height="50" MouseDown="Border_MouseDown"
MouseUp="ImageBlackboard_MouseUp"
CornerRadius="0,5,5,0" Background="#f4f4f5" Opacity="0.95"
BorderThickness="0,1,1,1"
BorderBrush="#a1a1aa">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M12,23.4102C18.3017,23.4102 23.4102,18.3017 23.4102,12 23.4102,5.69834 18.3017,0.589813 12,0.589813 5.69834,0.589813 0.589813,5.69834 0.589813,12 0.589813,18.3017 5.69834,23.4102 12,23.4102z M8.25212,6.38964C7.73781,5.87533 6.90395,5.87533 6.38964,6.38964 5.87533,6.90395 5.87533,7.73781 6.38964,8.25212L10.1375,12 6.38964,15.7479C5.87533,16.2622 5.87533,17.0961 6.38964,17.6104 6.90395,18.1247 7.73781,18.1247 8.25212,17.6104L12,13.8625 15.7479,17.6104C16.2622,18.1247 17.0961,18.1247 17.6104,17.6104 18.1247,17.0961 18.1247,16.2622 17.6104,15.7479L13.8625,12 17.6104,8.25212C18.1247,7.73781 18.1247,6.90395 17.6104,6.38964 17.0961,5.87533 16.2622,5.87533 15.7479,6.38964L12,10.1375 8.25212,6.38964z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="退出" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
</ui:SimpleStackPanel>
</Grid>
</Viewbox>
<!-- 右下角 -->
<Viewbox x:Name="ViewboxBlackboardRightSide" Margin="0,0,3,0" Height="55" HorizontalAlignment="Right"
VerticalAlignment="Bottom">
<Viewbox.LayoutTransform>
<ScaleTransform x:Name="ViewboxBlackboardRightSideScaleTransform" ScaleX="1" ScaleY="1" />
</Viewbox.LayoutTransform>
<Grid Name="BlackboardRightSide" Visibility="Visible" Margin="0,0,0,3" Height="50"
HorizontalAlignment="Center" VerticalAlignment="Bottom">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="5">
<Border Width="60" Height="50" Name="BtnWhiteboardAddRight"
BorderThickness="1" BorderBrush="#a1a1aa"
MouseUp="BtnWhiteBoardAdd_Click" CornerRadius="5" Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" x:Name="BtnWhiteboardAddGeometryRight"
Geometry="F0 M24,24z M0,0z M7.39778,13.723L10.7693,13.723 10.7693,10.3514 13.2307,10.3514 13.2307,13.723 16.6022,13.723 16.6022,16.1843 13.2307,16.1843 13.2307,19.5559 10.7693,19.5559 10.7693,16.1843 7.39778,16.1843 7.39778,13.723z M3.1391,1.17001L3.1391,22.83 20.8609,22.83 20.8609,6.66948 15.3614,1.17002 3.1391,1.17001z M12.9846,3.13911L5.10819,3.1391 5.10819,20.8609 18.8918,20.8609 18.8918,9.04638 12.9846,9.04638 12.9846,3.13911z M18.484,7.07729L14.9536,3.54692 14.9536,7.07729 18.484,7.07729z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="新页面" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" Name="BtnWhiteboardAddTextBlockRight" />
</Grid>
</Border>
<Border CornerRadius="5,5,5,5" Background="#f4f4f5" Margin="0,0,0,0">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="60" Height="50" Name="BtnWhiteBoardSwitchPreviousR"
BorderThickness="1,1,0,1" BorderBrush="#a1a1aa"
MouseUp="BtnWhiteBoardSwitchPrevious_Click" CornerRadius="5,0,0,5"
Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
x:Name="BtnRightWhiteBoardSwitchPreviousGeometry"
Geometry="F1 M24,24z M0,0z M7.40091,10.456L14.5033,3.35357 12.3198,1.17001 1.48978,12 12.3198,22.83 14.5033,20.6465 7.40089,13.544 22.5102,13.544 22.5102,10.456 7.40091,10.456z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="上一页" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12"
Name="BtnRightWhiteBoardSwitchPreviousLabel" />
</Grid>
</Border>
<Border Width="75" Height="50" MouseUp="BtnWhiteBoardPageIndex_Click"
Name="BtnRightPageListWB"
BorderThickness="1,1,1,1" BorderBrush="#a1a1aa" Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<TextBlock HorizontalAlignment="Center"
Text="1/1" Name="BtnRightPageListWBTextCount"
Margin="0,-1,0,0" FontSize="17" FontWeight="Bold"
TextAlignment="Center" />
<TextBlock Text="页面" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" />
</Grid>
</Border>
<Grid Width="0" Margin="0,0,0,5">
<Border ClipToBounds="True" Name="BoardBorderRightPageListView"
Margin="-138,-465,-56,50"
CornerRadius="8"
Background="#fafafa" Opacity="1" BorderBrush="#a1a1aa"
BorderThickness="1">
<ui:ScrollViewerEx Name="BlackBoardRightSidePageListScrollViewer"
Height="460"
VerticalScrollBarVisibility="Hidden"
ForceUseSmoothScroll="True">
<ListView ScrollViewer.CanContentScroll="False" SelectionMode="Single"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
Name="BlackBoardRightSidePageListView">
<ListView.ItemTemplate>
<DataTemplate>
<ui:SimpleStackPanel Orientation="Vertical"
MouseUp="BlackBoardRightSidePageListView_OnMouseUp">
<Border Margin="0,4" Width="160" BorderBrush="#a1a1aa"
BorderThickness="1">
<Grid>
<Viewbox Width="160">
<InkCanvas EditingMode="None"
Background="{Binding ElementName=GridBackgroundCover, Path=Background}"
Strokes="{Binding Strokes}"
Width="{Binding ElementName=inkCanvas, Path=ActualWidth}"
Height="{Binding ElementName=inkCanvas, Path=ActualHeight}">
</InkCanvas>
</Viewbox>
<Border Margin="4" Width="36" Height="20"
CornerRadius="3" HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#cc09090b">
<TextBlock FontSize="14"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontFamily="Consolas"
Foreground="White"
Text="{Binding Index}">
</TextBlock>
</Border>
</Grid>
</Border>
</ui:SimpleStackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ui:ScrollViewerEx>
</Border>
</Grid>
<Border Width="60" Height="50" MouseUp="BtnWhiteBoardSwitchNext_Click"
Name="BtnWhiteBoardSwitchNextR"
CornerRadius="0,5,5,0"
BorderThickness="0,1,1,1" BorderBrush="#a1a1aa"
Background="#f4f4f5" Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
x:Name="BtnRightWhiteBoardSwitchNextGeometry"
Geometry="F1 M24,24z M0,0z M16.5991,10.456L9.49667,3.35357 11.6802,1.17001 22.5102,12 11.6802,22.83 9.49667,20.6465 16.5991,13.544 1.48978,13.544 1.48978,10.456 16.5991,10.456z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="下一页" Foreground="Black" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12"
Name="BtnRightWhiteBoardSwitchNextLabel" />
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
<Border Width="60" Height="50" Name="BtnWhiteboardAddRightSecondary"
BorderThickness="1" BorderBrush="#a1a1aa"
MouseUp="BtnWhiteBoardAdd_Click" CornerRadius="5" Background="#f4f4f5"
Opacity="0.95">
<Grid Margin="6,6,6,4">
<Image VerticalAlignment="Top"
RenderOptions.BitmapScalingMode="HighQuality" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b" x:Name="BtnWhiteboardAddGeometryRightSecondary"
Geometry="F0 M24,24z M0,0z M7.39778,13.723L10.7693,13.723 10.7693,10.3514 13.2307,10.3514 13.2307,13.723 16.6022,13.723 16.6022,16.1843 13.2307,16.1843 13.2307,19.5559 10.7693,19.5559 10.7693,16.1843 7.39778,16.1843 7.39778,13.723z M3.1391,1.17001L3.1391,22.83 20.8609,22.83 20.8609,6.66948 15.3614,1.17002 3.1391,1.17001z M12.9846,3.13911L5.10819,3.1391 5.10819,20.8609 18.8918,20.8609 18.8918,9.04638 12.9846,9.04638 12.9846,3.13911z M18.484,7.07729L14.9536,3.54692 14.9536,7.07729 18.484,7.07729z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Text="新页面" Foreground="#18181b" VerticalAlignment="Bottom"
HorizontalAlignment="Center" FontSize="12" Name="BtnWhiteboardAddTextBlockRightSecondary" />
</Grid>
</Border>
</ui:SimpleStackPanel>
</Grid>
</Viewbox>
</Grid>
</Grid>
<!-- 通知弹窗 -->
<Grid Name="GridNotifications" Margin="0,110" Visibility="Visible" HorizontalAlignment="Center"
VerticalAlignment="Bottom" />
<!--// Old UI //-->
<!--<Viewbox Name="ViewBoxStackPanelMain" Visibility="Collapsed" Margin="10,10,10,55" HorizontalAlignment="Right"
VerticalAlignment="Bottom" Width="46">
<StackPanel Name="StackPanelMain" Width="46">
<StackPanel Name="StackPanelControl">
<Button Name="BtnExit" Content="退出" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnExit_Click" Background="#7F909090" />
<Button Name="BtnThickness" Content="粗细" Visibility="Collapsed" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnThickness_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button Name="BtnSwitchTheme" Content="深色" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
-->
<!-- Click="BtnSwitchTheme_Click" -->
<!--
<Button Name="BtnSwitch" Content="背景" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnSwitch_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button x:Name="BtnHideInkCanvas" Content="隐藏&#x000A;画板" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnHideInkCanvas_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button x:Name="BtnCheckPPT" Visibility="Collapsed" Content="检查" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnCheckPPT_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<StackPanel Name="StackPanelPPTButtons">
<Button x:Name="BtnPPTSlideShow" Visibility="Collapsed" Content="从头&#x000A;放映"
FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlideShow_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button x:Name="BtnPPTSlideShowEnd" Visibility="Collapsed" Content="结束&#x000A;放映"
FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlideShowEnd_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<StackPanel Name="StackPanelPPTControls" Visibility="Collapsed">
<Button x:Name="BtnPPTSlidesUp" Content="↑" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlidesUp_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button x:Name="BtnPPTSlidesDown" Content="↓" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlidesDown_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
</StackPanel>
</StackPanel>
<Button x:Name="BtnSwitchSide" Content="⇆" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnSwitchSide_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
</StackPanel>
<Button x:Name="BtnHideControl" Content="⇅" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnHideControl_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
</StackPanel>
</Viewbox>
<Viewbox Name="ViewBoxStackPanelShapes" Margin="{Binding ElementName=ViewBoxStackPanelMain, Path=Margin}"
Width="46" HorizontalAlignment="Left" VerticalAlignment="Bottom" Visibility="Collapsed">
<StackPanel Name="StackPanelShapes" Width="46">
<Button Name="BtnFingerDragMode" Content="单指&#x000A;拖动" Visibility="Visible"
FontFamily="Microsoft YaHei UI"
Margin="0,25,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnFingerDragMode_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<StackPanel IsVisibleChanged="StackPanel_IsVisibleChanged"
Visibility="{Binding ElementName=StackPanelPPTButtons, Path=Visibility}">
<StackPanel Visibility="{Binding ElementName=StackPanelPPTControls, Path=Visibility}">
<Button Content="↑" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlidesUp_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Button Content="↓" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,15" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnPPTSlidesDown_Click"
Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
</StackPanel>
</StackPanel>
<Button x:Name="BtnUndo" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnUndo_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}"
IsEnabled="False" Visibility="Collapsed" IsEnabledChanged="Btn_IsEnabledChanged">
<StackPanel Opacity="0.2">
<ui:SymbolIcon Symbol="Undo" />
<TextBlock Text="撤销" Margin="0,4,0,0" />
</StackPanel>
</Button>
<Button x:Name="BtnRedo" FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Click="BtnRedo_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}"
IsEnabled="False" Visibility="Collapsed" IsEnabledChanged="Btn_IsEnabledChanged">
<StackPanel Opacity="0.2">
<ui:SymbolIcon Symbol="Redo" />
<TextBlock Text="恢复" Margin="0,4,0,0" />
</StackPanel>
</Button>
<Button Name="BtnClearAndHideCanvas" Content="清屏&#x000A;&amp;&#x000A;隐藏" Visibility="Collapsed"
FontFamily="Microsoft YaHei UI"
Margin="0,10,0,0" Width="{Binding ElementName=StackPanelMain, Path=ActualWidth}"
Block.TextAlignment="Center"
Click="BtnSelect_Click" Foreground="{Binding ElementName=BtnExit, Path=Foreground}"
Background="{Binding ElementName=BtnExit, Path=Background}" />
<Grid Name="GridForLeftSideReservedSpace"
Height="{Binding ElementName=StackPanelInfo, Path=ActualHeight}" />
</StackPanel>
</Viewbox>-->
<!--// PPT 工具栏 //-->
<Grid>
<Grid Visibility="Visible">
<Viewbox x:Name="LeftBottomPanelForPPTNavigation" Visibility="Collapsed" Margin="6,0,0,6" Height="50"
HorizontalAlignment="Left" VerticalAlignment="Bottom">
<Border BorderThickness="1" BorderBrush="#a1a1aa" Name="PPTBtnLBBorder"
Background="#f4f4f5" Opacity="1" CornerRadius="6">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="50" Height="50" MouseUp="GridPPTControlPrevious_MouseUp"
Name="PPTLBPreviousButtonBorder"
MouseDown="GridPPTControlPrevious_MouseDown"
MouseLeave="GridPPTControlPrevious_MouseLeave"
CornerRadius="5 5 0 0" Background="Transparent">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTLBPreviousButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a"
x:Name="PPTLBPreviousButtonGeometry"
Geometry="F0 M24,24z M0,0z M3.3994,12.9642C2.86687,12.4317,2.86687,11.5683,3.3994,11.0358L9.94485,4.49031C10.4774,3.95777 11.3408,3.95777 11.8733,4.49031 12.4059,5.02284 12.4059,5.88625 11.8733,6.41878L7.65575,10.6364 19.6364,10.6364C20.3895,10.6364 21,11.2469 21,12 21,12.7531 20.3895,13.3636 19.6364,13.3636L7.65575,13.3636 11.8733,17.5812C12.4059,18.1137 12.4059,18.9772 11.8733,19.5097 11.3408,20.0422 10.4774,20.0422 9.94485,19.5097L3.3994,12.9642z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Visibility="Visible" Name="PPTLBPageButton" TextBlock.Foreground="#171717"
MouseUp="PPTNavigationBtn_MouseUp" MouseDown="PPTNavigationBtn_MouseDown"
MouseLeave="PPTNavigationBtn_MouseLeave" Width="auto" MinWidth="50" Height="50"
Background="Transparent">
<Grid>
<Border Margin="0,3" CornerRadius="5" Name="PPTLBPageButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<ui:SimpleStackPanel VerticalAlignment="Center" Orientation="Vertical"
Spacing="0.5" Margin="12,0">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="17" FontWeight="Bold"
Text="{Binding ElementName=PPTBtnPageNow, Path=Text}" />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="10"
Text="{Binding ElementName=PPTBtnPageTotal, Path=Text}" />
</ui:SimpleStackPanel>
</Grid>
</Border>
<Border Width="50" Height="50" MouseUp="GridPPTControlNext_MouseUp"
MouseDown="GridPPTControlNext_MouseDown" MouseLeave="GridPPTControlNext_MouseLeave"
CornerRadius="0 0 5 5" Background="Transparent" Name="PPTLBNextButtonBorder">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTLBNextButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image VerticalAlignment="Center" HorizontalAlignment="Center" Height="28"
Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a"
x:Name="PPTLBNextButtonGeometry"
Geometry="F0 M24,24z M0,0z M20.6006,12.9642C21.1331,12.4317,21.1331,11.5683,20.6006,11.0358L14.0551,4.49031C13.5226,3.95777 12.6592,3.95777 12.1267,4.49031 11.5941,5.02284 11.5941,5.88625 12.1267,6.41878L16.3443,10.6364 4.36364,10.6364C3.61052,10.6364 3,11.2469 3,12 3,12.7531 3.61052,13.3636 4.36364,13.3636L16.3443,13.3636 12.1267,17.5812C11.5941,18.1137 11.5941,18.9772 12.1267,19.5097 12.6592,20.0422 13.5226,20.0422 14.0551,19.5097L20.6006,12.9642z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
<Viewbox x:Name="RightBottomPanelForPPTNavigation" Visibility="Collapsed" Margin="0,0,6,6" Height="50"
HorizontalAlignment="Right" VerticalAlignment="Bottom">
<Border BorderThickness="1" BorderBrush="#a1a1aa" Name="PPTBtnRBBorder"
Background="#f4f4f5" Opacity="1" CornerRadius="6">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border Width="50" Height="50" MouseUp="GridPPTControlPrevious_MouseUp"
Name="PPTRBPreviousButtonBorder"
MouseDown="GridPPTControlPrevious_MouseDown"
MouseLeave="GridPPTControlPrevious_MouseLeave"
CornerRadius="5 5 0 0" Background="Transparent">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTRBPreviousButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a"
x:Name="PPTRBPreviousButtonGeometry"
Geometry="F0 M24,24z M0,0z M3.3994,12.9642C2.86687,12.4317,2.86687,11.5683,3.3994,11.0358L9.94485,4.49031C10.4774,3.95777 11.3408,3.95777 11.8733,4.49031 12.4059,5.02284 12.4059,5.88625 11.8733,6.41878L7.65575,10.6364 19.6364,10.6364C20.3895,10.6364 21,11.2469 21,12 21,12.7531 20.3895,13.3636 19.6364,13.3636L7.65575,13.3636 11.8733,17.5812C12.4059,18.1137 12.4059,18.9772 11.8733,19.5097 11.3408,20.0422 10.4774,20.0422 9.94485,19.5097L3.3994,12.9642z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Visibility="Visible" Name="PPTRBPageButton" TextBlock.Foreground="#171717"
MouseUp="PPTNavigationBtn_MouseUp" MouseDown="PPTNavigationBtn_MouseDown"
MouseLeave="PPTNavigationBtn_MouseLeave" Width="auto" MinWidth="50" Height="50"
Background="Transparent">
<Grid>
<Border Margin="0,3" CornerRadius="5" Name="PPTRBPageButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<ui:SimpleStackPanel VerticalAlignment="Center" Orientation="Vertical"
Spacing="0.5" Margin="12,0">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="17" FontWeight="Bold"
Text="{Binding ElementName=PPTBtnPageNow, Path=Text}" />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="10"
Text="{Binding ElementName=PPTBtnPageTotal, Path=Text}" />
</ui:SimpleStackPanel>
</Grid>
</Border>
<Border Width="50" Height="50" MouseUp="GridPPTControlNext_MouseUp"
MouseDown="GridPPTControlNext_MouseDown" MouseLeave="GridPPTControlNext_MouseLeave"
CornerRadius="0 0 5 5" Background="Transparent" Name="PPTRBNextButtonBorder">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTRBNextButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image VerticalAlignment="Center" HorizontalAlignment="Center" Height="28"
Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a"
x:Name="PPTRBNextButtonGeometry"
Geometry="F0 M24,24z M0,0z M20.6006,12.9642C21.1331,12.4317,21.1331,11.5683,20.6006,11.0358L14.0551,4.49031C13.5226,3.95777 12.6592,3.95777 12.1267,4.49031 11.5941,5.02284 11.5941,5.88625 12.1267,6.41878L16.3443,10.6364 4.36364,10.6364C3.61052,10.6364 3,11.2469 3,12 3,12.7531 3.61052,13.3636 4.36364,13.3636L16.3443,13.3636 12.1267,17.5812C11.5941,18.1137 11.5941,18.9772 12.1267,19.5097 12.6592,20.0422 13.5226,20.0422 14.0551,19.5097L20.6006,12.9642z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
</Grid>
</Grid>
<!--// PPT 侧边翻页按钮 //-->
<Viewbox x:Name="LeftSidePanelForPPTNavigation" Visibility="Visible" Width="56"
HorizontalAlignment="Left" VerticalAlignment="Center">
<Border BorderThickness="1" BorderBrush="#a1a1aa" Name="PPTBtnLSBorder"
Background="#f4f4f5" Opacity="1" CornerRadius="6" Margin="6,0,0,0">
<ui:SimpleStackPanel Orientation="Vertical">
<Border Width="50" Height="50" MouseUp="GridPPTControlPrevious_MouseUp"
Name="PPTLSPreviousButtonBorder"
MouseDown="GridPPTControlPrevious_MouseDown" MouseLeave="GridPPTControlPrevious_MouseLeave"
CornerRadius="5 5 0 0" Background="Transparent">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTLSPreviousButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a" x:Name="PPTLSPreviousButtonGeometry"
Geometry="F0 M24,24z M0,0z M11.0357,3.3994C11.5682,2.86687,12.4316,2.86687,12.9641,3.3994L19.5096,9.94485C20.0421,10.4774 20.0421,11.3408 19.5096,11.8733 18.9771,12.4059 18.1137,12.4059 17.5811,11.8733L13.3635,7.65575 13.3635,19.6364C13.3635,20.3895 12.753,21 11.9999,21 11.2468,21 10.6363,20.3895 10.6363,19.6364L10.6363,7.65575 6.41869,11.8733C5.88616,12.4059 5.02275,12.4059 4.49022,11.8733 3.95769,11.3408 3.95769,10.4774 4.49022,9.94485L11.0357,3.3994z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Visibility="Visible" Name="PPTLSPageButton" TextBlock.Foreground="#171717"
MouseUp="PPTNavigationBtn_MouseUp" MouseDown="PPTNavigationBtn_MouseDown"
MouseLeave="PPTNavigationBtn_MouseLeave" Width="50" Height="50"
Background="Transparent">
<Grid>
<Border Margin="3,0" CornerRadius="5" Name="PPTLSPageButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<ui:SimpleStackPanel VerticalAlignment="Center" Orientation="Vertical" Spacing="0.5">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="17" FontWeight="Bold"
Text="999" Name="PPTBtnPageNow" />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="10" Text="/ 999" Name="PPTBtnPageTotal" />
</ui:SimpleStackPanel>
</Grid>
</Border>
<Border Width="50" Height="50" MouseUp="GridPPTControlNext_MouseUp"
MouseDown="GridPPTControlNext_MouseDown" MouseLeave="GridPPTControlNext_MouseLeave"
CornerRadius="0 0 5 5" Background="Transparent" Name="PPTLSNextButtonBorder">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTLSNextButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image VerticalAlignment="Center" HorizontalAlignment="Center" Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a" x:Name="PPTLSNextButtonGeometry"
Geometry="F0 M24,24z M0,0z M11.0357,20.6006C11.5682,21.1331,12.4316,21.1331,12.9641,20.6006L19.5096,14.0551C20.0421,13.5226 20.0421,12.6592 19.5096,12.1267 18.9771,11.5941 18.1137,11.5941 17.5811,12.1267L13.3635,16.3443 13.3635,4.36364C13.3635,3.61052 12.753,3 11.9999,3 11.2468,3 10.6363,3.61052 10.6363,4.36364L10.6363,16.3443 6.41869,12.1267C5.88616,11.5941 5.02275,11.5941 4.49022,12.1267 3.95769,12.6592 3.95769,13.5226 4.49022,14.0551L11.0357,20.6006z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
<Viewbox x:Name="RightSidePanelForPPTNavigation" Visibility="Visible" Width="56"
HorizontalAlignment="Right" VerticalAlignment="Center">
<Border BorderThickness="1" BorderBrush="#a1a1aa" Name="PPTBtnRSBorder"
Background="#f4f4f5" Opacity="1" CornerRadius="6" Margin="0,0,6,0">
<ui:SimpleStackPanel Orientation="Vertical">
<Border Width="50" Height="50" MouseUp="GridPPTControlPrevious_MouseUp"
Name="PPTRSPreviousButtonBorder"
MouseDown="GridPPTControlPrevious_MouseDown" MouseLeave="GridPPTControlPrevious_MouseLeave"
CornerRadius="5 5 0 0" Background="Transparent">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTRSPreviousButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a" x:Name="PPTRSPreviousButtonGeometry"
Geometry="F0 M24,24z M0,0z M11.0357,3.3994C11.5682,2.86687,12.4316,2.86687,12.9641,3.3994L19.5096,9.94485C20.0421,10.4774 20.0421,11.3408 19.5096,11.8733 18.9771,12.4059 18.1137,12.4059 17.5811,11.8733L13.3635,7.65575 13.3635,19.6364C13.3635,20.3895 12.753,21 11.9999,21 11.2468,21 10.6363,20.3895 10.6363,19.6364L10.6363,7.65575 6.41869,11.8733C5.88616,12.4059 5.02275,12.4059 4.49022,11.8733 3.95769,11.3408 3.95769,10.4774 4.49022,9.94485L11.0357,3.3994z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Visibility="Visible" Name="PPTRSPageButton"
MouseUp="PPTNavigationBtn_MouseUp" MouseDown="PPTNavigationBtn_MouseDown"
MouseLeave="PPTNavigationBtn_MouseLeave" Width="50" Height="50"
Background="Transparent" TextBlock.Foreground="#171717">
<Grid>
<Border Margin="3,0" CornerRadius="5" Name="PPTRSPageButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<ui:SimpleStackPanel VerticalAlignment="Center" Orientation="Vertical" Spacing="0.5">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="17" FontWeight="Bold"
Text="{Binding ElementName=PPTBtnPageNow, Path=Text}" />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center"
FontSize="10"
Text="{Binding ElementName=PPTBtnPageTotal, Path=Text}" />
</ui:SimpleStackPanel>
</Grid>
</Border>
<Border Width="50" Height="50" MouseUp="GridPPTControlNext_MouseUp"
MouseDown="GridPPTControlNext_MouseDown" MouseLeave="GridPPTControlNext_MouseLeave"
CornerRadius="0 0 5 5" Background="Transparent" Name="PPTRSNextButtonBorder">
<Grid>
<Border Margin="3" CornerRadius="5" Name="PPTRSNextButtonFeedbackBorder"
Background="#18181b" Opacity="0" />
<Image VerticalAlignment="Center" HorizontalAlignment="Center" Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#27272a" x:Name="PPTRSNextButtonGeometry"
Geometry="F0 M24,24z M0,0z M11.0357,20.6006C11.5682,21.1331,12.4316,21.1331,12.9641,20.6006L19.5096,14.0551C20.0421,13.5226 20.0421,12.6592 19.5096,12.1267 18.9771,11.5941 18.1137,11.5941 17.5811,12.1267L13.3635,16.3443 13.3635,4.36364C13.3635,3.61052 12.753,3 11.9999,3 11.2468,3 10.6363,3.61052 10.6363,4.36364L10.6363,16.3443 6.41869,12.1267C5.88616,11.5941 5.02275,11.5941 4.49022,12.1267 3.95769,12.6592 3.95769,13.5226 4.49022,14.0551L11.0357,20.6006z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
<Border Name="FloatingBarTextVisibilityBindingLikeAPieceOfShit" Width="0" Height="0" Visibility="Collapsed" />
<Grid Name="FloatingbarUIForInkReplay">
<Viewbox Name="ViewboxFloatingBar" Margin="100,5,0,0"
HorizontalAlignment="Left" Height="58" VerticalAlignment="Top"
RenderTransformOrigin="0.5,0.5">
<Viewbox.LayoutTransform>
<ScaleTransform x:Name="ViewboxFloatingBarScaleTransform" ScaleX="1" ScaleY="1" />
</Viewbox.LayoutTransform>
<ui:SimpleStackPanel Orientation="Horizontal" Name="_FloatingBar_SimpleStackPanel">
<Grid ZIndex="1000" Width="0" Height="0" Margin="0,0,0,0" VerticalAlignment="Top">
<Canvas Name="FloatingBarUpSidePopupArea" VerticalAlignment="Bottom" Width="{Binding ElementName=_FloatingBar_SimpleStackPanel , Path=ActualWidth}" Height="78">
<Grid Width="{Binding ElementName=FloatingBarUpSidePopupArea, Path=ActualWidth}" Height="{Binding ElementName=FloatingBarUpSidePopupArea, Path=ActualHeight}">
<Border Name="MouseRightButtonGestureTipPopup" Visibility="Collapsed" Width="196" Height="24" VerticalAlignment="Bottom" Margin="0,0,0,8" Background="#DD18181b" CornerRadius="3">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Horizontal">
<Image Margin="0,0,3,0" Width="16"
Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M18.75,7C18.75,5.74022 18.2496,4.53204 17.3588,3.64124 16.468,2.75044 15.2598,2.25 14,2.25L10,2.25C8.74022,2.25 7.53204,2.75044 6.64124,3.64124 5.75044,4.53204 5.25,5.74022 5.25,7L5.25,17C5.25,18.2598 5.75044,19.468 6.64124,20.3588 7.53204,21.2496 8.74022,21.75 10,21.75L14,21.75C15.2598,21.75 16.468,21.2496 17.3588,20.3588 18.2496,19.468 18.75,18.2598 18.75,17L18.75,7z M10,3.75C9.13805,3.75 8.3114,4.09241 7.7019,4.7019 7.09241,5.3114 6.75,6.13805 6.75,7L6.75,9.25 11.25,9.25 11.25,3.75 10,3.75z M6.75,10.75L6.75,17C6.75,17.862 7.09241,18.6886 7.7019,19.2981 8.3114,19.9076 9.13805,20.25 10,20.25L14,20.25C14.862,20.25 15.6886,19.9076 16.2981,19.2981 16.9076,18.6886 17.25,17.862 17.25,17L17.25,10.75 6.75,10.75z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock FontSize="10" VerticalAlignment="Center" Foreground="White">
<Run Text="按住鼠标右键移动" FontWeight="Bold" />
<Run Text="可拖动画布" />
</TextBlock>
</StackPanel>
</Border>
</Grid>
</Canvas>
</Grid>
<Border x:Name="BorderFloatingBarMoveControls" Width="36" Height="36" CornerRadius="5"
Background="#fafafa" BorderThickness="1" BorderBrush="#9952525b"
MouseDown="SymbolIconEmoji_MouseDown" MouseUp="SymbolIconEmoji_MouseUp">
<ui:SimpleStackPanel Margin="0,2,0,2" Orientation="Horizontal"
HorizontalAlignment="Center">
<Image Margin="0" Name="FloatingbarHeadIconImg" Source="/Resources/Icons-png/icc.png" />
</ui:SimpleStackPanel>
</Border>
<Border Margin="2,0,0,0" Padding="2" Visibility="Visible" Height="36"
Name="BorderFloatingBarMainControls" Background="#fafafa" CornerRadius="5"
BorderThickness="1"
BorderBrush="#9952525b">
<Grid>
<Canvas Name="FloatingbarSelectionBGCanvas" Margin="2,0,2,0">
<Border Name="FloatingbarSelectionBG" Visibility="Hidden" Width="{Binding ElementName=Cursor_Icon, Path=Width}" Height="34"
Canvas.Left="28" Margin="0,-2,0,-2" Background="#2563eb" />
</Canvas>
<Canvas Name="FloatingbarFreezeBtnBGCanvas" Margin="2,0,2,0" Visibility="Collapsed">
<Border Name="FloatingbarFreezeBtnBG" Visibility="Hidden" Width="{Binding ElementName=Cursor_Icon, Path=Width}" Height="34"
Canvas.Left="196" Margin="0,-2,0,-2" Background="#2563eb" />
</Canvas>
<ui:SimpleStackPanel Margin="2,0" Name="StackPanelFloatingBar" Orientation="Horizontal">
<!--<ui:SimpleStackPanel Name="Cursor_Icon" MouseDown="Border_MouseDown" MouseUp="CursorIcon_Click"-->
<ui:SimpleStackPanel Name="Cursor_Icon"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="CursorIcon_Click"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Width="28" Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0"
x:Name="CursorToolbarIconImage">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="CursorIconGeometry" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="SelectionToolBarTextBlock" Text="鼠标" Foreground="Black"
FontSize="8" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="Pen_Icon"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="PenIcon_Click"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Width="28" Margin="0,-2">
<Image x:Name="PenIcon"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="PenIconGeometry" Brush="Black"
Geometry="" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="PenToolbarTextBlock" Text="批注" Foreground="Black" FontSize="8"
Margin="0,1,0,0" TextAlignment="Center" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="SymbolIconDelete"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="SymbolIconDelete_MouseUp"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Width="28" Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="ClearIconGeometry" Brush="#b91c1c"
Geometry="F0 M24,24z M0,0z M10.1573,10.0421C10.7298,10.0421,11.1938,10.5062,11.1938,11.0787L11.1938,16.6067C11.1938,17.1792 10.7298,17.6433 10.1573,17.6433 9.58485,17.6433 9.12079,17.1792 9.12079,16.6067L9.12079,11.0787C9.12079,10.5062,9.58485,10.0421,10.1573,10.0421z M13.8427,10.0421C14.4151,10.0421,14.8792,10.5062,14.8792,11.0787L14.8792,16.6067C14.8792,17.1792 14.4151,17.6433 13.8427,17.6433 13.2702,17.6433 12.8062,17.1792 12.8062,16.6067L12.8062,11.0787C12.8062,10.5062,13.2702,10.0421,13.8427,10.0421z M3.70787,5.43539C3.13541,5.43539 2.67135,5.89946 2.67135,6.47191 2.67135,7.04436 3.13541,7.50843 3.70787,7.50843L4.51405,7.50843 4.51405,19.3708C4.51405,20.1686 4.9025,20.8796 5.39348,21.3706 5.88445,21.8615 6.59548,22.25 7.39326,22.25L16.6067,22.25C17.4045,22.25 18.1155,21.8615 18.6065,21.3706 19.0975,20.8796 19.486,20.1686 19.486,19.3708L19.486,7.50843 20.2921,7.50843C20.8646,7.50843 21.3287,7.04436 21.3287,6.47191 21.3287,5.89946 20.8646,5.43539 20.2921,5.43539L16.7219,5.43539 16.7219,4.62921C16.7219,3.83143 16.3335,3.12041 15.8425,2.62943 15.3515,2.13845 14.6405,1.75 13.8427,1.75L10.1573,1.75C9.35952,1.75 8.6485,2.13845 8.15752,2.62943 7.66654,3.12041 7.27809,3.83143 7.27809,4.62921L7.27809,5.43539 3.70787,5.43539z M6.58708,19.3708C6.58708,19.4944 6.6593,19.7047 6.85933,19.9047 7.05937,20.1047 7.26969,20.177 7.39326,20.177L16.6067,20.177C16.7303,20.177 16.9406,20.1047 17.1407,19.9047 17.3407,19.7047 17.4129,19.4944 17.4129,19.3708L17.4129,7.50843 6.58708,7.50843 6.58708,19.3708z M9.62338,4.09529C9.42334,4.29532,9.35112,4.50565,9.35112,4.62921L9.35112,5.43539 14.6489,5.43539 14.6489,4.62921C14.6489,4.50565 14.5767,4.29532 14.3766,4.09529 14.1766,3.89525 13.9663,3.82303 13.8427,3.82303L10.1573,3.82303C10.0337,3.82303,9.82341,3.89525,9.62338,4.09529z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="TrashBinToolbarTextBlock" Text="清空" Foreground="#B91C1C" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontWeight="Bold" FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="StackPanelCanvasControls" Visibility="Visible"
Orientation="{Binding ElementName=StackPanelFloatingBar, Path=Orientation}">
<ui:SimpleStackPanel Width="0"
Orientation="{Binding ElementName=StackPanelFloatingBar, Path=Orientation}">
<Grid Margin="0,5,0,5" Width="0" RenderTransformOrigin="0.5,0.5">
<Border x:Name="PenPalette" Visibility="Visible" Background="#fafafa"
Opacity="1" BorderBrush="#2563eb"
BorderThickness="1" CornerRadius="8" Margin="-160,-200,-33,32">
<ui:SimpleStackPanel>
<Border BorderBrush="#1e3a8a" Height="32" BorderThickness="0,0,0,1"
CornerRadius="8,8,0,0" Background="#2563eb"
Margin="-1,-1,-1,0"
Padding="1,1,1,0">
<ui:SimpleStackPanel Orientation="Vertical"
VerticalAlignment="Center">
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Stretch"
Margin="8,0,0,0" Spacing="2">
<Border x:Name="DefaultPenTabButton"
MouseDown="SwitchToDefaultPen"
Background="#48dbeafe" Height="20" Width="36"
CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel
x:Name="DefaultPenTabButtonIndicator"
Visibility="Visible"
Orientation="Horizontal"
Canvas.Left="9" Canvas.Right="9"
Canvas.Bottom="0">
<Border Width="18" Height="2"
Background="#fafafa" CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical"
Height="20" Width="36">
<ui:SimpleStackPanel
VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,3">
<Image
Source="/Resources/new-icons/pen-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="13" Width="13" />
<TextBlock
x:Name="DefaultPenTabButtonText"
Foreground="White"
FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="笔" Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Border x:Name="HighlightPenTabButton"
MouseDown="SwitchToHighlighterPen"
Background="Transparent" Height="20" Width="52"
CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel Visibility="Collapsed"
x:Name="HighlightPenTabButtonIndicator"
Orientation="Horizontal" Canvas.Left="14"
Canvas.Right="14" Canvas.Bottom="0">
<Border Width="24" Height="2"
Background="#fafafa" CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical"
Height="20" Width="52">
<ui:SimpleStackPanel
VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,3">
<Image
Source="/Resources/new-icons/highlighter-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="13" Width="13" />
<TextBlock
x:Name="HighlightPenTabButtonText"
Foreground="White"
FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="荧光笔" Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Image Margin="66,0,0,0"
Source="/Resources/new-icons/close-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16" Width="16"
MouseDown="Border_MouseDown"
MouseUp="CloseBordertools_MouseUp" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
<Viewbox Name="DefaultPenPropsPanel" Visibility="Collapsed"
Margin="12,8,12,0" HorizontalAlignment="Center"
VerticalAlignment="Center" Stretch="Fill">
<ui:SimpleStackPanel>
<Controls:UniformGrid Columns="2" Width="300" Height="55">
<ui:SimpleStackPanel Orientation="Horizontal"
Height="35">
<Label Content="笔锋" Margin="0,0,6,0"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="16" FontWeight="Bold"
VerticalAlignment="Center" />
<ComboBox Height="30" VerticalAlignment="Center"
Name="ComboBoxPenStyle"
FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxPenStyle_SelectionChanged">
<ComboBoxItem Content="基于点集"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="基于速率"
FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="关闭笔锋"
FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,-5,0,-5"
VerticalAlignment="Center">
<ui:SimpleStackPanel
x:Name="NibModeSimpleStackPanel"
Orientation="Horizontal" Width="140">
<Label Content="笔尖模式" FontSize="15"
VerticalAlignment="Center" />
<ui:ToggleSwitch
x:Name="ToggleSwitchEnableNibMode"
MinWidth="0"
FontFamily="Microsoft YaHei UI"
Width="70" Margin="10,0,0,0"
Toggled="ToggleSwitchEnableNibMode_Toggled"
IsOn="True" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal"
Width="140">
<Label Margin="0,0,10,0" Content="墨迹纠正"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="15" VerticalAlignment="Center" />
<ui:ToggleSwitch
Foreground="{DynamicResource FloatBarForeground}"
FontFamily="Microsoft YaHei UI" Width="70"
Toggled="ToggleSwitchEnableInkToShape_Toggled"
MinWidth="0"
IsOn="{Binding ElementName=ToggleSwitchEnableInkToShape, Path=IsOn}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="粗细" FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="InkWidthSlider" Minimum="1"
Maximum="20"
Width="208" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True"
Value="5"
TickFrequency="0.1" TickPlacement="None"
ValueChanged="InkWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=InkWidthSlider, Mode=OneWay}"
FontFamily="Consolas" VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="透明" FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="InkAlphaSlider" Margin="0,0,0,0"
Minimum="1" Maximum="255" Width="208"
FontFamily="Microsoft YaHei UI" FontSize="20"
IsSnapToTickEnabled="True" Value="255"
TickFrequency="1"
TickPlacement="None"
ValueChanged="InkAlphaSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=InkAlphaSlider, Mode=OneWay}"
FontFamily="Consolas" VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox Name="HighlighterPenPropsPanel" Margin="12,8,12,0"
HorizontalAlignment="Center" VerticalAlignment="Center"
Stretch="Fill">
<ui:SimpleStackPanel>
<StackPanel Orientation="Horizontal" Height="30">
<Label Margin="0,0,10,0" Content="粗细" FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="17" VerticalAlignment="Center" />
<Slider x:Name="HighlighterWidthSlider" Minimum="15"
Maximum="45" Width="208"
FontFamily="Microsoft YaHei UI" FontSize="20"
IsSnapToTickEnabled="True" Value="20"
TickFrequency="1" TickPlacement="None"
ValueChanged="HighlighterWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=HighlighterWidthSlider, Mode=OneWay}"
FontFamily="Consolas" VerticalAlignment="Bottom"
Margin="10,0,0,4.5" FontSize="15" />
</StackPanel>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox x:Name="DefaultPenColorsPanel" Visibility="Collapsed"
Margin="0,8,0,0" Stretch="Fill">
<ui:SimpleStackPanel Width="300" Margin="0,0,0,0">
<!--<TextBlock FontSize="25">画笔颜色</TextBlock>-->
<Border Width="300" Height="100" BorderBrush="Black"
BorderThickness="0" CornerRadius="5">
<Controls:UniformGrid Rows="2" Height="100">
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5" Width="270"
Margin="0">
<Border BorderBrush="Black"
BorderThickness="1"
CornerRadius="100" Width="45"
MouseDown="Border_MouseDown"
MouseUp="ColorThemeSwitch_MouseUp">
<Grid Margin="3">
<Image
x:Name="ColorThemeSwitchIcon"
Source="/Resources/Icons-Fluent/ic_fluent_weather_sunny_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="23"
Height="23" Margin="0,0,0,0" />
<TextBlock Margin="0,0,0,2"
x:Name="ColorThemeSwitchTextBlock"
Text="亮系" Foreground="Black"
VerticalAlignment="Bottom"
HorizontalAlignment="Center"
FontSize="11" />
</Grid>
</Border>
<Border x:Name="BorderPenColorBlack"
Background="Black" BorderBrush="Black"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorBlack_Click">
<Viewbox
Name="ViewboxBtnColorBlackContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorWhite"
Background="White"
BorderBrush="#71717a"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorWhite_Click">
<Viewbox
x:Name="ViewboxBtnColorWhiteContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorRed"
Background="#dc2626"
BorderBrush="#7f1d1d"
BorderThickness="1.5"
CornerRadius="100"
Width="45" MouseUp="BtnColorRed_Click">
<Viewbox
Name="ViewboxBtnColorRedContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorYellow"
Background="#eab308"
BorderBrush="#713f12"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorYellow_Click">
<Viewbox
x:Name="ViewboxBtnColorYellowContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5" Width="270"
Margin="0">
<Border x:Name="BorderPenColorGreen"
Background="#16a34a"
BorderBrush="#14532d"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorGreen_Click">
<Viewbox
x:Name="ViewboxBtnColorGreenContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorBlue"
Background="#2563eb"
BorderBrush="#1e3a8a"
BorderThickness="1.5"
CornerRadius="100"
Width="45" MouseUp="BtnColorBlue_Click">
<Viewbox
x:Name="ViewboxBtnColorBlueContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorPink"
Background="#db2777"
BorderBrush="#831843"
BorderThickness="1.5"
CornerRadius="100"
Width="45" MouseUp="BtnColorPink_Click">
<Viewbox
x:Name="ViewboxBtnColorPinkContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorTeal"
Background="#0d9488"
BorderBrush="#134e4a"
BorderThickness="1.5"
CornerRadius="100"
Width="45" MouseUp="BtnColorTeal_Click">
<Viewbox
x:Name="ViewboxBtnColorTealContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
<Border x:Name="BorderPenColorOrange"
Background="#ea580c"
BorderBrush="#7c2d12"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnColorOrange_Click">
<Viewbox
x:Name="ViewboxBtnColorOrangeContent"
Visibility="Collapsed" Margin="8">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24"
Height="24" Margin="0,0,0,0" />
</Viewbox>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox x:Name="HighlighterPenColorsPanel" Visibility="Visible"
Margin="0,8,0,0" Stretch="Fill">
<ui:SimpleStackPanel Width="300" Margin="0,0,0,0">
<!--<TextBlock FontSize="25">画笔颜色</TextBlock>-->
<Border Width="300" Height="110" BorderBrush="Black"
BorderThickness="0" CornerRadius="5">
<Controls:UniformGrid Rows="2" Height="110">
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5" Width="270"
Margin="0">
<Border x:Name="HighlighterPenColorBlack"
BorderBrush="#e4e4e7"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorBlack_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="Black"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorBlackContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorWhite"
Background="White"
BorderBrush="#dddddd"
BorderThickness="1.5"
CornerRadius="100"
Width="45"
MouseUp="BtnHighlighterColorWhite_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="White"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorWhiteContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorRed"
BorderBrush="#fecaca"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorRed_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#ef4444"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorRedContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorYellow"
BorderBrush="#fef08a"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorYellow_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#eab308"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorYellowContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorGreen"
BorderBrush="#bbf7d0"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorGreen_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#22c55e"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorGreenContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Height="45"
Orientation="Horizontal" Width="270">
<Controls:UniformGrid Columns="5" Width="270"
Margin="0">
<Border x:Name="HighlighterPenColorZinc"
BorderBrush="#e4e4e7"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorZinc_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#71717a"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorZincContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorBlue"
BorderBrush="#bfdbfe"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorBlue_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#3b82f6"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorBlueContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border
x:Name="HighlighterPenPenColorPurple"
BorderBrush="#e9d5ff"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorPurple_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#a855f7"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorPurpleContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorTeal"
BorderBrush="#99f6e4"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorTeal_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#14b8a6"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorTealContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-black.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
<Border x:Name="HighlighterPenColorOrange"
BorderBrush="#fed7aa"
BorderThickness="1.5"
CornerRadius="100" Width="45"
MouseUp="BtnHighlighterColorOrange_Click">
<Canvas>
<Image
Source="/Resources/Icons-png/transparent-grid.png"
Width="42" Height="42">
<Image.Clip>
<EllipseGeometry
Center="21,21"
RadiusX="21"
RadiusY="21" />
</Image.Clip>
</Image>
<Border Background="#f97316"
Width="42"
Height="42" CornerRadius="21"
Opacity="0.75" />
<Viewbox
Name="HighlighterPenViewboxBtnColorOrangeContent"
Visibility="Visible"
Canvas.Top="9"
Canvas.Left="9">
<Image
Source="/Resources/new-icons/checked-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
VerticalAlignment="Top"
Width="24" Height="24"
Margin="0,0,0,0" />
</Viewbox>
</Canvas>
</Border>
</Controls:UniformGrid>
</ui:SimpleStackPanel>
</Controls:UniformGrid>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
</ui:SimpleStackPanel>
</Border>
</Grid>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="EraserByStrokes_Icon"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="EraserIconByStrokes_Click"
Background="Transparent" Orientation="Vertical" Width="28"
Margin="0,-2" HorizontalAlignment="Center">
<Image x:Name="StrokeEraserToolbarIconImage"
RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="StrokeEraserIconGeometry"
Geometry="" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="InkEraserToolbarTextBlock" Text="线擦" Foreground="Black" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="Eraser_Icon"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="EraserIcon_Click"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Margin="0,-2" Width="28">
<Image x:Name="CircleEraserToolbarIconImage"
RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="CircleEraserIconGeometry"
Geometry="" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="CircleEraserToolbarTextBlock" Text="板擦" Foreground="Black"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="SymbolIconSelect"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="SymbolIconSelect_MouseUp" Background="Transparent"
Orientation="Vertical" Margin="0,-2" Width="28"
HorizontalAlignment="Center">
<Image x:Name="LassoSelect" RenderOptions.BitmapScalingMode="HighQuality"
Height="17" Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="LassoSelectIconGeometry"
Geometry="" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="LassoToolToolbarTextBlock" Text="套选" Foreground="Black" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="ShapeDrawFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="ImageDrawShape_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Margin="0,-2"
Width="28">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="ShapesIconGeometry"
Brush="#1b1b1b"
Geometry="F0 M24,24z M0,0z M13.0573,17.3383C13.0573,15.0674 14.8982,13.2265 17.169,13.2265 19.4399,13.2265 21.2808,15.0674 21.2808,17.3383 21.2808,19.6091 19.4399,21.45 17.169,21.45 14.8982,21.45 13.0573,19.6091 13.0573,17.3383z M4.48141,13.2265C3.50819,13.2265,2.71924,14.0155,2.71924,14.9887L2.71924,19.6878C2.71924,20.6611,3.50819,21.45,4.48141,21.45L9.18053,21.45C10.1537,21.45,10.9427,20.6611,10.9427,19.6878L10.9427,14.9887C10.9427,14.0155,10.1537,13.2265,9.18053,13.2265L4.48141,13.2265z M12.6923,2.71599C12.4659,2.59866 12.213,2.54181 11.9581,2.55096 11.7033,2.5601 11.4551,2.63494 11.2377,2.7682 11.028,2.89676 10.8537,3.07549 10.7305,3.28809L7.24046,8.83413C7.09431,9.06224 7.01353,9.32612 7.007,9.59703 7.00043,9.86995 7.06945,10.1394 7.20645,10.3755 7.34345,10.6117 7.54308,10.8053 7.78328,10.9351 8.01558,11.0605 8.27707,11.1215 8.5406,11.1119L15.5037,11.1119 15.5065,11.1119C15.7766,11.111 16.0412,11.0362 16.2717,10.8957 16.5023,10.7551 16.6901,10.5542 16.8146,10.3146 16.9392,10.0751 16.9959,9.80598 16.9785,9.53651 16.9617,9.27545 16.876,9.02367 16.7303,8.80672L13.26,3.23562 13.2505,3.22067C13.111,3.00717,12.9187,2.83333,12.6923,2.71599z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="ShapesToolbarTextBlock" Text="几何" Foreground="Black" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<Grid Width="0">
<Border x:Name="BorderDrawShape" Background="#fafafa" Opacity="1"
Visibility="Visible" BorderBrush="#2563eb"
BorderThickness="1"
CornerRadius="5" Margin="-200,-122,-117,37">
<ui:SimpleStackPanel Spacing="0" Orientation="Vertical">
<!--<TextBlock FontSize="16" Foreground="{DynamicResource FloatBarForeground}" HorizontalAlignment="Left" Margin="10,8">
<Run Text="图形"/>
<Run Text="(第一行支持长按保持选中)" FontSize="10"/>
</TextBlock>
<ui:SymbolIcon Margin="0,-20,8,15" Symbol="Pin" MouseDown="Border_MouseDown" MouseUp="SymbolIconPinBorderDrawShape_MouseUp" Foreground="{DynamicResource FloatBarForeground}" HorizontalAlignment="Right"/>-->
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="8,8,0,0" Background="#2563eb" Margin="-1,-1,-1,0"
Padding="1,1,1,0">
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Stretch">
<Canvas Height="24" Width="315" ClipToBounds="True">
<TextBlock Text="几何绘图" Canvas.Left="8" Foreground="White"
Padding="0,5" FontSize="11" FontWeight="Bold"
TextAlignment="Center" />
</Canvas>
</ui:SimpleStackPanel>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Height="38" Spacing="2"
Margin="4,6,4,0">
<ui:SimpleStackPanel Name="BoardImageDrawLine"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawLine_Click" Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/line.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画直线" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="BoardImageDrawDashedLine"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawDashedLine_Click"
Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/dashed-line.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画虚线" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="BoardImageDrawDotLine"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawDotLine_Click"
Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/dotted-line.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画点线" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="BoardImageDrawArrow"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawArrow_Click" Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/arrow.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画箭头" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Name="BoardImageDrawParallelLine"
MouseDown="Image_MouseDown"
MouseUp="BtnDrawParallelLine_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image
Source="/Resources/Icons-png/geo-icons/paralle-lines.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="4平行线" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawRectangleCenter_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image
Source="/Resources/Icons-png/geo-icons/centered-square.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="中心正方" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawCircle_Click" Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image
Source="/Resources/Icons-png/geo-icons/centered-circle.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="中心圆" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawDashedCircle_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image
Source="/Resources/Icons-png/geo-icons/centered-circle-dashed.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2"
Height="19" Width="19" />
<Label Content="中心虚圆" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawCenterEllipse_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image
Source="/Resources/Icons-png/geo-icons/centered-oval.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="中心椭圆" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<!--<Image Name="BoardImageDrawLine" Margin="16,12,0,12" MouseDown="Image_MouseDown" MouseUp="BtnDrawLine_Click" Source="{DynamicResource DrawShapeImageSource.Line}"/>-->
<!--<Image Name="BoardImageDrawDashedLine" Margin="0,12,0,12" MouseDown="Image_MouseDown" MouseUp="BtnDrawDashedLine_Click" Source="{DynamicResource DrawShapeImageSource.DashedLine}"/>-->
<!--<Image Name="BoardImageDrawDotLine" Margin="0,12,0,12" MouseDown="Image_MouseDown" MouseUp="BtnDrawDotLine_Click" Source="{DynamicResource DrawShapeImageSource.DotLine}"/>-->
<!--<Image Name="BoardImageDrawArrow" Margin="0,12,0,12" MouseDown="Image_MouseDown" MouseUp="BtnDrawArrow_Click" Source="{DynamicResource DrawShapeImageSource.ArrowLine}"/>-->
<!--<Image Name="BoardImageDrawParallelLine" Margin="0,11.5,16,11.5" MouseDown="Image_MouseDown" MouseUp="BtnDrawParallelLine_Click" Source="{DynamicResource DrawShapeImageSource.ParallelLine}"/>-->
<Image Visibility="Collapsed" Margin="14,9,0,9"
MouseUp="BtnDrawCoordinate1_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate1}" />
<Image Visibility="Collapsed" Margin="0,12"
MouseUp="BtnDrawCoordinate2_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate2}" />
<Image Visibility="Collapsed" Margin="0,12"
MouseUp="BtnDrawCoordinate3_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate3}" />
<Image Visibility="Collapsed" Margin="0,12"
MouseUp="BtnDrawCoordinate4_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate4}" />
<Image Visibility="Collapsed" Margin="-1,11.5"
MouseUp="BtnDrawCoordinate5_Click"
Source="{DynamicResource DrawShapeImageSource.Coordinate5}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" Height="38" Spacing="2"
Margin="4,0,4,6">
<ui:SimpleStackPanel MouseUp="BtnDrawCuboid_Click" Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/cube.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="长方体" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawRectangle_Click"
Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/square.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="正方形" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawCylinder_Click"
Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/cylinder.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画圆柱" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseUp="BtnDrawCone_Click" Margin="0,0,0,0"
Height="38" Width="32" Orientation="Vertical">
<Image Source="/Resources/Icons-png/geo-icons/cone.png"
RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,4,0,2" Height="19" Width="19" />
<Label Content="画圆锥" FontSize="8" HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Visibility="Collapsed" Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="16,11,2,11" MouseUp="BtnDrawRectangleCenter_Click"
Source="{DynamicResource DrawShapeImageSource.RectangleCenter}" />
<Image Visibility="Collapsed" Margin="0,10"
MouseUp="BtnDrawEllipse_Click"
Source="{DynamicResource DrawShapeImageSource.Ellipse}" />
<Image Margin="0,10" MouseUp="BtnDrawCircle_Click"
Source="{DynamicResource DrawShapeImageSource.Circle}" />
<Image Margin="0,10" MouseUp="BtnDrawDashedCircle_Click"
Source="{DynamicResource DrawShapeImageSource.DashedCircle}" />
<Image Margin="0,10" MouseUp="BtnDrawCenterEllipse_Click"
Source="{DynamicResource DrawShapeImageSource.EllipseCenter}"
Width="30" />
<Image Margin="0,10"
MouseUp="BtnDrawCenterEllipseWithFocalPoint_Click"
Source="{DynamicResource DrawShapeImageSource.EllipseCenterWithFocalPoint}"
Width="30" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Visibility="Collapsed" Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="16,10,2,10" MouseUp="BtnDrawHyperbola_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Hyperbola}" />
<Image Margin="4,10,2,10"
MouseUp="BtnDrawHyperbolaWithFocalPoint_Click" Width="26"
Source="{DynamicResource DrawShapeImageSource.HyperbolaWithFocalPoint}" />
<Image Margin="2.5,10,2,10" MouseUp="BtnDrawParabola1_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Parabola}" />
<Image Margin="1,10,2,10"
MouseUp="BtnDrawParabolaWithFocalPoint_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.ParabolaWithFocalPoint}"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="90" />
<TranslateTransform />
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Margin="2,10,2,10" MouseUp="BtnDrawParabola2_Click"
Width="26"
Source="{DynamicResource DrawShapeImageSource.Parabola}"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="90" />
<TranslateTransform />
</TransformGroup>
</Image.RenderTransform>
</Image>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Visibility="Collapsed" Height="50" Spacing="10"
Orientation="Horizontal">
<Image Margin="15,11,2,11" MouseUp="BtnDrawRectangle_Click"
Source="{DynamicResource DrawShapeImageSource.Rectangle}" />
<Image Margin="6,10,2,10" MouseUp="BtnDrawCylinder_Click"
Source="{DynamicResource DrawShapeImageSource.Cylinder}" />
<Image Margin="8,12.5,0,10" MouseUp="BtnDrawCone_Click"
Source="{DynamicResource DrawShapeImageSource.Cone}" />
<Image Margin="5.5,12.5,2.5,10" MouseUp="BtnDrawCuboid_Click"
Source="{DynamicResource DrawShapeImageSource.Cuboid}" />
<Image Visibility="Collapsed" Margin="0,11.5,2.5,9.5"
MouseUp="BtnDrawCuboid_Click"
Source="{DynamicResource DrawShapeImageSource.Tetrahedron}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
<ui:SimpleStackPanel
Name="FreezeFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="FreezeFloatingBarBtn_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Margin="0,-2"
Width="28">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="FreezeIconGeometry" Brush="#1B1B1B" Geometry="F0 M24,24z M0,0z M12.875,3.42617C12.875,2.94292 12.4833,2.55117 12,2.55117 11.5168,2.55117 11.125,2.94292 11.125,3.42617L11.125,4.58253 10.6766,4.35831C10.2444,4.1422 9.71878,4.31739 9.50266,4.74962 9.28655,5.18185 9.46174,5.70744 9.89398,5.92356L11.125,6.53909 11.125,8.48547 9.39973,9.48835 7.70825,8.51174 7.79073,7.13797C7.81969,6.65559 7.45212,6.24107 6.96974,6.21211 6.48736,6.18315 6.07283,6.55072 6.04387,7.0331L6.01383,7.53344 5.01252,6.95531C4.59401,6.71368 4.05887,6.85707 3.81724,7.27557 3.57561,7.69407 3.71899,8.22922 4.1375,8.47085L5.13889,9.04902 4.72043,9.3253C4.31715,9.59156 4.20607,10.1343 4.47233,10.5376 4.73859,10.9409 5.28136,11.052 5.68464,10.7857L6.83331,10.0273 8.51897,11.0006 8.52474,12.9961 6.83321,13.9727 5.68464,13.2144C5.28136,12.9481 4.73859,13.0592 4.47233,13.4625 4.20607,13.8658 4.31715,14.4085 4.72043,14.6748L5.13879,14.951 4.1375,15.5291C3.71899,15.7708 3.57561,16.3059 3.81724,16.7244 4.05887,17.1429 4.59401,17.2863 5.01252,17.0447L6.01383,16.4665 6.04387,16.967C6.07283,17.4494 6.48736,17.8169 6.96974,17.788 7.45212,17.759 7.81969,17.3445 7.79073,16.8621L7.70825,15.4882 9.39365,14.5151 11.125,15.5078 11.125,17.4609 9.89398,18.0764C9.46174,18.2925 9.28655,18.8181 9.50266,19.2503 9.71878,19.6826 10.2444,19.8578 10.6766,19.6417L11.125,19.4174 11.125,20.5738C11.125,21.0571 11.5168,21.4488 12,21.4488 12.4833,21.4488 12.875,21.0571 12.875,20.5738L12.875,19.4174 13.3235,19.6417C13.7557,19.8578 14.2813,19.6826 14.4974,19.2503 14.7136,18.8181 14.5384,18.2925 14.1061,18.0764L12.875,17.4609 12.875,15.5145 14.6003,14.5116 16.2918,15.4883 16.2094,16.8621C16.1804,17.3445 16.548,17.759 17.0304,17.788 17.5127,17.8169 17.9273,17.4494 17.9562,16.967L17.9863,16.4666 18.9875,17.0447C19.406,17.2863 19.9411,17.1429 20.1828,16.7244 20.4244,16.3059 20.281,15.7708 19.8625,15.5291L18.8612,14.951 19.2797,14.6748C19.6829,14.4085 19.794,13.8658 19.5278,13.4625 19.2615,13.0592 18.7187,12.9481 18.3154,13.2144L17.1668,13.9727 15.4808,12.9993 15.475,11.0039 17.1666,10.0272 18.3154,10.7857C18.7187,11.052 19.2615,10.9409 19.5278,10.5376 19.794,10.1343 19.6829,9.59156 19.2797,9.3253L18.8611,9.04892 19.8623,8.47085C20.2808,8.22922 20.4242,7.69407 20.1825,7.27557 19.9409,6.85707 19.4058,6.71368 18.9873,6.95531L17.9862,7.53326 17.9562,7.0331C17.9273,6.55072 17.5127,6.18315 17.0304,6.21211 16.548,6.24107 16.1804,6.65559 16.2094,7.13797L16.2918,8.51156 14.6062,9.48476 12.875,8.49221 12.875,6.5391 14.1061,5.92356C14.5384,5.70744 14.7136,5.18185 14.4974,4.74962 14.2813,4.31739 13.7557,4.1422 13.3235,4.35831L12.875,4.58254 12.875,3.42617z M10.269,11.0072L10.2748,13.0031 12.0058,13.9955 13.7308,12.9929 13.725,10.9967 11.9942,10.0044 10.269,11.0072z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="FreezeToolbarTextBlock" Text="冻结" Foreground="Black" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="HandFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="ImageDrawShape_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Margin="0,-2"
Width="28">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#1b1b1b" Geometry="F0 M24,24z M0,0z M8.26625,10.5636L8.26625,4.76409C8.26625,4.19587 8.49174,3.65469 8.89762,3.24882 9.70937,2.43706 11.1164,2.43706 11.9282,3.24882 12.3341,3.65469 12.5595,4.18685 12.5595,4.76409L12.5595,7.22542C13.2811,7.04372 14.0969,7.22143 14.634,7.75858 14.7741,7.89866 14.8927,8.05378 14.9879,8.22061 15.7667,7.91427 16.7334,8.06091 17.3399,8.66052 17.4846,8.80521 17.6063,8.96596 17.7031,9.13907 18.4771,8.84678 19.4284,8.99693 20.0277,9.58954 20.4336,9.99541 20.6591,10.5276 20.6591,11.1048L20.6591,15.1636C20.6591,16.8232 20.0097,18.3745 18.8461,19.5471 17.6736,20.7196 16.1222,21.36 14.4627,21.36L14.4717,21.342 12.6678,21.342 12.5595,21.342C11.6395,21.2969 10.7286,21.0443 9.9078,20.6114 9.00585,20.1243 8.23017,19.4208 7.67096,18.564L7.49057,18.2934C7.20195,17.8424 6.21882,16.1377 4.49609,13.0801 4.22551,12.593 4.15335,12.0248 4.28864,11.4836 4.43296,10.9425 4.7757,10.4825 5.25373,10.1938 5.72275,9.91424 6.28196,9.79698 6.82313,9.86012 7.37332,9.93228 7.87841,10.1758 8.26625,10.5636z M16.3838,11.2756L16.3838,11.5287C16.3838,11.9707 16.7446,12.3224 17.1775,12.3224 17.6195,12.3224 17.9712,11.9617 17.9712,11.5287L17.9712,10.9579C17.9953,10.8643 18.0434,10.7801 18.1156,10.708 18.323,10.5005 18.7018,10.5005 18.9093,10.708 19.0085,10.8162 19.0716,10.9515 19.0716,11.1048L19.0716,15.1636C19.0716,16.3993 18.5936,17.5538 17.7187,18.4287 16.8528,19.3036 15.6893,19.7816 14.4536,19.7816L12.8391,19.7816C12.0725,19.7816 11.3148,19.5922 10.6474,19.2314 9.97094,18.8706 9.39369,18.3385 8.97879,17.7071L8.7984,17.4365C8.52782,17.0216 7.53567,15.2989 5.85804,12.3134 5.78588,12.1781 5.76784,12.0338 5.80392,11.8895 5.84,11.7452 5.9302,11.6189 6.05647,11.5468 6.22784,11.4476 6.42627,11.4115 6.6247,11.4295 6.82313,11.4476 7.00352,11.5468 7.14783,11.6821L8.4737,13.0079C8.72783,13.2621 9.11822,13.3056 9.41903,13.1385 9.67804,13.0065 9.85369,12.7366 9.85369,12.4307L9.85369,4.76409C9.85369,4.61076 9.9078,4.47547 10.016,4.36724 10.2235,4.15077 10.5933,4.15077 10.8098,4.36724 10.918,4.47547 10.9721,4.61076 10.9721,4.76409L10.9721,9.26642 10.9721,9.27386 10.9721,11.0778 10.9721,11.0824 10.9721,11.5287C10.9721,11.9707 11.3239,12.3224 11.7658,12.3224 12.2078,12.3224 12.5595,11.9617 12.5595,11.5287L12.5595,9.26969C12.5605,9.11807 12.6146,8.98425 12.7219,8.877 12.9293,8.66955 13.3081,8.66955 13.5156,8.877 13.6148,8.98523 13.6779,9.12052 13.6779,9.27386L13.6779,11.5287C13.6779,11.9707 14.0387,12.3225 14.4717,12.3225 14.9136,12.3225 15.2654,11.9617 15.2654,11.5287L15.2654,10.1775 15.2654,10.1758C15.2654,10.0225 15.3195,9.88717 15.4277,9.77894 15.6352,9.57149 16.014,9.57149 16.2215,9.77894 16.3207,9.88717 16.3838,10.0225 16.3838,10.1758L16.3838,10.8276C16.3719,10.919 16.3658,11.0115 16.3658,11.1048 16.3658,11.1636 16.372,11.2207 16.3838,11.2756z M4.13531,6.54094C3.89178,6.54094 3.64826,6.43271 3.49493,6.21624 3.23336,5.86448 3.31454,5.36841 3.6663,5.11586 4.4059,4.57469 5.19961,4.11469 6.02941,3.74489 6.42627,3.5645 6.89528,3.74489 7.07567,4.14175 7.25606,4.53861 7.07567,5.00763 6.67881,5.18802 5.94823,5.51272 5.25373,5.9186 4.60433,6.38761 4.46001,6.48683 4.29766,6.54094 4.13531,6.54094z M17.3669,5.94565C17.5022,6.02683,17.6465,6.0629,17.7909,6.0629L17.7818,6.07192C18.0434,6.07192 18.296,5.93663 18.4493,5.70212 18.6838,5.33232 18.5756,4.84527 18.2058,4.61076 17.1144,3.91626 15.9238,3.39313 14.6701,3.05941 14.2552,2.95117 13.8133,3.1947 13.705,3.61862 13.5968,4.04253 13.8403,4.47547 14.2642,4.5837 15.3556,4.88135 16.4019,5.34134 17.3669,5.94565z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="HandToolbarTextBlock" Text="漫游" Foreground="Black" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="SymbolIconUndo"
MouseUp="SymbolIconUndo_MouseUp"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Margin="0,-2"
IsEnabled="False"
Width="28">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0"
Opacity="{Binding ElementName=SymbolIconUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="UndoIconGeometry" Brush="#1b1b1b"
Geometry="F1 M24,24z M0,0z M9.70711,6.70711C10.0976,6.31658 10.0976,5.68342 9.70711,5.29289 9.31658,4.90237 8.68342,4.90237 8.29289,5.29289L4.29289,9.29289C3.90237,9.68342,3.90237,10.3166,4.29289,10.7071L8.29289,14.7071C8.68342,15.0976 9.31658,15.0976 9.70711,14.7071 10.0976,14.3166 10.0976,13.6834 9.70711,13.2929L7.40633,10.9921 16,11C16.7956,11 17.5587,11.3161 18.1213,11.8787 18.6839,12.4413 19,13.2044 19,14 19,14.7956 18.6839,15.5587 18.1213,16.1213 17.5587,16.6839 16.7956,17 16,17L15,17C14.4477,17 14,17.4477 14,18 14,18.5523 14.4477,19 15,19L16,19C17.3261,19 18.5979,18.4732 19.5355,17.5355 20.4732,16.5979 21,15.3261 21,14 21,12.6739 20.4732,11.4021 19.5355,10.4645 18.5979,9.52678 17.3261,9 16,9L7.40633,9.00789 9.70711,6.70711z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="UndoToolbarTextBlock" Text="撤销" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
Opacity="{Binding ElementName=SymbolIconUndo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}"
Foreground="Black" FontSize="8" Margin="0,1,0,0"
TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="SymbolIconRedo"
MouseUp="SymbolIconRedo_MouseUp"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center"
IsEnabled="False"
Width="28" Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Height="17"
Margin="0,3,0,0"
Opacity="{Binding ElementName=SymbolIconRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing x:Name="RedoIconGeometry" Brush="#1b1b1b"
Geometry="F1 M24,24z M0,0z M15.2929,6.70711C14.9024,6.31658 14.9024,5.68342 15.2929,5.29289 15.6834,4.90237 16.3166,4.90237 16.7071,5.29289L20.7071,9.29289C21.0976,9.68342,21.0976,10.3166,20.7071,10.7071L16.7071,14.7071C16.3166,15.0976 15.6834,15.0976 15.2929,14.7071 14.9024,14.3166 14.9024,13.6834 15.2929,13.2929L17.5937,10.9921 9,11C8.20435,11 7.44129,11.3161 6.87868,11.8787 6.31607,12.4413 6,13.2044 6,14 6,14.7956 6.31607,15.5587 6.87868,16.1213 7.44129,16.6839 8.20435,17 9,17L10,17C10.5523,17 11,17.4477 11,18 11,18.5523 10.5523,19 10,19L9,19C7.67392,19 6.40215,18.4732 5.46447,17.5355 4.52679,16.5979 4,15.3261 4,14 4,12.6739 4.52678,11.4021 5.46447,10.4645 6.40215,9.52678 7.67392,9 9,9L17.5937,9.00789 15.2929,6.70711z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="RedoToolbarTextBlock" Text="重做" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
Opacity="{Binding ElementName=SymbolIconRedo, Path=IsEnabled, Converter={StaticResource IsEnabledToOpacityConverter}}"
Foreground="Black" FontSize="8" Margin="0,1,0,0"
TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="CursorWithDelFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="CursorWithDelIcon_Click"
Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center" Width="28" Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FF000000"
Geometry="F0 M24,24z M0,0z M11.5007,11.0214C11.5007,10.674,11.7823,10.3923,12.1298,10.3923L14.2967,10.3923 14.2967,9.90299C14.2967,9.41878 14.5325,8.98723 14.8305,8.68924 15.1285,8.39124 15.56,8.15547 16.0442,8.15547L18.281,8.15547C18.7652,8.15547 19.1968,8.39124 19.4948,8.68924 19.7928,8.98723 20.0286,9.41878 20.0286,9.90299L20.0286,10.3923 22.1955,10.3923C22.5429,10.3923 22.8246,10.674 22.8246,11.0214 22.8246,11.3688 22.5429,11.6505 22.1955,11.6505L21.7062,11.6505 21.7062,18.8503C21.7062,19.3345 21.4704,19.766 21.1724,20.064 20.8744,20.362 20.4429,20.5978 19.9587,20.5978L14.3666,20.5978C13.8824,20.5978 13.4508,20.362 13.1528,20.064 12.8549,19.766 12.6191,19.3345 12.6191,18.8503L12.6191,11.6505 12.1298,11.6505C11.7823,11.6505,11.5007,11.3688,11.5007,11.0214z M14.0425,19.1743C13.9211,19.0529,13.8773,18.9253,13.8773,18.8503L13.8773,11.6505 20.448,11.6505 20.448,18.8503C20.448,18.9253 20.4041,19.0529 20.2827,19.1743 20.1613,19.2958 20.0337,19.3396 19.9587,19.3396L14.3666,19.3396C14.2916,19.3396,14.1639,19.2958,14.0425,19.1743z M15.5549,9.90299C15.5549,9.82799 15.5987,9.70034 15.7202,9.57893 15.8416,9.45752 15.9692,9.41368 16.0442,9.41368L18.281,9.41368C18.356,9.41368 18.4837,9.45752 18.6051,9.57893 18.7265,9.70034 18.7703,9.82799 18.7703,9.90299L18.7703,10.3923 15.5549,10.3923 15.5549,9.90299z M18.9101,13.8174C18.9101,13.47 18.6285,13.1883 18.281,13.1883 17.9336,13.1883 17.6519,13.47 17.6519,13.8174L17.6519,17.1727C17.6519,17.5201 17.9336,17.8018 18.281,17.8018 18.6285,17.8018 18.9101,17.5201 18.9101,17.1727L18.9101,13.8174z M16.6733,13.8174C16.6733,13.47 16.3917,13.1883 16.0442,13.1883 15.6968,13.1883 15.4151,13.47 15.4151,13.8174L15.4151,17.1727C15.4151,17.5201 15.6968,17.8018 16.0442,17.8018 16.3917,17.8018 16.6733,17.5201 16.6733,17.1727L16.6733,13.8174z M1.32567,3.55246C1.47265,3.40549,1.69379,3.36174,1.88566,3.44167L11.8342,7.58639C12.0311,7.66845 12.1567,7.86389 12.1495,8.07716 12.1424,8.29043 12.0039,8.47698 11.8018,8.54561L8.25047,9.75183 11.4309,12.9323C11.6313,13.1326 11.6313,13.4574 11.4309,13.6577 11.2306,13.8581 10.9058,13.8581 10.7055,13.6577L7.52503,10.4773 6.31881,14.0286C6.25019,14.2307 6.06364,14.3692 5.85037,14.3763 5.6371,14.3835 5.44166,14.2579 5.3596,14.0609L1.21488,4.11245C1.13494,3.92058,1.1787,3.69944,1.32567,3.55246z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="ClearAndMouseToolbarTextBlock" Text="清并鼠" Foreground="Black"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<Grid Width="0">
<Border Visibility="Visible" ClipToBounds="True" Name="EraserSizePanel"
Margin="-203,-128,83,37" CornerRadius="5" Background="#fafafa" Opacity="1"
BorderBrush="#2563eb" BorderThickness="1">
<ui:SimpleStackPanel Margin="0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="6,6,0,0"
Background="#2563eb" Margin="-1,-1,-1,1">
<Canvas Height="24" ClipToBounds="True">
<TextBlock Text="橡皮选项" Canvas.Left="8" Foreground="White"
Padding="0,5"
FontSize="11" FontWeight="Bold" TextAlignment="Center" />
</Canvas>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Margin="0,8,0,0" Spacing="-2"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Label Margin="0,0,0,0" Content="大小" FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}" FontSize="10"
VerticalAlignment="Center" />
<Viewbox Margin="8,0,0,0" Height="20" Width="52">
<ComboBox Name="ComboBoxEraserSizeFloatingBar"
FontFamily="Microsoft YaHei UI" SelectedIndex="2"
SelectionChanged="ComboBoxEraserSizeFloatingBar_SelectionChanged">
<ComboBoxItem Content="很小" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较小" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="中等" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较大" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="很大" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</Viewbox>
</ui:SimpleStackPanel>
<TextBlock HorizontalAlignment="Center" Margin="0,12,0,6" Text="橡皮形状"
FontWeight="Bold"
Foreground="{DynamicResource FloatBarForeground}"
FontSize="10" VerticalAlignment="Center" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Center"
Margin="0,0,0,0" Spacing="4">
<Border x:Name="CircleEraserTabButton" MouseDown="SwitchToCircleEraser"
Background="#553b82f6" Height="20" Width="40" CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel x:Name="CircleEraserTabButtonIndicator"
Visibility="Visible"
Orientation="Horizontal"
Canvas.Left="11" Canvas.Right="11"
Canvas.Bottom="0">
<Border Width="18" Height="2" Background="#2563eb"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Height="20"
Width="40">
<ui:SimpleStackPanel VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center" Margin="0,3">
<TextBlock x:Name="CircleEraserTabButtonText"
Foreground="#172554" FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="圆形擦"
Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
<Border x:Name="RectangleEraserTabButton"
MouseDown="SwitchToRectangleEraser" Background="Transparent"
Height="20" Width="40" CornerRadius="3">
<Canvas>
<ui:SimpleStackPanel Visibility="Collapsed"
x:Name="RectangleEraserTabButtonIndicator"
Orientation="Horizontal" Canvas.Left="11"
Canvas.Right="11" Canvas.Bottom="0">
<Border Width="18" Height="2" Background="#2563eb"
CornerRadius="1" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Height="20"
Width="40">
<ui:SimpleStackPanel VerticalAlignment="Center"
Orientation="Horizontal"
HorizontalAlignment="Center" Margin="0,3">
<TextBlock x:Name="RectangleEraserTabButtonText"
Foreground="#172554" FontWeight="Medium"
FontSize="9" TextAlignment="Center"
Text="黑板擦"
Margin="2,1,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Canvas>
</Border>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
<ui:SimpleStackPanel
Orientation="{Binding ElementName=StackPanelFloatingBar, Path=Orientation}">
<Border Margin="2,0,2,0" BorderBrush="#71717a" BorderThickness="1,0,0,0" />
<ui:SimpleStackPanel
Name="WhiteboardFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="ImageBlackboard_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="28"
Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FF000000"
Geometry="F0 M24,24z M0,0z M5,5.875C4.70163,5.875 4.41548,5.99353 4.2045,6.2045 3.99353,6.41548 3.875,6.70163 3.875,7L3.875,17C3.875,17.2984 3.99353,17.5845 4.2045,17.7955 4.41548,18.0065 4.70163,18.125 5,18.125L8,18.125C8.48325,18.125 8.875,18.5168 8.875,19 8.875,19.4832 8.48325,19.875 8,19.875L5,19.875C4.2375,19.875 3.50623,19.5721 2.96707,19.0329 2.4279,18.4938 2.125,17.7625 2.125,17L2.125,7C2.125,6.2375 2.4279,5.50624 2.96707,4.96707 3.50624,4.4279 4.2375,4.125 5,4.125L19,4.125C19.7625,4.125 20.4938,4.4279 21.0329,4.96707 21.5721,5.50623 21.875,6.2375 21.875,7L21.875,18C21.875,18.4973 21.6775,18.9742 21.3258,19.3258 20.9742,19.6775 20.4973,19.875 20,19.875 19.5168,19.875 19.125,19.4832 19.125,19 19.125,18.5168 19.5168,18.125 20,18.125 20.0332,18.125 20.0649,18.1118 20.0884,18.0884 20.1118,18.0649 20.125,18.0332 20.125,18L20.125,7C20.125,6.70163 20.0065,6.41548 19.7955,6.2045 19.5845,5.99353 19.2984,5.875 19,5.875L5,5.875z M10.6742,15.6742C11.0258,15.3225,11.5027,15.125,12,15.125L16,15.125C16.4973,15.125 16.9742,15.3225 17.3258,15.6742 17.6775,16.0258 17.875,16.5027 17.875,17L17.875,18C17.875,18.4973 17.6775,18.9742 17.3258,19.3258 16.9742,19.6775 16.4973,19.875 16,19.875L12,19.875C11.5027,19.875 11.0258,19.6775 10.6742,19.3258 10.3225,18.9742 10.125,18.4973 10.125,18L10.125,17C10.125,16.5027,10.3225,16.0258,10.6742,15.6742z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="WhiteboardToolbarTextBlock" Text="白板" Foreground="Black"
FontSize="8" Margin="0,1,0,0" TextAlignment="Center" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Name="ToolsFloatingBarBtn"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="SymbolIconTools_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="28"
Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FF1B1B1B"
Geometry="F0 M24,24z M0,0z M4.41721,4.29873C4.35178,4.29873,4.29873,4.35178,4.29873,4.41721L4.29873,9.15646C4.29873,9.22189,4.35178,9.27494,4.41721,9.27494L9.15646,9.27494C9.22189,9.27494,9.27494,9.22189,9.27494,9.15646L9.27494,4.41721C9.27494,4.35178,9.22189,4.29873,9.15646,4.29873L4.41721,4.29873z M2.64,4.41721C2.64,3.43569,3.43569,2.64,4.41721,2.64L9.15646,2.64C10.138,2.64,10.9337,3.43569,10.9337,4.41721L10.9337,9.15646C10.9337,10.138,10.138,10.9337,9.15646,10.9337L4.41721,10.9337C3.43569,10.9337,2.64,10.138,2.64,9.15646L2.64,4.41721z M14.8435,4.29873C14.7781,4.29873,14.7251,4.35178,14.7251,4.41721L14.7251,9.15646C14.7251,9.22189,14.7781,9.27494,14.8435,9.27494L19.5828,9.27494C19.6482,9.27494,19.7013,9.22189,19.7013,9.15646L19.7013,4.41721C19.7013,4.35178,19.6482,4.29873,19.5828,4.29873L14.8435,4.29873z M13.0663,4.41721C13.0663,3.43569,13.862,2.64,14.8435,2.64L19.5828,2.64C20.5643,2.64,21.36,3.43569,21.36,4.41721L21.36,9.15646C21.36,10.138,20.5643,10.9337,19.5828,10.9337L14.8435,10.9337C13.862,10.9337,13.0663,10.138,13.0663,9.15646L13.0663,4.41721z M14.8435,14.7251C14.7781,14.7251,14.7251,14.7781,14.7251,14.8435L14.7251,19.5828C14.7251,19.6482,14.7781,19.7013,14.8435,19.7013L19.5828,19.7013C19.6482,19.7013,19.7013,19.6482,19.7013,19.5828L19.7013,14.8435C19.7013,14.7781,19.6482,14.7251,19.5828,14.7251L14.8435,14.7251z M13.0663,14.8435C13.0663,13.862,13.862,13.0663,14.8435,13.0663L19.5828,13.0663C20.5643,13.0663,21.36,13.862,21.36,14.8435L21.36,19.5828C21.36,20.5643,20.5643,21.36,19.5828,21.36L14.8435,21.36C13.862,21.36,13.0663,20.5643,13.0663,19.5828L13.0663,14.8435z M4.41721,14.7251C4.35178,14.7251,4.29873,14.7781,4.29873,14.8435L4.29873,19.5828C4.29873,19.6482,4.35178,19.7013,4.41721,19.7013L9.15646,19.7013C9.22189,19.7013,9.27494,19.6482,9.27494,19.5828L9.27494,14.8435C9.27494,14.7781,9.22189,14.7251,9.15646,14.7251L4.41721,14.7251z M2.64,14.8435C2.64,13.862,3.43569,13.0663,4.41721,13.0663L9.15646,13.0663C10.138,13.0663,10.9337,13.862,10.9337,14.8435L10.9337,19.5828C10.9337,20.5643,10.138,21.36,9.15646,21.36L4.41721,21.36C3.43569,21.36,2.64,20.5643,2.64,19.5828L2.64,14.8435z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="ToolsToolbarTextBlock" Text="工具" Foreground="Black"
FontSize="8" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
x:Name="Fold_Icon"
MouseDown="FloatingBarToolBtnMouseDownFeedback_Panel"
MouseLeave="FloatingBarToolBtnMouseLeaveFeedback_Panel"
MouseUp="FoldFloatingBar_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="28"
Margin="0,-2">
<Image RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="17"
Margin="0,3,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FF1B1B1B"
Geometry="F1 M24,24z M0,0z M19.1634,15.0537C18.9999,15.0537 18.8278,15.0021 18.6902,14.8902 18.3632,14.6321 18.3116,14.1589 18.5783,13.832 19.0343,13.2642 19.4387,12.6447 19.7656,11.9909 19.172,10.8208 16.763,6.72556 11.9967,6.72556 11.6612,6.72556 11.3256,6.75137 10.9987,6.78579 10.5943,6.83741 10.2072,6.54489 10.1556,6.13193 10.1039,5.71896 10.3965,5.34041 10.8094,5.28879 11.1966,5.23717 11.5923,5.21136 11.9967,5.21136 18.4407,5.21136 21.1766,11.423 21.297,11.6897 21.383,11.8876 21.3744,12.1113 21.2884,12.3006 20.8754,13.1781 20.3592,14.0041 19.757,14.7612 19.6107,14.9418 19.387,15.0451 19.172,15.0451L19.1634,15.0537z M10.689,15.1483C11.0847,15.3118,11.5063,15.3892,11.9365,15.3892L11.9451,15.4064 12.0053,15.4064C12.4613,15.3978 12.8915,15.2946 13.3044,15.1139 13.4763,15.0387 13.6392,14.9486 13.7931,14.8455L15.4197,16.472 16.533,17.5854 20.0753,21.1277C20.2216,21.2826,20.4195,21.3514,20.6087,21.3514L20.6001,21.36C20.7894,21.36 20.9873,21.2826 21.1335,21.1363 21.4261,20.8438 21.4261,20.362 21.1335,20.0695L3.92668,2.86262C3.63416,2.5615 3.16958,2.57011 2.86846,2.86262 2.56734,3.15514 2.56734,3.62833 2.86846,3.92085L6.21371,7.2661C4.72738,8.44444 3.5311,9.95577 2.71359,11.6725 2.62756,11.8704 2.61896,12.0941 2.70499,12.292 2.81684,12.5587 5.55273,18.7704 12.0053,18.7704L12.0311,18.7704C13.6161,18.7704,15.1606,18.3654,16.533,17.5854L15.4197,16.472C14.3708,16.9906,13.2144,17.2648,12.0311,17.2648L12.0053,17.2648C7.239,17.2648 4.83004,13.1695 4.2364,11.9995 4.96897,10.5725 6.01289,9.32147 7.29011,8.3425L9.15767,10.2101C9.05523,10.3645 8.96629,10.5279 8.89086,10.7003 8.71018,11.1133 8.60694,11.5521 8.60694,11.9995 8.59834,12.4468 8.67577,12.8856 8.84784,13.3072 9.0113,13.7288 9.26081,14.0987 9.57913,14.417 9.89746,14.7354 10.2674,14.9763 10.689,15.1483z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock x:Name="HideToolbarTextBlock" Text="隐藏" Foreground="Black"
FontSize="8" Visibility="{Binding ElementName=FloatingBarTextVisibilityBindingLikeAPieceOfShit, Path=Visibility}"
Margin="0,1,0,0" TextAlignment="Center" />
</ui:SimpleStackPanel>
<Grid Width="0">
<Border ClipToBounds="True" Name="BorderTools" Margin="-133,-156,14,37"
CornerRadius="5" Background="#fafafa" Opacity="1" BorderThickness="1"
BorderBrush="#2563eb">
<ui:SimpleStackPanel Margin="-1,0,0,0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1"
CornerRadius="6,6,0,0" Background="#2563eb" Margin="-1,-1,-1,0"
Padding="1,1,1,0">
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Stretch">
<TextBlock Text="更多功能" Foreground="White" Padding="8,5,44,5"
FontSize="11" FontWeight="Bold"
TextAlignment="Center" />
<Image Margin="0,0,0,0"
Source="/Resources/new-icons/close-white.png"
RenderOptions.BitmapScalingMode="HighQuality"
Height="16"
Width="16" MouseDown="Border_MouseDown"
MouseUp="CloseBordertools_MouseUp" />
</ui:SimpleStackPanel>
</Border>
<!---->
<ui:SimpleStackPanel Margin="10,3,10,2" Spacing="-2">
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="ImageCountdownTimer_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M12,3C11.7613,3 11.5324,3.09482 11.3636,3.2636 11.1948,3.43239 11.1,3.6613 11.1,3.9L11.1,6.6C11.1,7.09705 11.5029,7.5 12,7.5 12.4971,7.5 12.9,7.09705 12.9,6.6L12.9,4.85646C14.3196,5.0353 15.6613,5.63436 16.7472,6.58675 18.0606,7.73848 18.9104,9.32838 19.1384,11.0602 19.3664,12.792 18.957,14.5477 17.9865,16.0001 17.0162,17.4525 15.5508,18.5026 13.8635,18.9547 12.1762,19.4067 10.3822,19.2301 8.81552,18.4575 7.24888,17.6849 6.01653,16.3691 5.34806,14.7554 4.67961,13.1415 4.62062,11.3397 5.1821,9.68563 5.49617,8.76044 5.99235,7.91676 6.63344,7.2 6.96481,6.8295 6.93309,6.26054 6.5626,5.92917 6.19212,5.59781 5.62315,5.62952 5.29179,6.00001 4.49049,6.8959 3.87021,7.95054 3.47763,9.10704 2.77577,11.1746 2.84951,13.4269 3.68509,15.4441 4.52067,17.4614 6.0611,19.1061 8.0194,20.0718 9.97769,21.0375 12.2203,21.2585 14.3294,20.6933 16.4384,20.1282 18.2701,18.8156 19.4832,17.0001 20.6963,15.1847 21.208,12.9901 20.923,10.8252 20.638,8.66047 19.5758,6.67311 17.9341,5.23344 16.2925,3.79377 14.1835,3 12,3z M9.0364,7.7636C8.68492,7.41213 8.11508,7.41213 7.7636,7.7636 7.41213,8.11508 7.41213,8.68492 7.7636,9.0364L10.2609,11.5338C10.2212,11.6825 10.2,11.8387 10.2,12 10.2,12.9941 11.0059,13.8 12,13.8 12.9941,13.8 13.8,12.9941 13.8,12 13.8,11.0059 12.9941,10.2 12,10.2 11.8387,10.2 11.6825,10.2212 11.5338,10.2609L9.0364,7.7636z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="计时器" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconRand_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M15.9475,4.75965C15.7358,5.18305,15.9074,5.69791,16.3308,5.90961L16.9034,6.19589C14.0673,6.82039 11.7039,8.89176 10.7582,11.729 9.8511,14.4502 7.3045,16.2857 4.43608,16.2857L3.85713,16.2857C3.38376,16.2857 3,16.6694 3,17.1428 3,17.6162 3.38376,17.9999 3.85713,17.9999L4.43608,17.9999C8.04237,17.9999 11.2441,15.6923 12.3845,12.271 13.2915,9.54985 15.8381,7.71436 18.7066,7.71436L20.124,7.71436C20.1661,7.71524 20.208,7.71301 20.2494,7.70777 20.4903,7.67729 20.7143,7.54515 20.8554,7.33338 20.9116,7.24952 20.9533,7.15519 20.9771,7.05396 21.001,6.95301 21.0059,6.85024 20.9932,6.75036 20.9627,6.50938 20.8304,6.28523 20.6184,6.14418 20.5838,6.12101 20.5474,6.1003 20.5094,6.08229L17.0974,4.37632C16.674,4.16462,16.1592,4.33624,15.9475,4.75965z M20.8557,16.667C20.9116,16.7507 20.9533,16.8447 20.977,16.9456 21.001,17.0467 21.0059,17.1497 20.9932,17.2498 20.9626,17.4908 20.8303,17.7148 20.6185,17.8558 20.5838,17.8791 20.5474,17.8997 20.5094,17.9177L17.0975,19.6237C16.674,19.8354 16.1592,19.6638 15.9475,19.2404 15.7358,18.817 15.9074,18.3022 16.3308,18.0904L17.0491,17.7313C15.7728,17.4079 14.5941,16.8029 13.5952,15.9737 13.231,15.6713 13.1809,15.1308 13.4833,14.7667 13.7857,14.4025 14.3261,14.3523 14.6903,14.6547 15.9326,15.6862 17.5188,16.2857 19.2067,16.2857L20.1241,16.2857C20.1662,16.2848 20.2081,16.287 20.2495,16.2923 20.4905,16.3228 20.7146,16.455 20.8557,16.667z M3,6.85722C3,6.38384,3.38376,6.00009,3.85713,6.00009L4.36455,6.00009C6.25231,6.00009 8.03834,6.60414 9.50119,7.6588 9.88517,7.93565 9.972,8.47136 9.69519,8.85534 9.41835,9.23934 8.88264,9.32619 8.49866,9.04935 7.32072,8.2001 5.88391,7.71436 4.36455,7.71436L3.85713,7.71436C3.38376,7.71436,3,7.3306,3,6.85722z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="随机抽" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconRandOne_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M3.9,9.3C4.39706,9.3,4.8,8.89706,4.8,8.4L4.8,4.8 8.4,4.8C8.89705,4.8 9.3,4.39706 9.3,3.9 9.3,3.40295 8.89705,3 8.4,3L3.9,3C3.6613,3 3.43239,3.09482 3.2636,3.2636 3.09482,3.43239 3,3.6613 3,3.9L3,8.4C3,8.89706,3.40295,9.3,3.9,9.3z M3.9,14.7C4.39706,14.7,4.8,15.1029,4.8,15.6L4.8,19.2 8.4,19.2C8.89705,19.2 9.3,19.6029 9.3,20.1 9.3,20.5971 8.89705,21 8.4,21L3.9,21C3.6613,21 3.43239,20.9051 3.2636,20.7364 3.09482,20.5676 3,20.3387 3,20.1L3,15.6C3,15.1029,3.40295,14.7,3.9,14.7z M20.1,9.3C19.6029,9.3,19.2,8.89706,19.2,8.4L19.2,4.8 15.6,4.8C15.1029,4.8 14.7,4.39706 14.7,3.9 14.7,3.40295 15.1029,3 15.6,3L20.1,3C20.3387,3 20.5676,3.09482 20.7364,3.2636 20.9051,3.43239 21,3.6613 21,3.9L21,8.4C21,8.89706,20.5971,9.3,20.1,9.3z M20.1,14.7C19.6029,14.7,19.2,15.1029,19.2,15.6L19.2,19.2 15.6,19.2C15.1029,19.2 14.7,19.6029 14.7,20.1 14.7,20.5971 15.1029,21 15.6,21L20.1,21C20.3387,21 20.5676,20.9051 20.7364,20.7364 20.9051,20.5676 21,20.3387 21,20.1L21,15.6C21,15.1029,20.5971,14.7,20.1,14.7z M8.4,10.2C8.4,8.21177 10.0118,6.6 12,6.6 13.9882,6.6 15.6,8.21177 15.6,10.2 15.6,12.1882 13.9882,13.8 12,13.8 10.0118,13.8 8.4,12.1882 8.4,10.2z M12,8.4C11.0059,8.4 10.2,9.20589 10.2,10.2 10.2,11.1941 11.0059,12 12,12 12.9941,12 13.8,11.1941 13.8,10.2 13.8,9.20589 12.9941,8.4 12,8.4z M7.5,16.5C7.5,16.0029,7.90295,15.6,8.4,15.6L15.6,15.6C16.0971,15.6 16.5,16.0029 16.5,16.5 16.5,16.9971 16.0971,17.4 15.6,17.4L8.4,17.4C7.90295,17.4,7.5,16.9971,7.5,16.5z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="单次抽选" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconSaveStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M6,5C5.73478,5 5.48043,5.10536 5.29289,5.29289 5.10536,5.48043 5,5.73478 5,6L5,18C5,18.2652 5.10536,18.5196 5.29289,18.7071 5.48043,18.8946 5.73478,19 6,19L18,19C18.2652,19 18.5196,18.8946 18.7071,18.7071 18.8946,18.5196 19,18.2652 19,18L19,8.41421 15.5858,5 15,5 15,8C15,8.55228,14.5523,9,14,9L8,9C7.44772,9,7,8.55228,7,8L7,5 6,5z M8,3L6,3C5.20435,3 4.44129,3.31607 3.87868,3.87868 3.31607,4.44129 3,5.20435 3,6L3,18C3,18.7956 3.31607,19.5587 3.87868,20.1213 4.44129,20.6839 5.20435,21 6,21L18,21C18.7957,21 19.5587,20.6839 20.1213,20.1213 20.6839,19.5587 21,18.7957 21,18L21,8C21,7.73478,20.8946,7.48043,20.7071,7.29289L16.7071,3.29289C16.5196,3.10536,16.2652,3,16,3L14,3 8,3z M9,5L9,7 13,7 13,5 9,5z M9.87868,11.8787C10.4413,11.3161 11.2043,11 12,11 12.7957,11 13.5587,11.3161 14.1213,11.8787 14.6839,12.4413 15,13.2043 15,14 15,14.7957 14.6839,15.5587 14.1213,16.1213 13.5587,16.6839 12.7957,17 12,17 11.2043,17 10.4413,16.6839 9.87868,16.1213 9.31607,15.5587 9,14.7957 9,14 9,13.2043 9.31607,12.4413 9.87868,11.8787z M12,13C11.7348,13 11.4804,13.1054 11.2929,13.2929 11.1054,13.4804 11,13.7348 11,14 11,14.2652 11.1054,14.5196 11.2929,14.7071 11.4804,14.8946 11.7348,15 12,15 12.2652,15 12.5196,14.8946 12.7071,14.7071 12.8946,14.5196 13,14.2652 13,14 13,13.7348 12.8946,13.4804 12.7071,13.2929 12.5196,13.1054 12.2652,13 12,13z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="保存" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconOpenStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M5,5C4.73478,5 4.48043,5.10536 4.29289,5.29289 4.10536,5.48043 4,5.73478 4,6L4,17C4,17.2652 4.10536,17.5196 4.29289,17.7071 4.32236,17.7366 4.35349,17.764 4.38604,17.7893L6.82062,11.298C6.82065,11.2979 6.8206,11.2981 6.82062,11.298 6.96351,10.9169 7.21932,10.5883 7.55377,10.3564 7.88827,10.1245 8.28558,10.0002 8.69262,10L20,10 20,9C20,8.73478 19.8946,8.48043 19.7071,8.29289 19.5196,8.10536 19.2652,8 19,8L12,8C11.7348,8,11.4804,7.89464,11.2929,7.70711L8.58579,5 5,5z M20.9992,12L8.69338,12 6.44307,18 19.0257,18C19.0258,18 19.0256,18 19.0257,18 19.2583,17.9999 19.4838,17.9187 19.663,17.7705 19.8422,17.6222 19.9641,17.416 20.0077,17.1875L20.9992,12z M22,10.2682C22.1988,10.383 22.3767,10.5315 22.5256,10.7073 22.7133,10.9288 22.8504,11.1885 22.9276,11.4684 23.0048,11.7483 23.0201,12.0416 22.9725,12.328L22.9682,12.3517 21.9723,17.5625C21.8414,18.248 21.4756,18.8665 20.9379,19.3114 20.4002,19.7563 19.7242,19.9998 19.0263,20L5,20C4.20435,20 3.44129,19.6839 2.87868,19.1213 2.31607,18.5587 2,17.7956 2,17L2,6C2,5.20435 2.31607,4.44129 2.87868,3.87868 3.44129,3.31607 4.20435,3 5,3L9,3C9.26522,3,9.51957,3.10536,9.70711,3.29289L12.4142,6 19,6C19.7957,6 20.5587,6.31607 21.1213,6.87868 21.6839,7.44129 22,8.20435 22,9L22,10.2682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="打开..." FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="GridInkReplayButton_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M11,4.99999C11,4.60761 10.7705,4.25149 10.4132,4.08935 10.0559,3.92722 9.63679,3.98903 9.3415,4.24741L1.3415,11.2474C1.12448,11.4373 1,11.7116 1,12 1,12.2883 1.12448,12.5627 1.3415,12.7526L9.3415,19.7526C9.63679,20.0109 10.0559,20.0728 10.4132,19.9106 10.7705,19.7485 11,19.3924 11,19L11,4.99999z M9,16.7962L3.51859,12 9,7.20375 9,16.7962z M22,4.99999C22,4.60761 21.7705,4.25149 21.4132,4.08935 21.0559,3.92722 20.6368,3.98903 20.3415,4.24741L12.3415,11.2474C12.1245,11.4373 12,11.7116 12,12 12,12.2883 12.1245,12.5627 12.3415,12.7526L20.3415,19.7526C20.6368,20.0109 21.0559,20.0728 21.4132,19.9106 21.7705,19.7485 22,19.3924 22,19L22,4.99999z M20,16.7962L14.5186,12 20,7.20375 20,16.7962z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="重播" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,0,0,0" Height="40" Spacing="0"
Orientation="Horizontal">
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconScreenshot_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M9,3C8.46957,3 7.96086,3.21071 7.58579,3.58579 7.21071,3.96086 7,4.46957 7,5 7,5.26522 6.89464,5.51957 6.70711,5.70711 6.51957,5.89464 6.26522,6 6,6L5,6C4.20435,6 3.44129,6.31607 2.87868,6.87868 2.31607,7.44129 2,8.20435 2,9L2,18C2,18.7956 2.31607,19.5587 2.87868,20.1213 3.44129,20.6839 4.20435,21 5,21L19,21C19.7957,21 20.5587,20.6839 21.1213,20.1213 21.6839,19.5587 22,18.7957 22,18L22,9C22,8.20435 21.6839,7.44129 21.1213,6.87868 20.5587,6.31607 19.7957,6 19,6L18,6C17.7348,6 17.4804,5.89464 17.2929,5.70711 17.1054,5.51957 17,5.26522 17,5 17,4.46957 16.7893,3.96086 16.4142,3.58579 16.0391,3.21071 15.5304,3 15,3L9,3z M9,5L15,5C15,5.79565 15.3161,6.55871 15.8787,7.12132 16.4413,7.68393 17.2044,8 18,8L19,8C19.2652,8 19.5196,8.10536 19.7071,8.29289 19.8946,8.48043 20,8.73478 20,9L20,18C20,18.2652 19.8946,18.5196 19.7071,18.7071 19.5196,18.8946 19.2652,19 19,19L5,19C4.73478,19 4.48043,18.8946 4.29289,18.7071 4.10536,18.5196 4,18.2652 4,18L4,9C4,8.73478 4.10536,8.48043 4.29289,8.29289 4.48043,8.10536 4.73478,8 5,8L6,8C6.79565,8 7.55871,7.68393 8.12132,7.12132 8.68393,6.55871 9,5.79565 9,5z M12,9C10.9391,9 9.92172,9.42143 9.17157,10.1716 8.42143,10.9217 8,11.9391 8,13 8,14.0609 8.42143,15.0783 9.17157,15.8284 9.92172,16.5786 10.9391,17 12,17 13.0609,17 14.0783,16.5786 14.8284,15.8284 15.5786,15.0783 16,14.0609 16,13 16,11.9391 15.5786,10.9217 14.8284,10.1716 14.0783,9.42143 13.0609,9 12,9z M10.5858,11.5858C10.9609,11.2107 11.4696,11 12,11 12.5304,11 13.0391,11.2107 13.4142,11.5858 13.7893,11.9609 14,12.4696 14,13 14,13.5304 13.7893,14.0391 13.4142,14.4142 13.0391,14.7893 12.5304,15 12,15 11.4696,15 10.9609,14.7893 10.5858,14.4142 10.2107,14.0391 10,13.5304 10,13 10,12.4696 10.2107,11.9609 10.5858,11.5858z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="截屏" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="OperatingGuideWindowIcon_MouseUp"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M8.17317,2.7612C9.38642,2.25866 10.6868,2 12,2 13.3132,2 14.6136,2.25866 15.8268,2.7612 17.0401,3.26375 18.1425,4.00035 19.0711,4.92893 19.9997,5.85752 20.7362,6.95991 21.2388,8.17317 21.7413,9.38642 22,10.6868 22,12 22,13.3132 21.7413,14.6136 21.2388,15.8268 20.7362,17.0401 19.9997,18.1425 19.0711,19.0711 18.1425,19.9997 17.0401,20.7362 15.8268,21.2388 14.6136,21.7413 13.3132,22 12,22 10.6868,22 9.38642,21.7413 8.17317,21.2388 6.95991,20.7362 5.85752,19.9997 4.92893,19.0711 4.00035,18.1425 3.26375,17.0401 2.7612,15.8268 2.25866,14.6136 2,13.3132 2,12 2,10.6868 2.25866,9.38642 2.7612,8.17317 3.26375,6.95991 4.00035,5.85752 4.92893,4.92893 5.85752,4.00035 6.95991,3.26375 8.17317,2.7612z M12,4C10.9494,4 9.90914,4.20693 8.93853,4.60896 7.96793,5.011 7.08601,5.60028 6.34315,6.34315 5.60028,7.08601 5.011,7.96793 4.60896,8.93853 4.20693,9.90914 4,10.9494 4,12 4,13.0506 4.20693,14.0909 4.60896,15.0615 5.011,16.0321 5.60028,16.914 6.34315,17.6569 7.08601,18.3997 7.96793,18.989 8.93853,19.391 9.90914,19.7931 10.9494,20 12,20 13.0506,20 14.0909,19.7931 15.0615,19.391 16.0321,18.989 16.914,18.3997 17.6569,17.6569 18.3997,16.914 18.989,16.0321 19.391,15.0615 19.7931,14.0909 20,13.0506 20,12 20,10.9494 19.7931,9.90914 19.391,8.93853 18.989,7.96793 18.3997,7.08602 17.6569,6.34315 16.914,5.60028 16.0321,5.011 15.0615,4.60896 14.0909,4.20693 13.0506,4 12,4z M12,16C12.5523,16,13,16.4477,13,17L13,17.01C13,17.5623 12.5523,18.01 12,18.01 11.4477,18.01 11,17.5623 11,17.01L11,17C11,16.4477,11.4477,16,12,16z M12.0813,5.97153C11.5241,5.96998 10.9742,6.09779 10.4748,6.3449 9.97535,6.59201 9.54013,6.95167 9.20334,7.39557 8.86952,7.83555 8.95559,8.46284 9.39557,8.79666 9.83555,9.13047 10.4628,9.04441 10.7967,8.60443 10.9463,8.40714 11.1398,8.24729 11.3617,8.13746 11.5837,8.02764 11.8281,7.97083 12.0758,7.97152 12.3234,7.97221 12.5675,8.03037 12.7888,8.14142 13.0102,8.25248 13.2027,8.4134 13.3513,8.61151 13.4999,8.80963 13.6005,9.03953 13.6451,9.28311 13.6897,9.5267 13.6772,9.77732 13.6086,10.0152 13.5399,10.2532 13.4169,10.4719 13.2493,10.6542 13.084,10.8341 12.8798,10.9736 12.6524,11.0623 12.1479,11.2435 11.7149,11.5821 11.4175,12.0283 11.1169,12.4792 10.9709,13.0156 11.0016,13.5566 11.0329,14.108 11.5052,14.5297 12.0566,14.4984 12.608,14.4671 13.0297,13.9948 12.9984,13.4434 12.9923,13.3352 13.0214,13.2279 13.0816,13.1377 13.1417,13.0475 13.2295,12.9793 13.3317,12.9434 13.3403,12.9404 13.3487,12.9373 13.3572,12.934 13.8776,12.735 14.3448,12.4179 14.7218,12.0077 15.0989,11.5974 15.3756,11.1053 15.5301,10.5699 15.6846,10.0346 15.7128,9.47068 15.6124,8.92261 15.5119,8.37454 15.2856,7.85727 14.9513,7.41151 14.617,6.96576 14.1838,6.60369 13.6857,6.35381 13.1877,6.10393 12.6385,5.97307 12.0813,5.97153z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="说明书" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel MouseDown="Border_MouseDown"
MouseUp="SymbolIconSettings_Click"
Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical">
<Image Margin="0,4,0,2" Height="19" Width="19">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup
ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#18181b"
Geometry="F0 M24,24z M0,0z M4.66591,7.13141L11.4017,3.15976C11.5957,3.0552 11.8126,3.00041 12.033,3.00041 12.2534,3.00041 12.4704,3.0552 12.6643,3.15977L19.2182,7.02415C19.2676,7.06721 19.3219,7.10586 19.3806,7.13926 19.5699,7.24687 19.727,7.40296 19.8358,7.59146 19.9447,7.77997 20.0014,7.99407 20,8.21175L20,8.21175 20,8.218 20,15.502C20,15.943 19.7585,16.3548 19.3603,16.5737 19.3424,16.5835 19.3247,16.5939 19.3074,16.6049L12.5874,20.8559C12.4062,20.9506 12.2047,21.0001 12,21.0001 11.7953,21.0001 11.5938,20.9506 11.4126,20.8559L4.69261,16.6049C4.6746,16.5935 4.65624,16.5827 4.63755,16.5725 4.44494,16.4672 4.28416,16.3122 4.172,16.1235 4.05999,15.9351 4.00059,15.72 4,15.5008L4,8.217C4,7.77653 4.24107,7.36544 4.63968,7.14635 4.6485,7.1415 4.65724,7.13652 4.66591,7.13141z M20.4159,5.40859C20.4791,5.44583 20.5369,5.4892 20.589,5.53759 20.9895,5.81003 21.3244,6.16988 21.5678,6.59125 21.8538,7.08656 22.003,7.649 22,8.22093L22,15.502C22,16.6678,21.3677,17.7387,20.353,18.31L13.6266,22.5651C13.6092,22.5761 13.5914,22.5866 13.5733,22.5966 13.0911,22.8613 12.55,23.0001 12,23.0001 11.45,23.0001 10.9089,22.8613 10.4267,22.5966 10.4086,22.5866 10.3908,22.5761 10.3734,22.5651L3.64791,18.3106C3.15439,18.0339 2.74214,17.6322 2.45282,17.1455 2.15755,16.6488 2.00116,16.0818 2,15.504L2,15.502 2,8.217C2,7.04497,2.63892,5.97063,3.6619,5.40163L10.4001,1.42859C10.4084,1.4237 10.4167,1.41894 10.4252,1.41429 10.9176,1.1428 11.4707,1.00041 12.033,1.00041 12.5953,1.00041 13.1484,1.1428 13.6408,1.41429 13.6493,1.41894 13.6576,1.4237 13.6659,1.42859L20.4159,5.40859z M12,8C10.9391,8 9.92172,8.42143 9.17157,9.17157 8.42143,9.92172 8,10.9391 8,12 8,13.0609 8.42143,14.0783 9.17157,14.8284 9.92172,15.5786 10.9391,16 12,16 13.0609,16 14.0783,15.5786 14.8284,14.8284 15.5786,14.0783 16,13.0609 16,12 16,10.9391 15.5786,9.92172 14.8284,9.17157 14.0783,8.42143 13.0609,8 12,8z M10.5858,10.5858C10.9609,10.2107 11.4696,10 12,10 12.5304,10 13.0391,10.2107 13.4142,10.5858 13.7893,10.9609 14,11.4696 14,12 14,12.5304 13.7893,13.0391 13.4142,13.4142 13.0391,13.7893 12.5304,14 12,14 11.4696,14 10.9609,13.7893 10.5858,13.4142 10.2107,13.0391 10,12.5304 10,12 10,11.4696 10.2107,10.9609 10.5858,10.5858z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Content="设置" FontSize="8"
HorizontalAlignment="Center" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Grid>
</Border>
<Border Margin="2,0,0,0" x:Name="EnableTwoFingerGestureBorder" Visibility="Visible" Width="36"
Height="36" CornerRadius="5" Background="#fafafa" BorderBrush="#9952525b"
BorderThickness="1">
<ui:SimpleStackPanel MouseUp="TwoFingerGestureBorder_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="36" Margin="0">
<Image x:Name="EnableTwoFingerGestureBtn" Source="/Resources/new-icons/gesture.png"
RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="18"
Margin="0,3,0,0" />
<TextBlock x:Name="gestureiconText" Text="手势" Foreground="Black" FontSize="8"
Margin="0,0,0,0"
TextAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<Grid Width="0">
<Border ClipToBounds="True" Name="TwoFingerGestureBorder" Margin="-86,-111,-33,40"
CornerRadius="5"
Background="#fafafa" Opacity="1" BorderBrush="#2563eb"
BorderThickness="1">
<ui:SimpleStackPanel Margin="0">
<Border BorderBrush="#1e3a8a" BorderThickness="0,0,0,1" CornerRadius="6,6,0,0"
Background="#2563eb" Margin="-1,-1,-1,1">
<Canvas Height="24" ClipToBounds="True">
<TextBlock Text="手势选项" Canvas.Left="8" Foreground="White" Padding="0,5"
FontSize="11" FontWeight="Bold" TextAlignment="Center" />
</Canvas>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4" VerticalAlignment="Center"
HorizontalAlignment="Center" Margin="0,3,0,0">
<Image Source="/Resources/new-icons/multi-touch.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="16" Width="16" />
<Label Content="多指书写" FontSize="10" VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
Name="ToggleSwitchEnableMultiTouchMode"
FontFamily="Microsoft YaHei UI" IsOn="False" OnContent=""
OffContent=""
Toggled="ToggleSwitchEnableMultiTouchMode_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Opacity="1" x:Name="TwoFingerGestureSimpleStackPanel"
Orientation="Horizontal" Spacing="4" VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/hand-move.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="16" Width="16" />
<Label Content="双指移动" FontSize="10" VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
Name="ToggleSwitchEnableTwoFingerTranslate"
FontFamily="Microsoft YaHei UI" IsOn="False" OnContent=""
OffContent=""
Toggled="ToggleSwitchEnableTwoFingerTranslate_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Opacity="{Binding ElementName=TwoFingerGestureSimpleStackPanel, Path=Opacity}"
Orientation="Horizontal" Spacing="4" VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/zoom.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="16" Width="16" />
<Label Content="双指缩放" FontSize="10" VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
FontFamily="Microsoft YaHei UI"
IsOn="False" OnContent="" OffContent=""
Name="ToggleSwitchEnableTwoFingerZoom"
Toggled="ToggleSwitchEnableTwoFingerZoom_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
Opacity="{Binding ElementName=TwoFingerGestureSimpleStackPanel, Path=Opacity}"
Orientation="Horizontal" Spacing="4" VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image Source="/Resources/new-icons/rotate.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="16" Width="16" />
<Label Content="双指旋转" FontSize="10" VerticalAlignment="Center" />
<Viewbox Width="36" Height="18" Margin="4,0,0,0">
<ui:ToggleSwitch MinWidth="0" Margin="0,-6,0,-6"
FontFamily="Microsoft YaHei UI"
IsOn="False" OnContent="" OffContent=""
Name="ToggleSwitchEnableTwoFingerRotation"
Toggled="ToggleSwitchEnableTwoFingerRotation_Toggled"
RenderTransformOrigin="0.5,0.5">
<ui:ToggleSwitch.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform />
<TranslateTransform X="8" />
</TransformGroup>
</ui:ToggleSwitch.RenderTransform>
</ui:ToggleSwitch>
</Viewbox>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
<!--Visibility="{Binding ElementName=BtnPPTSlideShowEnd, Path=Visibility}">-->
<Border x:Name="BorderFloatingBarExitPPTBtn" Margin="2,0,0,0" Width="34" Height="36"
MouseDown="Border_MouseDown" MouseUp="ImagePPTControlEnd_MouseUp"
Background="{DynamicResource FloatBarBackground}" CornerRadius="4" BorderThickness="1"
BorderBrush="{DynamicResource FloatBarBorderBrush}"
Visibility="Collapsed">
<ui:SimpleStackPanel Background="Transparent" Orientation="Vertical"
HorizontalAlignment="Center"
Width="28" Margin="0,0">
<Image Source="/Resources/new-icons/end-slides-show.png"
RenderOptions.BitmapScalingMode="HighQuality" Width="28" Height="17"
Margin="0,3,0,0" />
<TextBlock Text="退出" Foreground="Black" FontSize="8" Margin="0,1,0,0"
TextAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
</Grid>
<Grid Name="GridForFloatingBarDraging" Background="#01000000" Visibility="Collapsed"
MouseMove="SymbolIconEmoji_MouseMove" MouseUp="SymbolIconEmoji_MouseUp" />
<Grid>
<InkCanvas Name="InkCanvasForInkReplay" MouseDown="InkCanvasForInkReplay_MouseDown" Visibility="Collapsed"
EditingMode="None" Background="Transparent" />
<Border Name="BorderInkReplayToolBox" Width="386" Height="48" HorizontalAlignment="Center"
Visibility="Collapsed"
VerticalAlignment="Bottom" Margin="0,0,0,16" Background="#fafafa" CornerRadius="5"
BorderBrush="#a1a1aa" BorderThickness="1">
<ui:SimpleStackPanel Orientation="Horizontal">
<Border CornerRadius="5,0,0,5" Margin="-1" Padding="12" Background="#b91c1c">
<ui:SimpleStackPanel Orientation="Horizontal">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F0 M24,24z M0,0z M10.4679,3.29578C12.1914,3.08179 13.9385,3.41707 15.4604,4.25385 16.9822,5.09064 18.2013,6.38627 18.9439,7.95624 19.6865,9.5262 19.9148,11.2905 19.5963,12.9977 19.4919,13.5577 19.8611,14.0964 20.4211,14.2009 20.9811,14.3053 21.5198,13.936 21.6243,13.376 22.0224,11.2419 21.737,9.03662 20.8087,7.07416 19.8804,5.1117 18.3566,3.49216 16.4543,2.44618 14.552,1.4002 12.3681,0.981105 10.2138,1.24858 8.05937,1.51606 6.0443,2.45648 4.45553,3.9359 2.86675,5.41533 1.78526,7.35833 1.36509,9.4882 0.944914,11.6181 1.20747,13.8262 2.11537,15.7982 3.02327,17.7701 4.53022,19.4054 6.42161,20.471 8.31301,21.5366 10.4924,21.9783 12.6494,21.7331 13.2155,21.6688 13.6221,21.1578 13.5578,20.5918 13.4935,20.0258 12.9825,19.6191 12.4165,19.6834 10.6908,19.8795 8.94733,19.5262 7.43421,18.6737 5.9211,17.8212 4.71554,16.513 3.98922,14.9355 3.2629,13.3579 3.05285,11.5914 3.38899,9.88747 3.72513,8.18357 4.59032,6.62917 5.86134,5.44563 7.13237,4.26209 8.74442,3.50976 10.4679,3.29578z M11.484,5.29524C12.0536,5.29524,12.5154,5.75704,12.5154,6.32669L12.5154,11.0567 14.2762,12.8175C14.679,13.2203 14.679,13.8734 14.2762,14.2762 13.8734,14.679 13.2203,14.679 12.8175,14.2762L10.7546,12.2133C10.5612,12.0199,10.4525,11.7575,10.4525,11.484L10.4525,6.32669C10.4525,5.75704,10.9143,5.29524,11.484,5.29524z M17.1719,14.7253C16.8533,14.5341 16.4564,14.5291 16.133,14.7122 15.8097,14.8953 15.6098,15.2382 15.6098,15.6098L15.6098,21.7985C15.6098,22.1701 15.8097,22.513 16.133,22.6961 16.4564,22.8792 16.8533,22.8742 17.1719,22.683L22.3292,19.5886C22.6399,19.4022 22.83,19.0665 22.83,18.7042 22.83,18.3418 22.6399,18.0061 22.3292,17.8197L17.1719,14.7253z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</ui:SimpleStackPanel>
</Border>
<StackPanel Width="128" Orientation="Vertical" VerticalAlignment="Center" Margin="8,0,0,0">
<TextBlock Name="InkReplayPanelStatusText" FontSize="17" FontWeight="Bold" Foreground="#b91c1c"
Text="正在重播墨迹..." VerticalAlignment="Center" />
<TextBlock FontSize="12" Foreground="#b91c1c" Text="双击屏幕退出播放" VerticalAlignment="Center" />
</StackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" Margin="9,0,0,0" Spacing="6">
<Border Name="InkReplayPlayPauseBorder" MouseDown="InkReplayPlayPauseBorder_OnMouseDown"
MouseUp="InkReplayPlayPauseBorder_OnMouseUp" CornerRadius="16" Height="32" Width="32">
<Grid>
<Image Name="InkReplayPlayButtonImage" Visibility="Collapsed" Width="18" Height="18"
Margin="2,0,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#FFF2FCF3"
Geometry="F1 M16,16z M0,0z M13.5,7.13397C14.1667,7.51888,14.1667,8.48112,13.5,8.86602L4.5,14.0622C3.83333,14.4471,3,13.966,3,13.1962L3,2.80385C3,2.03405,3.83333,1.55292,4.5,1.93782L13.5,7.13397z">
<GeometryDrawing.Pen>
<Pen Brush="#FF208A3C" Thickness="1" StartLineCap="Flat"
EndLineCap="Flat" LineJoin="Miter" />
</GeometryDrawing.Pen>
</GeometryDrawing>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Image Name="InkReplayPauseButtonImage" Width="18" Height="18">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#FFEBECF0">
<GeometryDrawing.Pen>
<Pen Brush="#FF6C707E" Thickness="1" StartLineCap="Flat"
EndLineCap="Flat" LineJoin="Miter" />
</GeometryDrawing.Pen>
<GeometryDrawing.Geometry>
<RectangleGeometry RadiusX="0.5" RadiusY="0.5"
Rect="3.5,2.5,3,11" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
<GeometryDrawing Brush="#FFEBECF0">
<GeometryDrawing.Pen>
<Pen Brush="#FF6C707E" Thickness="1" StartLineCap="Flat"
EndLineCap="Flat" LineJoin="Miter" />
</GeometryDrawing.Pen>
<GeometryDrawing.Geometry>
<RectangleGeometry RadiusX="0.5" RadiusY="0.5"
Rect="9.5,2.5,3,11" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="InkReplayStopButtonBorder" MouseDown="InkReplayStopButtonBorder_OnMouseDown"
MouseUp="InkReplayStopButtonBorder_OnMouseUp" CornerRadius="16" Height="32" Width="32">
<Image Width="18" Height="18">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#FFFFF7F7">
<GeometryDrawing.Pen>
<Pen Brush="#FFDB3B4B" Thickness="1" StartLineCap="Flat"
EndLineCap="Flat" LineJoin="Miter" />
</GeometryDrawing.Pen>
<GeometryDrawing.Geometry>
<RectangleGeometry RadiusX="1.5" RadiusY="1.5"
Rect="2.5,2.5,11,11" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
<Border Name="InkReplayReplayButtonBorder" MouseDown="InkReplayReplayButtonBorder_OnMouseDown"
MouseUp="InkReplayReplayButtonBorder_OnMouseUp" CornerRadius="16" Height="32"
Width="32">
<Image Width="22" Height="22" Margin="-1,-1,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#FF208A3C"
Geometry="F0 M16,16z M0,0z M9,9.50215C9,8.32441,10.2951,7.60608,11.2942,8.22967L15.2962,10.7275C16.2372,11.3149,16.2372,12.6851,15.2962,13.2725L11.2942,15.7703C10.2951,16.3939,9,15.6756,9,14.4978L9,9.50215z M10.7647,9.07799C10.4317,8.87013,10,9.10957,10,9.50215L10,14.4978C10,14.8904,10.4317,15.1298,10.7647,14.922L14.7667,12.4241C15.0804,12.2284,15.0804,11.7716,14.7667,11.5758L10.7647,9.07799z" />
<GeometryDrawing Brush="#FFF2FCF3"
Geometry="F1 M16,16z M0,0z M10,9.50217C10,9.10959,10.4317,8.87015,10.7647,9.07801L14.7667,11.5758C15.0804,11.7716,15.0804,12.2284,14.7667,12.4242L10.7647,14.922C10.4317,15.1299,10,14.8904,10,14.4978L10,9.50217z" />
<GeometryDrawing Brush="#FF6C707E"
Geometry="F1 M16,16z M0,0z M14,1.5C14,1.22386 13.7761,1 13.5,1 13.2239,1 13,1.22386 13,1.5L13,4.68235C11.9256,3.06631 10.0877,2 8,2 4.68629,2 2,4.68629 2,8 2,11.3137 4.68629,14 8,14L8,13C5.23858,13 3,10.7614 3,8 3,5.23858 5.23858,3 8,3 9.63527,3 11.0878,3.78495 12.0005,5L9.5,5C9.22386,5 9,5.22386 9,5.5 9,5.77614 9.22386,6 9.5,6L14,6 14,1.5z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
<Border Name="InkReplaySpeedButtonBorder" MouseDown="InkReplaySpeedButtonBorder_OnMouseDown"
MouseUp="InkReplaySpeedButtonBorder_OnMouseUp" CornerRadius="16" Height="32" Width="32">
<Image Width="22" Height="22" Margin="-1,-1,-1,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#FF208A3C"
Geometry="F0 M16,16z M0,0z M9,9.50215C9,8.32441,10.2951,7.60608,11.2942,8.22967L15.2962,10.7275C16.2372,11.3149,16.2372,12.6851,15.2962,13.2725L11.2942,15.7703C10.2951,16.3939,9,15.6756,9,14.4978L9,9.50215z M10.7647,9.07799C10.4317,8.87013,10,9.10957,10,9.50215L10,14.4978C10,14.8904,10.4317,15.1298,10.7647,14.922L14.7667,12.4241C15.0804,12.2284,15.0804,11.7716,14.7667,11.5758L10.7647,9.07799z" />
<GeometryDrawing Brush="#FFF2FCF3"
Geometry="F1 M16,16z M0,0z M10,9.50217C10,9.10959,10.4317,8.87015,10.7647,9.07801L14.7667,11.5758C15.0804,11.7716,15.0804,12.2284,14.7667,12.4242L10.7647,14.922C10.4317,15.1299,10,14.8904,10,14.4978L10,9.50217z" />
<GeometryDrawing Brush="#FF6C707E"
Geometry="F1 M16,16z M0,0z M1.5,9C1.5,5.41015 4.41015,2.5 8,2.5 11.5899,2.5 14.5,5.41015 14.5,9 14.5,9.01716 14.4999,9.03444 14.4997,9.05183L15.4651,9.65439C15.4879,9.42788 15.5,9.20815 15.5,9 15.5,4.85786 12.1421,1.5 8,1.5 3.85786,1.5 0.5,4.85786 0.5,9 0.5,10.1604 0.877241,11.6805 1.36637,12.7304 1.44463,12.8984 1.61594,13 1.80126,13L8,13 8,12 2.13917,12C1.76974,11.0874,1.5,9.89088,1.5,9z" />
<GeometryDrawing Brush="#FF6C707E"
Geometry="F1 M16,16z M0,0z M8,10.6L8,9.6C7.55826,9.59989 7.2002,9.24176 7.2002,8.8 7.2002,8.35817 7.55837,8 8.0002,8 8.15213,8 8.29417,8.04235 8.41515,8.11589 8.60651,7.82993 8.85445,7.58935 9.13847,7.40554 8.97934,7.27549 8.79754,7.17214 8.5999,7.10232L8.5999,3.99999C8.5999,3.66862 8.33127,3.39999 7.9999,3.39999 7.66853,3.39999 7.3999,3.66862 7.3999,3.99999L7.3999,7.10253C6.70094,7.34971 6.2002,8.01638 6.2002,8.8 6.2002,9.79405 7.00598,10.5999 8,10.6z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<TextBlock Name="InkReplaySpeedTextBlock" Margin="4,0,0,0" FontSize="13"
Foreground="#18181b" Text="1.0x" VerticalAlignment="Center">
</TextBlock>
</StackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Grid>
<!--// 侧边栏 //-->
<Viewbox x:Name="LeftSidePanel" MouseUp="LeftUnFoldButtonDisplayQuickPanel_MouseUp" Visibility="Visible"
Height="50" Width="32" Margin="-60,0,0,-150" HorizontalAlignment="Left" VerticalAlignment="Center">
<ui:SimpleStackPanel>
<Border Background="#9918181b" Opacity="1" CornerRadius="0,25,25,0" Height="50" Width="32">
<Image x:Name="LeftUnFoldBtnImgChevron" Margin="10,0,0,0"
Source="/Resources/new-icons/unfold-chevron.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="14" Width="14" />
</Border>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox Width="50" Visibility="Collapsed" Name="LeftUnFoldButtonQuickPanel" Margin="-1,0,0,-150"
HorizontalAlignment="Left" VerticalAlignment="Center">
<Border ClipToBounds="True" Visibility="Visible" CornerRadius="0,6,6,0" Background="#fafafa" Opacity="1"
BorderThickness="1" BorderBrush="{DynamicResource FloatBarBorderBrush}" Width="32">
<ui:SimpleStackPanel Orientation="Vertical" Spacing="0" Margin="0,5">
<ui:SimpleStackPanel
MouseUp="SymbolIconRandOne_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_person_money_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="单次抽" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="SymbolIconRand_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_people_money_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="随机抽" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="ImageCountdownTimer_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_timer_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="计时器" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="ImageBlackboard_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/blackboard.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="白板" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="UnFoldFloatingBar_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/eye.png" RenderOptions.BitmapScalingMode="HighQuality"
Height="17" Margin="0,3,0,0" />
<TextBlock Text="显示" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="HideQuickPanel_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/chevron-left.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,3" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
<Viewbox x:Name="RightSidePanel" MouseUp="RightUnFoldButtonDisplayQuickPanel_MouseUp"
Visibility="{Binding ElementName=LeftSidePanel, Path=Visibility}" Height="50" Width="32"
Margin="0,0,-60,-150" HorizontalAlignment="Right" VerticalAlignment="Center">
<ui:SimpleStackPanel>
<Border Background="#9918181b" Opacity="1" CornerRadius="25,0,0,25" Height="50" Width="32">
<Image Margin="0,0,10,0" x:Name="RightUnFoldBtnImgChevron"
Source="/Resources/new-icons/unfold-chevron.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="14" Width="14"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<RotateTransform Angle="180" />
</TransformGroup>
</Image.RenderTransform>
</Image>
</Border>
</ui:SimpleStackPanel>
</Viewbox>
<Viewbox Width="50" Visibility="Collapsed" Name="RightUnFoldButtonQuickPanel" Margin="0,0,-1,-150"
HorizontalAlignment="Right" VerticalAlignment="Center">
<Border ClipToBounds="True" Visibility="Visible" CornerRadius="6,0,0,6" Background="#fafafa" Opacity="1"
BorderThickness="1" BorderBrush="{DynamicResource FloatBarBorderBrush}" Width="32">
<ui:SimpleStackPanel Orientation="Vertical" Spacing="0" Margin="0,5">
<ui:SimpleStackPanel
MouseUp="SymbolIconRandOne_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_person_money_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="单次抽" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="SymbolIconRand_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_people_money_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="随机抽" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="ImageCountdownTimer_MouseUp" Background="Transparent"
Orientation="Vertical" HorizontalAlignment="Center" Width="32" Margin="0">
<Image Source="/Resources/Icons-Fluent/ic_fluent_timer_24_regular.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="计时器" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="ImageBlackboard_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/blackboard.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,0" />
<TextBlock Text="白板" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="UnFoldFloatingBar_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/eye.png" RenderOptions.BitmapScalingMode="HighQuality"
Height="17" Margin="0,3,0,0" />
<TextBlock Text="显示" Foreground="Black" FontSize="8" Margin="0,2,0,3" TextAlignment="Center" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel
MouseUp="HideQuickPanel_MouseUp"
Background="Transparent" Orientation="Vertical" HorizontalAlignment="Center"
Width="32" Margin="0">
<Image Source="/Resources/new-icons/chevron-left.png"
RenderOptions.BitmapScalingMode="HighQuality" Height="17" Margin="0,3,0,3"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="180" />
<TranslateTransform />
</TransformGroup>
</Image.RenderTransform>
</Image>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
</Viewbox>
<!--// 设置界面 //-->
<Grid d:IsHidden="False" x:Name="BorderSettingsMask" IsHitTestVisible="True"
Margin="0,0,0,0">
<Border Name="SettingsOverlay" MouseDown="SettingsOverlayClick" d:IsHidden="True"></Border>
<Border Name="BorderSettings" Background="#ee18181b" ui:ThemeManager.RequestedTheme="Dark" Width="490"
HorizontalAlignment="Left" Margin="300,150,0,350" Visibility="Visible">
<Grid>
<ui:ScrollViewerEx Margin="0,80,12,0" VerticalScrollBarVisibility="Hidden"
PanningMode="VerticalOnly" ui:ThemeManager.RequestedTheme="Dark"
ManipulationBoundaryFeedback="SCManipulationBoundaryFeedback" PreviewMouseWheel="SettingsPaneScrollViewer_PreviewMouseWheel"
Name="SettingsPanelScrollViewer" ScrollChanged="SettingsPane_ScrollChanged">
<StackPanel Margin="70,20,20,20">
<Border Margin="0,0,0,10" Height="100" CornerRadius="5" BorderBrush="#a1a1aa"
BorderThickness="1">
<ui:SimpleStackPanel VerticalAlignment="Center">
<TextBlock Foreground="#fafafa" HorizontalAlignment="Center"
VerticalAlignment="Center" FontSize="15" Margin="0,0,0,10"
Text="设置更改将自动保存,部分设置需要重启软件后生效" />
<ui:SimpleStackPanel Spacing="5">
<ui:SimpleStackPanel Spacing="5" Orientation="Horizontal"
HorizontalAlignment="Center">
<Button Width="116" Height="45" FontFamily="Microsoft YaHei UI"
Click="BtnRestart_Click">
<Button.Resources>
</Button.Resources>
<ui:SimpleStackPanel Orientation="Horizontal"
VerticalAlignment="Center"
HorizontalAlignment="Center" Spacing="0">
<Image RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,0,6,0" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M6.34315,6.34315C7.84299,4.8433 9.87707,4.0005 11.9981,4 14.2527,4.00897 16.4167,4.88785 18.039,6.45324L18.5858,7 16,7C15.4477,7 15,7.44772 15,8 15,8.55228 15.4477,9 16,9L21,9C21.1356,9 21.2649,8.97301 21.3828,8.92412 21.5007,8.87532 21.6112,8.80298 21.7071,8.70711 21.8902,8.52405 21.9874,8.28768 21.9989,8.04797 21.9996,8.03199 22,8.016 22,8L22,3C22,2.44772 21.5523,2 21,2 20.4477,2 20,2.44772 20,3L20,5.58579 19.4471,5.03289 19.435,5.02103C17.4405,3.09289,14.7779,2.01044,12.0038,2L12,2C9.34784,2 6.8043,3.05357 4.92893,4.92893 3.05357,6.8043 2,9.34784 2,12 2,12.5523 2.44772,13 3,13 3.55228,13 4,12.5523 4,12 4,9.87827 4.84285,7.84344 6.34315,6.34315z" />
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M22,12C22,14.6522 20.9464,17.1957 19.0711,19.0711 17.1957,20.9464 14.6522,22 12,22L11.9962,22C9.22213,21.9896,6.55946,20.9071,4.56496,18.979L4.55289,18.9671 4,18.4142 4,21C4,21.5523 3.55228,22 3,22 2.44772,22 2,21.5523 2,21L2,16.0002C2,15.8646 2.02699,15.7351 2.07588,15.6172 2.12432,15.5001 2.19595,15.3904 2.29078,15.295 2.29219,15.2936 2.2936,15.2922 2.29502,15.2908 2.48924,15.0977 2.74301,15.0008 2.997,15 2.998,15 2.999,15 3,15L8,15C8.55228,15 9,15.4477 9,16 9,16.5523 8.55228,17 8,17L5.41421,17 5.96095,17.5467C7.5833,19.1122 9.74736,19.9911 12.002,20 14.123,19.9995 16.157,19.1567 17.6569,17.6569 19.1571,16.1566 20,14.1217 20,12 20,11.4477 20.4477,11 21,11 21.5523,11 22,11.4477 22,12z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label FontSize="16" Foreground="#fafafa"
VerticalAlignment="Center" FontFamily="Microsoft YaHei UI"
FontWeight="Bold">
重启
</Label>
</ui:SimpleStackPanel>
</Button>
<Button Width="116" Height="45" FontFamily="Microsoft YaHei UI"
Click="BtnResetToSuggestion_Click"
Margin="0,0,0,0">
<ui:SimpleStackPanel Orientation="Horizontal"
VerticalAlignment="Center"
HorizontalAlignment="Center" Spacing="0">
<Image
Margin="0,0,4,0" RenderOptions.BitmapScalingMode="HighQuality"
Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M2,6C2,5.44772,2.44772,5,3,5L21,5C21.5523,5 22,5.44772 22,6 22,6.55228 21.5523,7 21,7L3,7C2.44772,7,2,6.55228,2,6z" />
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M2,12C2,11.4477,2.44772,11,3,11L7,11C7.55228,11 8,11.4477 8,12 8,12.5523 7.55228,13 7,13L3,13C2.44772,13,2,12.5523,2,12z" />
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M3,17C2.44772,17 2,17.4477 2,18 2,18.5523 2.44772,19 3,19L7,19C7.55228,19 8,18.5523 8,18 8,17.4477 7.55228,17 7,17L3,17z" />
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M12.3829,11.2029C13.4335,10.1522 14.8952,9.5 16.5,9.5 17.9587,9.5 19.3576,10.0795 20.3891,11.1109 21.4205,12.1424 22,13.5413 22,15 22,16.2593 21.6038,17.4867 20.8675,18.5083 20.1311,19.5299 19.092,20.2939 17.8974,20.6921 16.7027,21.0903 15.413,21.1026 14.211,20.7271 13.009,20.3516 11.9556,19.6074 11.2,18.6 10.8686,18.1582 10.9582,17.5314 11.4,17.2 11.8418,16.8686 12.4686,16.9582 12.8,17.4 13.3037,18.0716 14.006,18.5677 14.8073,18.8181 15.6087,19.0684 16.4685,19.0602 17.2649,18.7947 18.0614,18.5292 18.7541,18.0199 19.245,17.3388 19.7359,16.6578 20,15.8395 20,15 20,14.0717 19.6313,13.1815 18.9749,12.5251 18.3185,11.8687 17.4283,11.5 16.5,11.5 15.4448,11.5 14.4865,11.9278 13.7971,12.6171L13.4142,13 15,13C15.5523,13 16,13.4477 16,14 16,14.5523 15.5523,15 15,15L11.0007,15C10.9997,15 10.998,15 10.997,15 10.8625,14.9996 10.7343,14.9727 10.6172,14.9241 10.5001,14.8757 10.3904,14.804 10.295,14.7092 10.2936,14.7078 10.2922,14.7064 10.2908,14.705 10.196,14.6096 10.1243,14.4999 10.0759,14.3828 10.027,14.2649 10,14.1356 10,14L10,10C10,9.44772 10.4477,9 11,9 11.5523,9 12,9.44772 12,10L12,11.5858 12.3829,11.2029z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Margin="2,0,0,0" FontSize="16" VerticalAlignment="Center"
FontFamily="Microsoft YaHei UI">
重置
</Label>
</ui:SimpleStackPanel>
</Button>
<Button Width="116" Height="45" FontFamily="Microsoft YaHei UI"
Click="BtnExit_Click">
<Button.Resources>
</Button.Resources>
<ui:SimpleStackPanel Orientation="Horizontal"
VerticalAlignment="Center"
HorizontalAlignment="Center" Spacing="0">
<Image RenderOptions.BitmapScalingMode="HighQuality"
Margin="0,0,6,0" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M13,2C13,1.44772 12.5523,1 12,1 11.4477,1 11,1.44772 11,2L11,12C11,12.5523 11.4477,13 12,13 12.5523,13 13,12.5523 13,12L13,2z" />
<GeometryDrawing Brush="White"
Geometry="F1 M24,24z M0,0z M19.1073,5.89303C18.7168,5.50243 18.0837,5.50232 17.6931,5.89277 17.3025,6.28322 17.3024,6.91639 17.6928,7.30698 18.8098,8.42441 19.571,9.84758 19.8802,11.397 20.1894,12.9464 20.0329,14.5528 19.4305,16.0134 18.828,17.474 17.8065,18.7235 16.4948,19.6043 15.1831,20.4851 13.64,20.9578 12.06,20.9628 10.48,20.9677 8.93392,20.5047 7.61674,19.6321 6.29956,18.7595 5.27025,17.5164 4.65863,16.0596 4.04701,14.6028 3.88046,12.9975 4.17999,11.4462 4.47952,9.89485 5.23171,8.46694 6.3417,7.34254 6.7297,6.9495 6.72562,6.31635 6.33258,5.92835 5.93955,5.54036 5.3064,5.54444 4.9184,5.93747 3.5309,7.34298 2.59067,9.12786 2.21626,11.067 1.84185,13.0062 2.05003,15.0128 2.81456,16.8338 3.57909,18.6549 4.86572,20.2087 6.5122,21.2994 8.15867,22.3902 10.0913,22.9689 12.0662,22.9627 14.0412,22.9566 15.9701,22.3657 17.6098,21.2647 19.2494,20.1637 20.5262,18.6018 21.2793,16.776 22.0324,14.9502 22.2281,12.9424 21.8415,11.0056 21.455,9.06878 20.5036,7.28981 19.1073,5.89303z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Label Foreground="#fafafa" FontSize="16"
VerticalAlignment="Center" FontFamily="Microsoft YaHei UI"
FontWeight="Bold">
退出
</Label>
</ui:SimpleStackPanel>
</Button>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
<GroupBox Name="SettingsStartupGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Startup" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="启动" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:ToggleSwitch OnContent="" OffContent="" Visibility="Collapsed"
Name="ToggleSwitchIsAutoUpdate" Header="自动检查更新"
FontFamily="Microsoft YaHei UI"
Toggled="ToggleSwitchIsAutoUpdate_Toggled" />
<ui:ToggleSwitch OnContent="" OffContent="" Visibility="Collapsed"
Name="ToggleSwitchIsAutoUpdateWithSilence" Header="静默更新"
FontFamily="Microsoft YaHei UI"
Toggled="ToggleSwitchIsAutoUpdateWithSilence_Toggled" />
<Border BorderBrush="Black" BorderThickness="1" CornerRadius="5" Padding="12"
Visibility="{Binding ElementName=ToggleSwitchIsAutoUpdateWithSilence, Path=Visibility}">
<ui:SimpleStackPanel Spacing="12">
<TextBlock
Text="# 关闭静默更新后,已完成安装包的下载后将会弹窗询问是否进行更新,开启静默更新后将会在安装包下载完成后每隔十分钟进行如下检测:①处于静默更新时间段内 ②未处于书写模式 ③未处于画板内。若以上检测通过即会关闭软件进行自动更新。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel x:Name="AutoUpdateTimePeriodBlock" Spacing="12">
<ui:SimpleStackPanel Spacing="12">
<TextBlock Text="静默更新时间段" FontSize="15" FontWeight="Bold"
TextWrapping="Wrap" Foreground="Black" />
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="12">
<ui:SimpleStackPanel Orientation="Horizontal">
<TextBlock Margin="0,0,10,0" VerticalAlignment="Center"
Text="起始时间" FontSize="14" TextWrapping="Wrap"
Foreground="Black" />
<ComboBox x:Name="AutoUpdateWithSilenceStartTimeComboBox"
Width="90"
SelectionChanged="AutoUpdateWithSilenceStartTimeComboBox_SelectionChanged" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal">
<TextBlock Margin="0,0,10,0" VerticalAlignment="Center"
Text="终止时间" FontSize="14" TextWrapping="Wrap"
Foreground="Black" />
<ComboBox x:Name="AutoUpdateWithSilenceEndTimeComboBox"
Width="90"
SelectionChanged="AutoUpdateWithSilenceEndTimeComboBox_SelectionChanged" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<TextBlock Width="340" HorizontalAlignment="Left"
Text="# 若终止时间小于起始时间,即将终止时间视为第二天的时间。# 若起始时间与终止时间相同,即视为全天候时间。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="开机时运行" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchRunAtStartup"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchRunAtStartup_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="开机运行后收纳到侧边栏" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchFoldAtStartup"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchFoldAtStartup_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="icc目前以非管理员身份运行" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" Name="AdministratorPrivilegeIndicateText" />
<Button Name="RunAsAdminButton" Click="RunAsAdminButton_Click">
<StackPanel Orientation="Horizontal">
<Image Width="18" Height="18" Source="Resources/Icons-png/uac_icon.png" RenderOptions.BitmapScalingMode="HighQuality" />
<TextBlock VerticalAlignment="Center" Margin="4,0,0,0" FontSize="12" Text="以管理员身份重启"></TextBlock>
</StackPanel>
</Button>
<Button Height="30" Name="RunAsUserButton" Click="RunAsUserButton_Click">
<StackPanel Orientation="Horizontal">
<TextBlock VerticalAlignment="Center" Margin="4,0,0,0" FontSize="12" Text="以普通用户身份重启"></TextBlock>
</StackPanel>
</Button>
</ui:SimpleStackPanel>
<ui:InfoBar
IsOpen="True"
Name="CannotSwitchToUserPrivNotification"
IsClosable="False"
Severity="Warning"
Title="可能无法切换到普通用户权限"
Message="检测到您禁用了组策略项目:“用户帐户控制:以管理员批准模式运行所有管理员”,这可能会导致无法切换到普通用户权限" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="以WindowChrome模式渲染" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#7f1d1d"
Padding="4,0" Margin="0,0,12,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fca5a5"
Geometry="F1 M24,24z M0,0z M20.1758,20.0951L15.1058,9.97512C15.0358,9.83512,14.9958,9.68512,14.9958,9.52512L14.9958,2.99512 15.4958,2.99512C16.0458,2.99512 16.4958,2.54512 16.4958,1.99512 16.4958,1.44512 16.0458,0.995117 15.4958,0.995117L8.49582,0.995117C7.94582,0.995117 7.49582,1.44512 7.49582,1.99512 7.49582,2.54512 7.94582,2.99512 8.49582,2.99512L8.99582,2.99512 8.99582,9.52512C8.99582,9.67512,8.95582,9.83512,8.89582,9.97512L3.82582,20.0951C3.67582,20.4051 3.59582,20.7451 3.61582,21.0851 3.62582,21.4251 3.73582,21.7651 3.91582,22.0551 4.09582,22.3451 4.34582,22.5851 4.64582,22.7551 4.94582,22.9151 5.27582,23.0051 5.60582,23.0051L18.3758,23.0051C18.7558,23.0051 19.0558,22.9251 19.3558,22.7551 19.6558,22.5851 19.9058,22.3451 20.0858,22.0551 20.2658,21.7651 20.3658,21.4351 20.3858,21.0851 20.3958,20.7451 20.3258,20.4051 20.1758,20.1051L20.1758,20.0951z M10.6858,10.8651C10.8958,10.4451,11.0058,9.98512,11.0058,9.52512L11.0058,2.99512 13.0058,2.99512 13.0058,9.52512C13.0058,9.98512,13.1158,10.4551,13.3258,10.8651L15.3858,14.9951 8.62582,14.9951 10.6958,10.8651 10.6858,10.8651z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fca5a5" Text="实验性选项" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableWindowChromeRendering"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableWindowChromeRendering_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 使用更高性能的WindowChrome绘制透明窗口而不是低性能的AllowTransparency。AllowTransparency可以在窗口透明的区域穿透鼠标事件而WindowChrome则提供了更高的渲染性能但代价是旧版的PPT控件和浮动工具栏将无法正常使用。因此开启该选项后会强制开启浮动工具栏V2和PPT控件Popup化。" TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:InfoBar
IsOpen="True"
IsClosable="False"
Severity="Warning"
Title="该功能为高度实验性选项"
Message="由于该功能依靠DWM的绘制合成因此如果在Win7的Basic主题下运行会导致透明背景变为黑色" />
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsCanvasGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Canvas And Inking" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="画板和墨迹" FontWeight="Bold"
Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示画笔光标" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchShowCursor"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchShowCursor_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="橡皮大小" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxEraserSize" FontFamily="Microsoft YaHei UI"
SelectedIndex="2"
SelectionChanged="ComboBoxEraserSize_SelectionChanged">
<ComboBoxItem Content="很小" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较小" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="中等" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="较大" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="很大" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<TextBlock Text="# 非实时切换,下一次使用面积擦时生效。" TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="白板背景" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板模式默认背景色" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ComboBox Name="ComboBoxBlackboardBackgroundColor" FontFamily="Microsoft YaHei UI"
SelectedIndex="2"
SelectionChanged="ComboBoxBlackboardBackgroundColor_SelectionChanged">
<ComboBoxItem HorizontalContentAlignment="Left">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" BorderBrush="#a1a1aa" BorderThickness="1" CornerRadius="3" Margin="0,0,6,0" Width="16" Height="16" Background="#27272a" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">灰黑</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem HorizontalContentAlignment="Left">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" BorderBrush="#16a34a" BorderThickness="1" CornerRadius="3" Margin="0,0,6,0" Width="16" Height="16" Background="#172a25" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">黑板绿</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" CornerRadius="3" BorderBrush="White" BorderThickness="1" Margin="0,0,6,0" Width="16" Height="16" Background="#eaebed" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">白色</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem HorizontalContentAlignment="Left">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" CornerRadius="3" BorderBrush="#a1a1aa" BorderThickness="1" Margin="0,0,6,0" Width="16" Height="16" Background="#0f172a" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">蓝黑</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem HorizontalContentAlignment="Left">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" CornerRadius="3" BorderBrush="#4ade80" BorderThickness="1" Margin="0,0,6,0" Width="16" Height="16" Background="#B5E6B5" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">护眼绿</TextBlock>
</StackPanel>
</ComboBoxItem>
<ComboBoxItem>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="78">
<Border VerticalAlignment="Center" BorderBrush="#a1a1aa" BorderThickness="1" CornerRadius="3" Margin="0,0,6,0" Width="16" Height="16" Background="Black" />
<TextBlock VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">纯黑</TextBlock>
</StackPanel>
</ComboBoxItem>
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板模式默认背景稿纸格式" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ComboBox Name="ComboBoxBlackboardBackgroundPattern" FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxBlackboardBackgroundPattern_SelectionChanged">
<ComboBoxItem Content="无" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="点" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="网格" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板创建新页时始终使用默认背景色" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchUseDefaultBackgroundColorForEveryNewAddedBlackboardPage"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchUseDefaultBackgroundColorForEveryNewAddedBlackboardPage_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板创建新页时始终使用默认背景稿纸格式" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchUseDefaultBackgroundPatternForEveryNewAddedBlackboardPage"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchUseDefaultBackgroundPatternForEveryNewAddedBlackboardPage_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启后,每次在白板模式下新建页面都会使用默认背景色和背景稿纸格式。如果关闭,新增页面时则会根据当前页面的背景色和稿纸格式来决定新增页面的背景属性。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板模式更换背景色也同时更换墨迹颜色" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchIsEnableAutoConvertInkColorWhenBackgroundChanged"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchIsEnableAutoConvertInkColorWhenBackgroundChanged_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启后,每次在白板模式下如果更换为暗色背景,则会将所有暗色墨迹转换为亮色墨迹,同理,如果更换为亮色背景,则会将所有亮色墨迹转换为暗色墨迹(自定义颜色不支持转换)"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="退出画板模式后隐藏墨迹" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchHideStrokeWhenSelecting" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchHideStrokeWhenSelecting_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启 退出画板模式后隐藏墨迹 选项后,进入 PPT 模式时未处于批注模式时不会显示墨迹。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="清空墨迹时删除墨迹历史记录" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchClearCanvasAndClearTimeMachine" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchClearCanvasAndClearTimeMachine_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="保留双曲线渐近线" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxHyperbolaAsymptoteOption"
FontFamily="Microsoft YaHei UI" SelectedIndex="0"
SelectionChanged="ComboBoxHyperbolaAsymptoteOption_SelectionChanged">
<ComboBoxItem Content="是" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="否" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="每次询问" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<TextBlock Text="# Ink Canvas祖传Bug。请注意若不保留双曲线渐近线可能会有遇到撤回相关的 BUG 影响使用。" TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="让墨迹使用贝塞尔曲线平滑处理"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchFitToCurve"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchFitToCurve_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="选择" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<TextBlock Text="# 使用左键点击墨迹可以直接选中墨迹;使用右键可以始终触发矩形或套索框选模式,而不会选中被鼠标按下的墨迹。" TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="墨迹选择模式" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ComboBox Name="ComboBoxSelectionMethod" FontFamily="Microsoft YaHei UI"
SelectedIndex="0" SelectionChanged="ComboBoxSelectionMethod_SelectionChanged">
<ComboBoxItem Content="套索圈选" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="矩形框选" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="将墨迹缩放应用于触笔笔尖"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchApplyScaleToStylusTip"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold" Toggled="ToggleSwitchApplyScaleToStylusTip_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="仅命中全部包含的墨迹"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchOnlyHitTestFullyContainedStrokes"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold" Toggled="ToggleSwitchOnlyHitTestFullyContainedStrokes_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="允许点选命中被锁定的墨迹"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchAllowClickToSelectLockedStroke"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold" Toggled="ToggleSwitchAllowClickToSelectLockedStroke_OnToggled" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsGestureGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Gesture" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="手势" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="进退白板模式自动开关双指移动功能"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoSwitchTwoFingerGesture" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoSwitchTwoFingerGesture_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启后退出画板模式时自动关闭双指移动手势,进入白板模式时自动开启双指移动手势" TextWrapping="Wrap"
Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="允许双指旋转与缩放选中的墨迹"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableTwoFingerRotationOnSelection"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableTwoFingerRotation_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 允许选中墨迹后对墨迹进行双指或多指缩放操作(此设置不受“允许双指旋转”设置的影响)" TextWrapping="Wrap"
Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="禁用手势橡皮" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchDisableGestureEraser"
Toggled="ToggleSwitchDisableGestureEraser_Toggled" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 禁用Ink Canvas祖传的手势橡皮禁用后高级选项中的“特殊屏幕模式”、“BoundsWidth”、“橡皮擦绑定触摸大小倍数”、“四边红外模式”等选项将被禁用同时也不能使用手指和手掌擦除墨迹。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="多指书写功能" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxDefaultMultiPointHandWriting"
FontFamily="Microsoft YaHei UI"
SelectedIndex="2"
SelectionChanged="ComboBoxDefaultMultiPointHandWriting_SelectionChanged">
<ComboBoxItem Content="每次启动都开启" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="每次启动都关闭" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="保持上次选择" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="触摸书写时隐藏鼠标指针" VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchHideCursorWhenUsingTouchDevice"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchHideCursorWhenUsingTouchDevice_Toggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 会在使用触摸屏时隐藏鼠标指针这样就可以去掉触摸指针。若出现问题请尝试快捷键“Alt + C”来强制显示鼠标指针并关闭该功能。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="鼠标手势" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="鼠标手势总开关"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableMouseGesture"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableMouseGesture_Toggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 鼠标手势可以帮助您在使用鼠标进行批注书写时更加方便"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Margin="0,0,6,0" Width="26"
Height="26" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M18.75,7C18.75,5.74022 18.2496,4.53204 17.3588,3.64124 16.468,2.75044 15.2598,2.25 14,2.25L10,2.25C8.74022,2.25 7.53204,2.75044 6.64124,3.64124 5.75044,4.53204 5.25,5.74022 5.25,7L5.25,17C5.25,18.2598 5.75044,19.468 6.64124,20.3588 7.53204,21.2496 8.74022,21.75 10,21.75L14,21.75C15.2598,21.75 16.468,21.2496 17.3588,20.3588 18.2496,19.468 18.75,18.2598 18.75,17L18.75,7z M10,3.75C9.13805,3.75 8.3114,4.09241 7.7019,4.7019 7.09241,5.3114 6.75,6.13805 6.75,7L6.75,9.25 11.25,9.25 11.25,3.75 10,3.75z M6.75,10.75L6.75,17C6.75,17.862 7.09241,18.6886 7.7019,19.2981 8.3114,19.9076 9.13805,20.25 10,20.25L14,20.25C14.862,20.25 15.6886,19.9076 16.2981,19.2981 16.9076,18.6886 17.25,17.862 17.25,17L17.25,10.75 6.75,10.75z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="按住鼠标右键移动画布"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableMouseRightBtnGesture" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableMouseRightBtnGesture_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Margin="0,0,6,0" Width="26"
Height="26" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M7.7019,4.7019C8.3114,4.09241,9.13805,3.75,10,3.75L14,3.75C14.862,3.75 15.6886,4.09241 16.2981,4.7019 16.9076,5.3114 17.25,6.13805 17.25,7L17.25,17C17.25,17.862 16.9076,18.6886 16.2981,19.2981 15.6886,19.9076 14.862,20.25 14,20.25L10,20.25C9.13805,20.25 8.3114,19.9076 7.7019,19.2981 7.09241,18.6886 6.75,17.862 6.75,17L6.75,7C6.75,6.13805,7.09241,5.3114,7.7019,4.7019z M10,2.25C8.74022,2.25 7.53204,2.75044 6.64124,3.64124 5.75044,4.53204 5.25,5.74022 5.25,7L5.25,17C5.25,18.2598 5.75044,19.468 6.64124,20.3588 7.53204,21.2496 8.74022,21.75 10,21.75L14,21.75C15.2598,21.75 16.468,21.2496 17.3588,20.3588 18.2496,19.468 18.75,18.2598 18.75,17L18.75,7C18.75,5.74022 18.2496,4.53204 17.3588,3.64124 16.468,2.75044 15.2598,2.25 14,2.25L10,2.25z M12.75,7C12.75,6.58579 12.4142,6.25 12,6.25 11.5858,6.25 11.25,6.58579 11.25,7L11.25,11C11.25,11.4142 11.5858,11.75 12,11.75 12.4142,11.75 12.75,11.4142 12.75,11L12.75,7z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="滑动鼠标滚轮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<ComboBox Name="ComboBoxMouseWheelAction"
FontFamily="Microsoft YaHei UI"
SelectedIndex="0" Margin="0,0,16,0"
SelectionChanged="ComboBoxDefaultMultiPointHandWriting_SelectionChanged">
<ComboBoxItem Content="缩放画布" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="调整笔粗细" FontFamily="Microsoft YaHei UI" />
</ComboBox>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableMouseWheelGesture" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableMouseWheelGesture_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="鼠标滚轮正方向" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxMousewheelForwardDirection"
FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxDefaultMultiPointHandWriting_SelectionChanged">
<ComboBoxItem Content="滚轮向上" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="滚轮向下" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="Windows Ink 支持" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<TextBlock
Text="# 可以修改Windows Ink 触笔设备的快捷键操作,下图触笔设备仅供参考,请以你实际使用的设备和具体的驱动配置为准。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<Grid>
<Image Source="Resources/Icons-png/windows-ink.png" RenderOptions.BitmapScalingMode="HighQuality" />
<Canvas>
<Border Canvas.Top="7" Canvas.Left="95" CornerRadius="6.25" Background="#5522c55e" Height="12.5" Width="25.75"></Border>
<Border Canvas.Top="7" Canvas.Left="124.5" CornerRadius="6.25" Background="#553b82f6" Height="12.5" Width="25.75"></Border>
</Canvas>
</Grid>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="绿色按钮按下时,触发"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxWindowsInkEraserButtonAction"
FontFamily="Microsoft YaHei UI"
SelectedIndex="2"
SelectionChanged="ComboBoxWindowsInkEraserButtonAction_SelectionChanged">
<ComboBoxItem Content="什么都不干" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="墨迹擦" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="面积擦" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<TextBlock
Text="# 绿色按钮为触笔设备的橡皮擦按钮。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:InfoBar
IsOpen="True"
IsClosable="False"
Severity="Warning"
Title="有关橡皮按钮触发的提示"
Message="如果您正在使用 OpenTabletDriver 等自定义数位板驱动软件,或通过其他方式修改了橡皮按钮的触发方式,从“按住触发”修改为“切换触发”模式后,可能会导致出现未知问题!" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="蓝色按钮按下时,"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxWindowsInkBarrelButtonAction"
FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxWindowsInkBarrelButtonAction_SelectionChanged">
<ComboBoxItem Content="什么都不干" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="矩形框选模式" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="全选墨迹" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="撤销操作" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="打开快捷面板" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<TextBlock
Text="# 蓝色按钮为触笔设备的功能按钮,在 icc 中会被当做 BarrelButton 处理,如果触发有问题,可以不使用该功能。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsShapeDrawingGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Shape Drawing" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="形状绘制" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="启用绘制时工具栏" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableShapeDrawingToolbar"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShape_Toggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 启用绘制工具栏后,可以在绘制形状时显示一个工具栏,可以快捷进行变体的切换,形状绘制属性,关闭该选项后将无法修改形状变体!"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="工具栏默认展开形状变体栏" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchDefaultDisplayShapeVariants"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShape_Toggled" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsInkRecognitionGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Ink Recognition" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="墨迹纠正" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="启用墨迹识别" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableInkToShape"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShape_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Spacing="6"
Visibility="{Binding ElementName=ToggleSwitchEnableInkToShape, Path=IsOn, Converter={StaticResource BooleanToVisibilityConverter}}">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="阻止矫正后的矩形带有模拟压感值"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableInkToShapeNoFakePressureRectangle"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShapeNoFakePressureRectangle_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="阻止矫正后的三角形带有模拟压感值"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableInkToShapeNoFakePressureTriangle"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShapeNoFakePressureTriangle_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="将识别的墨迹当作形状处理" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableInkAsShape"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableInkToShape_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="ToggleCheckboxEnableInkToShapeTriangle"
Checked="ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged"
Unchecked="ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="矫正手绘三角形"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,16,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="ToggleCheckboxEnableInkToShapeRectangle"
Checked="ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged"
Unchecked="ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="矫正手绘矩形"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,16,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="ToggleCheckboxEnableInkToShapeRounded"
Checked="ToggleCheckboxEnableInkToShapeRounded_CheckedChanged"
Unchecked="ToggleCheckboxEnableInkToShapeRounded_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="矫正手绘圆形与椭圆"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,16,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsAppearanceGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Appearance" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="个性化" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<WrapPanel Orientation="Horizontal">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarShapes"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M13.0573,17.3383C13.0573,15.0674 14.8982,13.2265 17.169,13.2265 19.4399,13.2265 21.2808,15.0674 21.2808,17.3383 21.2808,19.6091 19.4399,21.45 17.169,21.45 14.8982,21.45 13.0573,19.6091 13.0573,17.3383z M4.48141,13.2265C3.50819,13.2265,2.71924,14.0155,2.71924,14.9887L2.71924,19.6878C2.71924,20.6611,3.50819,21.45,4.48141,21.45L9.18053,21.45C10.1537,21.45,10.9427,20.6611,10.9427,19.6878L10.9427,14.9887C10.9427,14.0155,10.1537,13.2265,9.18053,13.2265L4.48141,13.2265z M12.6923,2.71599C12.4659,2.59866 12.213,2.54181 11.9581,2.55096 11.7033,2.5601 11.4551,2.63494 11.2377,2.7682 11.028,2.89676 10.8537,3.07549 10.7305,3.28809L7.24046,8.83413C7.09431,9.06224 7.01353,9.32612 7.007,9.59703 7.00043,9.86995 7.06945,10.1394 7.20645,10.3755 7.34345,10.6117 7.54308,10.8053 7.78328,10.9351 8.01558,11.0605 8.27707,11.1215 8.5406,11.1119L15.5037,11.1119 15.5065,11.1119C15.7766,11.111 16.0412,11.0362 16.2717,10.8957 16.5023,10.7551 16.6901,10.5542 16.8146,10.3146 16.9392,10.0751 16.9959,9.80598 16.9785,9.53651 16.9617,9.27545 16.876,9.02367 16.7303,8.80672L13.26,3.23562 13.2505,3.22067C13.111,3.00717,12.9187,2.83333,12.6923,2.71599z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“形状”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarFreeze"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M12.875,3.42617C12.875,2.94292 12.4833,2.55117 12,2.55117 11.5168,2.55117 11.125,2.94292 11.125,3.42617L11.125,4.58253 10.6766,4.35831C10.2444,4.1422 9.71878,4.31739 9.50266,4.74962 9.28655,5.18185 9.46174,5.70744 9.89398,5.92356L11.125,6.53909 11.125,8.48547 9.39973,9.48835 7.70825,8.51174 7.79073,7.13797C7.81969,6.65559 7.45212,6.24107 6.96974,6.21211 6.48736,6.18315 6.07283,6.55072 6.04387,7.0331L6.01383,7.53344 5.01252,6.95531C4.59401,6.71368 4.05887,6.85707 3.81724,7.27557 3.57561,7.69407 3.71899,8.22922 4.1375,8.47085L5.13889,9.04902 4.72043,9.3253C4.31715,9.59156 4.20607,10.1343 4.47233,10.5376 4.73859,10.9409 5.28136,11.052 5.68464,10.7857L6.83331,10.0273 8.51897,11.0006 8.52474,12.9961 6.83321,13.9727 5.68464,13.2144C5.28136,12.9481 4.73859,13.0592 4.47233,13.4625 4.20607,13.8658 4.31715,14.4085 4.72043,14.6748L5.13879,14.951 4.1375,15.5291C3.71899,15.7708 3.57561,16.3059 3.81724,16.7244 4.05887,17.1429 4.59401,17.2863 5.01252,17.0447L6.01383,16.4665 6.04387,16.967C6.07283,17.4494 6.48736,17.8169 6.96974,17.788 7.45212,17.759 7.81969,17.3445 7.79073,16.8621L7.70825,15.4882 9.39365,14.5151 11.125,15.5078 11.125,17.4609 9.89398,18.0764C9.46174,18.2925 9.28655,18.8181 9.50266,19.2503 9.71878,19.6826 10.2444,19.8578 10.6766,19.6417L11.125,19.4174 11.125,20.5738C11.125,21.0571 11.5168,21.4488 12,21.4488 12.4833,21.4488 12.875,21.0571 12.875,20.5738L12.875,19.4174 13.3235,19.6417C13.7557,19.8578 14.2813,19.6826 14.4974,19.2503 14.7136,18.8181 14.5384,18.2925 14.1061,18.0764L12.875,17.4609 12.875,15.5145 14.6003,14.5116 16.2918,15.4883 16.2094,16.8621C16.1804,17.3445 16.548,17.759 17.0304,17.788 17.5127,17.8169 17.9273,17.4494 17.9562,16.967L17.9863,16.4666 18.9875,17.0447C19.406,17.2863 19.9411,17.1429 20.1828,16.7244 20.4244,16.3059 20.281,15.7708 19.8625,15.5291L18.8612,14.951 19.2797,14.6748C19.6829,14.4085 19.794,13.8658 19.5278,13.4625 19.2615,13.0592 18.7187,12.9481 18.3154,13.2144L17.1668,13.9727 15.4808,12.9993 15.475,11.0039 17.1666,10.0272 18.3154,10.7857C18.7187,11.052 19.2615,10.9409 19.5278,10.5376 19.794,10.1343 19.6829,9.59156 19.2797,9.3253L18.8611,9.04892 19.8623,8.47085C20.2808,8.22922 20.4242,7.69407 20.1825,7.27557 19.9409,6.85707 19.4058,6.71368 18.9873,6.95531L17.9862,7.53326 17.9562,7.0331C17.9273,6.55072 17.5127,6.18315 17.0304,6.21211 16.548,6.24107 16.1804,6.65559 16.2094,7.13797L16.2918,8.51156 14.6062,9.48476 12.875,8.49221 12.875,6.5391 14.1061,5.92356C14.5384,5.70744 14.7136,5.18185 14.4974,4.74962 14.2813,4.31739 13.7557,4.1422 13.3235,4.35831L12.875,4.58254 12.875,3.42617z M10.269,11.0072L10.2748,13.0031 12.0058,13.9955 13.7308,12.9929 13.725,10.9967 11.9942,10.0044 10.269,11.0072z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“冻结”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarHand"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M8.26625,10.5636L8.26625,4.76409C8.26625,4.19587 8.49174,3.65469 8.89762,3.24882 9.70937,2.43706 11.1164,2.43706 11.9282,3.24882 12.3341,3.65469 12.5595,4.18685 12.5595,4.76409L12.5595,7.22542C13.2811,7.04372 14.0969,7.22143 14.634,7.75858 14.7741,7.89866 14.8927,8.05378 14.9879,8.22061 15.7667,7.91427 16.7334,8.06091 17.3399,8.66052 17.4846,8.80521 17.6063,8.96596 17.7031,9.13907 18.4771,8.84678 19.4284,8.99693 20.0277,9.58954 20.4336,9.99541 20.6591,10.5276 20.6591,11.1048L20.6591,15.1636C20.6591,16.8232 20.0097,18.3745 18.8461,19.5471 17.6736,20.7196 16.1222,21.36 14.4627,21.36L14.4717,21.342 12.6678,21.342 12.5595,21.342C11.6395,21.2969 10.7286,21.0443 9.9078,20.6114 9.00585,20.1243 8.23017,19.4208 7.67096,18.564L7.49057,18.2934C7.20195,17.8424 6.21882,16.1377 4.49609,13.0801 4.22551,12.593 4.15335,12.0248 4.28864,11.4836 4.43296,10.9425 4.7757,10.4825 5.25373,10.1938 5.72275,9.91424 6.28196,9.79698 6.82313,9.86012 7.37332,9.93228 7.87841,10.1758 8.26625,10.5636z M16.3838,11.2756L16.3838,11.5287C16.3838,11.9707 16.7446,12.3224 17.1775,12.3224 17.6195,12.3224 17.9712,11.9617 17.9712,11.5287L17.9712,10.9579C17.9953,10.8643 18.0434,10.7801 18.1156,10.708 18.323,10.5005 18.7018,10.5005 18.9093,10.708 19.0085,10.8162 19.0716,10.9515 19.0716,11.1048L19.0716,15.1636C19.0716,16.3993 18.5936,17.5538 17.7187,18.4287 16.8528,19.3036 15.6893,19.7816 14.4536,19.7816L12.8391,19.7816C12.0725,19.7816 11.3148,19.5922 10.6474,19.2314 9.97094,18.8706 9.39369,18.3385 8.97879,17.7071L8.7984,17.4365C8.52782,17.0216 7.53567,15.2989 5.85804,12.3134 5.78588,12.1781 5.76784,12.0338 5.80392,11.8895 5.84,11.7452 5.9302,11.6189 6.05647,11.5468 6.22784,11.4476 6.42627,11.4115 6.6247,11.4295 6.82313,11.4476 7.00352,11.5468 7.14783,11.6821L8.4737,13.0079C8.72783,13.2621 9.11822,13.3056 9.41903,13.1385 9.67804,13.0065 9.85369,12.7366 9.85369,12.4307L9.85369,4.76409C9.85369,4.61076 9.9078,4.47547 10.016,4.36724 10.2235,4.15077 10.5933,4.15077 10.8098,4.36724 10.918,4.47547 10.9721,4.61076 10.9721,4.76409L10.9721,9.26642 10.9721,9.27386 10.9721,11.0778 10.9721,11.0824 10.9721,11.5287C10.9721,11.9707 11.3239,12.3224 11.7658,12.3224 12.2078,12.3224 12.5595,11.9617 12.5595,11.5287L12.5595,9.26969C12.5605,9.11807 12.6146,8.98425 12.7219,8.877 12.9293,8.66955 13.3081,8.66955 13.5156,8.877 13.6148,8.98523 13.6779,9.12052 13.6779,9.27386L13.6779,11.5287C13.6779,11.9707 14.0387,12.3225 14.4717,12.3225 14.9136,12.3225 15.2654,11.9617 15.2654,11.5287L15.2654,10.1775 15.2654,10.1758C15.2654,10.0225 15.3195,9.88717 15.4277,9.77894 15.6352,9.57149 16.014,9.57149 16.2215,9.77894 16.3207,9.88717 16.3838,10.0225 16.3838,10.1758L16.3838,10.8276C16.3719,10.919 16.3658,11.0115 16.3658,11.1048 16.3658,11.1636 16.372,11.2207 16.3838,11.2756z M4.13531,6.54094C3.89178,6.54094 3.64826,6.43271 3.49493,6.21624 3.23336,5.86448 3.31454,5.36841 3.6663,5.11586 4.4059,4.57469 5.19961,4.11469 6.02941,3.74489 6.42627,3.5645 6.89528,3.74489 7.07567,4.14175 7.25606,4.53861 7.07567,5.00763 6.67881,5.18802 5.94823,5.51272 5.25373,5.9186 4.60433,6.38761 4.46001,6.48683 4.29766,6.54094 4.13531,6.54094z M17.3669,5.94565C17.5022,6.02683,17.6465,6.0629,17.7909,6.0629L17.7818,6.07192C18.0434,6.07192 18.296,5.93663 18.4493,5.70212 18.6838,5.33232 18.5756,4.84527 18.2058,4.61076 17.1144,3.91626 15.9238,3.39313 14.6701,3.05941 14.2552,2.95117 13.8133,3.1947 13.705,3.61862 13.5968,4.04253 13.8403,4.47547 14.2642,4.5837 15.3556,4.88135 16.4019,5.34134 17.3669,5.94565z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“漫游”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarUndo"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F1 M24,24z M0,0z M9.70711,6.70711C10.0976,6.31658 10.0976,5.68342 9.70711,5.29289 9.31658,4.90237 8.68342,4.90237 8.29289,5.29289L4.29289,9.29289C3.90237,9.68342,3.90237,10.3166,4.29289,10.7071L8.29289,14.7071C8.68342,15.0976 9.31658,15.0976 9.70711,14.7071 10.0976,14.3166 10.0976,13.6834 9.70711,13.2929L7.40633,10.9921 16,11C16.7956,11 17.5587,11.3161 18.1213,11.8787 18.6839,12.4413 19,13.2044 19,14 19,14.7956 18.6839,15.5587 18.1213,16.1213 17.5587,16.6839 16.7956,17 16,17L15,17C14.4477,17 14,17.4477 14,18 14,18.5523 14.4477,19 15,19L16,19C17.3261,19 18.5979,18.4732 19.5355,17.5355 20.4732,16.5979 21,15.3261 21,14 21,12.6739 20.4732,11.4021 19.5355,10.4645 18.5979,9.52678 17.3261,9 16,9L7.40633,9.00789 9.70711,6.70711z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“撤销”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarRedo"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F1 M24,24z M0,0z M15.2929,6.70711C14.9024,6.31658 14.9024,5.68342 15.2929,5.29289 15.6834,4.90237 16.3166,4.90237 16.7071,5.29289L20.7071,9.29289C21.0976,9.68342,21.0976,10.3166,20.7071,10.7071L16.7071,14.7071C16.3166,15.0976 15.6834,15.0976 15.2929,14.7071 14.9024,14.3166 14.9024,13.6834 15.2929,13.2929L17.5937,10.9921 9,11C8.20435,11 7.44129,11.3161 6.87868,11.8787 6.31607,12.4413 6,13.2044 6,14 6,14.7956 6.31607,15.5587 6.87868,16.1213 7.44129,16.6839 8.20435,17 9,17L10,17C10.5523,17 11,17.4477 11,18 11,18.5523 10.5523,19 10,19L9,19C7.67392,19 6.40215,18.4732 5.46447,17.5355 4.52679,16.5979 4,15.3261 4,14 4,12.6739 4.52678,11.4021 5.46447,10.4645 6.40215,9.52678 7.67392,9 9,9L17.5937,9.00789 15.2929,6.70711z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“重做”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarCAM"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<StackPanel Orientation="Horizontal">
<Image RenderOptions.BitmapScalingMode="HighQuality" VerticalAlignment="Center" Height="17">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M11.5007,11.0214C11.5007,10.674,11.7823,10.3923,12.1298,10.3923L14.2967,10.3923 14.2967,9.90299C14.2967,9.41878 14.5325,8.98723 14.8305,8.68924 15.1285,8.39124 15.56,8.15547 16.0442,8.15547L18.281,8.15547C18.7652,8.15547 19.1968,8.39124 19.4948,8.68924 19.7928,8.98723 20.0286,9.41878 20.0286,9.90299L20.0286,10.3923 22.1955,10.3923C22.5429,10.3923 22.8246,10.674 22.8246,11.0214 22.8246,11.3688 22.5429,11.6505 22.1955,11.6505L21.7062,11.6505 21.7062,18.8503C21.7062,19.3345 21.4704,19.766 21.1724,20.064 20.8744,20.362 20.4429,20.5978 19.9587,20.5978L14.3666,20.5978C13.8824,20.5978 13.4508,20.362 13.1528,20.064 12.8549,19.766 12.6191,19.3345 12.6191,18.8503L12.6191,11.6505 12.1298,11.6505C11.7823,11.6505,11.5007,11.3688,11.5007,11.0214z M14.0425,19.1743C13.9211,19.0529,13.8773,18.9253,13.8773,18.8503L13.8773,11.6505 20.448,11.6505 20.448,18.8503C20.448,18.9253 20.4041,19.0529 20.2827,19.1743 20.1613,19.2958 20.0337,19.3396 19.9587,19.3396L14.3666,19.3396C14.2916,19.3396,14.1639,19.2958,14.0425,19.1743z M15.5549,9.90299C15.5549,9.82799 15.5987,9.70034 15.7202,9.57893 15.8416,9.45752 15.9692,9.41368 16.0442,9.41368L18.281,9.41368C18.356,9.41368 18.4837,9.45752 18.6051,9.57893 18.7265,9.70034 18.7703,9.82799 18.7703,9.90299L18.7703,10.3923 15.5549,10.3923 15.5549,9.90299z M18.9101,13.8174C18.9101,13.47 18.6285,13.1883 18.281,13.1883 17.9336,13.1883 17.6519,13.47 17.6519,13.8174L17.6519,17.1727C17.6519,17.5201 17.9336,17.8018 18.281,17.8018 18.6285,17.8018 18.9101,17.5201 18.9101,17.1727L18.9101,13.8174z M16.6733,13.8174C16.6733,13.47 16.3917,13.1883 16.0442,13.1883 15.6968,13.1883 15.4151,13.47 15.4151,13.8174L15.4151,17.1727C15.4151,17.5201 15.6968,17.8018 16.0442,17.8018 16.3917,17.8018 16.6733,17.5201 16.6733,17.1727L16.6733,13.8174z M1.32567,3.55246C1.47265,3.40549,1.69379,3.36174,1.88566,3.44167L11.8342,7.58639C12.0311,7.66845 12.1567,7.86389 12.1495,8.07716 12.1424,8.29043 12.0039,8.47698 11.8018,8.54561L8.25047,9.75183 11.4309,12.9323C11.6313,13.1326 11.6313,13.4574 11.4309,13.6577 11.2306,13.8581 10.9058,13.8581 10.7055,13.6577L7.52503,10.4773 6.31881,14.0286C6.25019,14.2307 6.06364,14.3692 5.85037,14.3763 5.6371,14.3835 5.44166,14.2579 5.3596,14.0609L1.21488,4.11245C1.13494,3.92058,1.1787,3.69944,1.32567,3.55246z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fafafa" Text="显示“清并鼠”按钮"
FontSize="14" VerticalAlignment="Center"
Margin="3,0,24,0" />
</StackPanel>
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarLasso"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="显示“框选”按钮"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,24,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarWhiteboard"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="显示“白板”按钮"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,24,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarFold"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="显示“隐藏”按钮"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,24,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<CheckBox IsChecked="True" Name="CheckboxEnableFloatingBarGesture"
Checked="CheckboxFloatingBarIconsVisibility_CheckedChanged"
Unchecked="CheckboxFloatingBarIconsVisibility_CheckedChanged">
<CheckBox.Content>
<TextBlock Foreground="#fafafa" Text="显示“手势”按钮"
VerticalAlignment="Center" FontSize="14"
Margin="0,0,24,0" />
</CheckBox.Content>
</CheckBox>
</ui:SimpleStackPanel>
</WrapPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="橡皮按钮" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxEraserButton" FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxEraserButton_SelectionChanged">
<ComboBoxItem Content="两个都显示" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="只显示板擦" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="只显示线擦" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Spacing="6" Orientation="Vertical" Name="SettingsOnlyDisplayEraserBtnPanel">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="只显示为橡皮按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchOnlyDisplayEraserBtn"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchOnlyDisplayEraserBtn_OnToggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 当橡皮按钮只显示线擦或板擦时,开启该选项可以让该按钮直接显示为“橡皮”按钮,而不显示是板擦按钮还是线擦按钮。"
TextWrapping="Wrap"
Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="浮动工具栏显示按钮文字"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchFloatingBarButtonLabelVisibility_Toggled"
Name="ToggleSwitchFloatingBarButtonLabelVisibility" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="浮动工具栏图标" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxFloatingBarImg" FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxFloatingBarImg_SelectionChanged">
<ComboBoxItem Content="“icc!”默认蓝色" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="“icc!”黑色透明版" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="酷安斗鸡眼滑稽" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="酷安受虐滑稽" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="酷安呲牙笑" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="酷安头戴内裤滑稽" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="酷安绿帽Doge" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="贴吧滑稽" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="浮动工具栏缩放" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="ViewboxFloatingBarScaleTransformValueSlider" Minimum="0.5"
Maximum="1.25" Width="168" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="1" TickFrequency="0.05"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="ViewboxFloatingBarScaleTransformValueSlider_ValueChanged" />
<TextBlock
Text="{Binding ElementName=ViewboxFloatingBarScaleTransformValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
Margin="12,0,16,0" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="浮动工具栏透明度" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="ViewboxFloatingBarOpacityValueSlider" Minimum="0.3"
Maximum="1" Width="168" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="1" TickFrequency="0.05"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="ViewboxFloatingBarOpacityValueSlider_ValueChanged" />
<TextBlock
Text="{Binding ElementName=ViewboxFloatingBarOpacityValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
Margin="12,0,16,0" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="浮栏在PPT下透明度" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="ViewboxFloatingBarOpacityInPPTValueSlider" Minimum="0.3"
Maximum="1" Width="168" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="1" TickFrequency="0.05"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="ViewboxFloatingBarOpacityInPPTValueSlider_ValueChanged" />
<TextBlock
Text="{Binding ElementName=ViewboxFloatingBarOpacityInPPTValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
Margin="12,0,16,0" />
</ui:SimpleStackPanel>
<TextBlock Text="# 重新进入PPT放映后生效"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="在调色盘窗口中显示 笔尖模式 按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableDisPlayNibModeToggle" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableDisPlayNibModeToggle_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<!--<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Text="浮动工具栏背景色" VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0"/>
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchColorfulViewboxFloatingBar" IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold" Toggled="ToggleSwitchIsColorfulViewboxFloatingBar_Toggled" />
</ui:SimpleStackPanel>-->
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="白板 UI 80% 缩放" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableViewboxBlackBoardScaleTransform"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableViewboxBlackBoardScaleTransform_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="在白板中显示当前时间和日期" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableTimeDisplayInWhiteboardMode"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableTimeDisplayInWhiteboardMode_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="在白板中显示信仰の源(好喝的/毒的鸡汤)"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableChickenSoupInWhiteboardMode"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableChickenSoupInWhiteboardMode_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="信仰の源出自Where" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxChickenSoupSource" FontFamily="Microsoft YaHei UI"
SelectedIndex="1"
SelectionChanged="ComboBoxChickenSoupSource_SelectionChanged">
<ComboBoxItem Content="osu!玩家语录" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="励志立志的名言警句" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="高考祝福语" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="在收纳模式下启用快速面板" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableQuickPanel"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableQuickPanel_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="取消收纳按钮图标" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxUnFoldBtnImg" FontFamily="Microsoft YaHei UI"
SelectedIndex="0"
SelectionChanged="ComboBoxUnFoldBtnImg_SelectionChanged">
<ComboBoxItem Content="箭头" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="笔" FontFamily="Microsoft YaHei UI" />
</ComboBox>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<Border Background="#101010" Height="50" Margin="-20,0" Padding="20,0">
<Grid>
<ui:SimpleStackPanel Orientation="Horizontal" FlowDirection="RightToLeft">
<Image Height="24" Width="24" Margin="16,0,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V17 H19 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F1 M19,17z M0,0z M14.8268,0.0699463C15.3572,0.600333 15.8257,1.17492 16.2323,1.7937 16.6448,2.41249 16.9925,3.06368 17.2754,3.74729 17.5583,4.42501 17.7704,5.12925 17.9119,5.86 18.0592,6.58486 18.1329,7.32151 18.1329,8.06995 18.1329,8.81838 18.0592,9.55798 17.9119,10.2887 17.7704,11.0136 17.5583,11.7178 17.2754,12.4014 16.9925,13.0792 16.6448,13.7274 16.2323,14.3462 15.8257,14.965 15.3572,15.5396 14.8268,16.0699L14.0312,15.2744C14.5086,14.797 14.9299,14.2814 15.2953,13.7274 15.6666,13.1676 15.9789,12.5812 16.2323,11.9683 16.4857,11.3554 16.6773,10.7219 16.8069,10.0677 16.9424,9.4077 17.0102,8.74177 17.0102,8.06995 17.0102,7.39812 16.9424,6.73514 16.8069,6.081 16.6773,5.42096 16.4857,4.7845 16.2323,4.1716 15.9789,3.55871 15.6666,2.97529 15.2953,2.42133 14.9299,1.86147 14.5086,1.34287 14.0312,0.865526L14.8268,0.0699463z M12.4312,2.46553C12.8025,2.8368 13.1296,3.24048 13.4124,3.67658 13.7012,4.10678 13.9428,4.56055 14.1373,5.0379 14.3377,5.51525 14.4879,6.01028 14.5881,6.52299 14.6942,7.03569 14.7472,7.55135 14.7472,8.06995 14.7472,8.59444 14.6942,9.11304 14.5881,9.62575 14.4879,10.1326 14.3377,10.6246 14.1373,11.102 13.9428,11.5793 13.7012,12.0361 13.4124,12.4722 13.1296,12.9024 12.8025,13.3031 12.4312,13.6744L11.6268,12.8699C12.2633,12.2335 12.7524,11.4998 13.0942,10.6688 13.4419,9.8379 13.6157,8.9716 13.6157,8.06995 13.6157,7.16829 13.4419,6.30199 13.0942,5.47105 12.7524,4.64011 12.2633,3.90641 11.6268,3.26995L12.4312,2.46553z M10.0268,4.86995C10.4511,5.29426 10.7782,5.78339 11.008,6.33735 11.2378,6.89131 11.3528,7.46884 11.3528,8.06995 11.3528,8.67105 11.2378,9.24858 11.008,9.80254 10.7782,10.3565 10.4511,10.8456 10.0268,11.2699L9.23121,10.4744C9.54944,10.1561 9.79401,9.79076 9.96491,9.37823 10.1358,8.95982 10.2213,8.52372 10.2213,8.06995 10.2213,7.61617 10.1358,7.18302 9.96491,6.7705 9.79401,6.35208 9.54944,5.98376 9.23121,5.66553L10.0268,4.86995z M6.02237,1.281L6.82679,1.281 6.82679,14.8589 6.02237,14.8589 2.6279,11.4644 0.0378418,11.4644 0.0378418,4.67547 2.6279,4.67547 6.02237,1.281z M5.6953,3.21691L3.10525,5.80696 1.16933,5.80696 1.16933,10.3329 3.10525,10.3329 5.6953,12.923 5.6953,3.21691z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Image Height="24" Width="24" Margin="8,0,0,0">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V17 H22 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F1 M22,17z M0,0z M21.3712,12.8727L12.0378,12.8727 12.0378,15.5393 16.0378,15.5393 16.0378,16.8727 6.70451,16.8727 6.70451,15.5393 10.7045,15.5393 10.7045,12.8727 4.03784,12.8727 4.03784,16.8727 2.70451,16.8727 2.70451,8.87268 0.0378418,8.87268 0.0378418,0.872681 21.3712,0.872681 21.3712,12.8727z M1.37118,2.20601L1.37118,3.53935 5.37118,3.53935 5.37118,2.20601 1.37118,2.20601z M1.37118,7.53935L5.37118,7.53935 5.37118,4.87268 4.03784,4.87268 4.03784,6.20601 2.70451,6.20601 2.70451,4.87268 1.37118,4.87268 1.37118,7.53935z M4.03784,11.5393L20.0378,11.5393 20.0378,2.20601 6.70451,2.20601 6.70451,8.87268 4.03784,8.87268 4.03784,11.5393z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<Image Name="ICCTrayIconExampleImage" Height="24" Width="24"
Source="Resources/icc.ico" Margin="8,0,0,0" />
</ui:SimpleStackPanel>
<TextBlock Margin="12,0,0,0" VerticalAlignment="Center" Text="任务栏托盘图标"
FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
</Grid>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="启用托盘图标" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchEnableTrayIcon"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableTrayIcon_Toggled" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsPPTGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="PowerPoint Support" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="Powerpoint支持" FontWeight="Bold"
Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<TextBlock Text="此部分的设置项将会在幻灯片播放时使用,优先级高于其他设置项" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/Powerpoint.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="Microsoft PowerPoint 支持"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchSupportPowerPoint" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchSupportPowerPoint_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/WPS.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="WPS 支持" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchSupportWPS"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchSupportWPS_Toggled" />
</ui:SimpleStackPanel>
<ui:InfoBar
IsOpen="True"
IsClosable="False"
Severity="Warning"
Title="不建议使用WPS"
Message="由于WPS像素级抄袭Office并且抄的一坨狗屎开启后会导致退出WPS时卡顿请谨慎开启" />
<TextBlock
Text="# 可支持 WPS但目前无法同时支持 MSOffice 和 WPS。若要启用WPS支持请确保 WPS 是否在 “配置工具” 中开启了 “WPS Office 兼容第三方系统和软件” 选项否则将无法识别到WPS"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:InfoBar
IsOpen="True"
IsClosable="False"
Severity="Error"
Title="没有管理员权限"
Message="该区块选项需要管理员权限才能够操作,请确保 icc 运行在管理员模式下或以管理员身份重启icc。" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="PPT放映时不显示自带工具按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#854d0e" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fef9c3" Geometry="F1 M24,24z M0,0z M11.0128,12.0001L11.0128,21.7541C8.82443,21.0462 6.86303,19.7703 5.32881,18.0567 3.79459,16.3431 2.74247,14.2532 2.27982,12.0001L11.0138,12.0001 11.0128,12.0001z M20.2968,15.7941C18.6969,18.6172,16.0991,20.7399,13.0138,21.7451L13.0128,12.0001 21.7208,12.0001C21.448,13.3316,20.9675,14.6119,20.2968,15.7941z M11.0138,2.52612L11.0128,10.0001 2.02682,10.0001C1.95882,8.56812 2.12782,7.12012 2.54082,5.71812 2.60393,5.50338 2.73726,5.31601 2.91947,5.18602 3.10167,5.05603 3.32223,4.99092 3.54582,5.00112 6.13403,5.11958 8.68099,4.32065 10.7378,2.74512L11.0138,2.52612z M13.0128,10.0001L13.0128,2.54712 12.9228,2.47412C14.9401,4.14969,17.4897,5.04942,20.1118,5.01112L20.4538,5.00112C20.6774,4.99092 20.898,5.05603 21.0802,5.18602 21.2624,5.31601 21.3957,5.50338 21.4588,5.71812 21.8718,7.12112 22.0408,8.56812 21.9728,10.0001L13.0128,10.0001z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fef9c3" Text="管理员" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchRegistryShowSlideShowToolbar" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchRegistryShowSlideShowToolbar_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="PPT放映结束时是否显示黑色背景页面"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#854d0e" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fef9c3" Geometry="F1 M24,24z M0,0z M11.0128,12.0001L11.0128,21.7541C8.82443,21.0462 6.86303,19.7703 5.32881,18.0567 3.79459,16.3431 2.74247,14.2532 2.27982,12.0001L11.0138,12.0001 11.0128,12.0001z M20.2968,15.7941C18.6969,18.6172,16.0991,20.7399,13.0138,21.7451L13.0128,12.0001 21.7208,12.0001C21.448,13.3316,20.9675,14.6119,20.2968,15.7941z M11.0138,2.52612L11.0128,10.0001 2.02682,10.0001C1.95882,8.56812 2.12782,7.12012 2.54082,5.71812 2.60393,5.50338 2.73726,5.31601 2.91947,5.18602 3.10167,5.05603 3.32223,4.99092 3.54582,5.00112 6.13403,5.11958 8.68099,4.32065 10.7378,2.74512L11.0138,2.52612z M13.0128,10.0001L13.0128,2.54712 12.9228,2.47412C14.9401,4.14969,17.4897,5.04942,20.1118,5.01112L20.4538,5.00112C20.6774,4.99092 20.898,5.05603 21.0802,5.18602 21.2624,5.31601 21.3957,5.50338 21.4588,5.71812 21.8718,7.12112 22.0408,8.56812 21.9728,10.0001L13.0128,10.0001z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fef9c3" Text="管理员" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchRegistryShowBlackScreenLastSlideShow" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchRegistryShowBlackScreenLastSlideShow_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="PPT强制禁用两侧工具按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#854d0e" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fef9c3" Geometry="F1 M24,24z M0,0z M11.0128,12.0001L11.0128,21.7541C8.82443,21.0462 6.86303,19.7703 5.32881,18.0567 3.79459,16.3431 2.74247,14.2532 2.27982,12.0001L11.0138,12.0001 11.0128,12.0001z M20.2968,15.7941C18.6969,18.6172,16.0991,20.7399,13.0138,21.7451L13.0128,12.0001 21.7208,12.0001C21.448,13.3316,20.9675,14.6119,20.2968,15.7941z M11.0138,2.52612L11.0128,10.0001 2.02682,10.0001C1.95882,8.56812 2.12782,7.12012 2.54082,5.71812 2.60393,5.50338 2.73726,5.31601 2.91947,5.18602 3.10167,5.05603 3.32223,4.99092 3.54582,5.00112 6.13403,5.11958 8.68099,4.32065 10.7378,2.74512L11.0138,2.52612z M13.0128,10.0001L13.0128,2.54712 12.9228,2.47412C14.9401,4.14969,17.4897,5.04942,20.1118,5.01112L20.4538,5.00112C20.6774,4.99092 20.898,5.05603 21.0802,5.18602 21.2624,5.31601 21.3957,5.50338 21.4588,5.71812 21.8718,7.12112 22.0408,8.56812 21.9728,10.0001L13.0128,10.0001z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fef9c3" Text="管理员" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchRegistryDisableSlideShowSideToolButton" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchRegistryShowBlackScreenLastSlideShow_Toggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 以上功能会修改注册表需要管理员权限运行。操作前请先备份注册表。选项仅支持最新Office 365其他版本未经测试。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="PPT翻页按钮" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<Border ClipToBounds="True" Width="324" Height="182">
<Grid>
<Image Source="Resources/PresentationExample/page.jpg"></Image>
<Image Source="Resources/PresentationExample/toolbar.png" Height="16"
VerticalAlignment="Bottom" HorizontalAlignment="Center" />
<Image Name="PPTBtnPreviewLS"
Source="Resources/PresentationExample/sidebar-white.png" Width="10"
VerticalAlignment="Center" HorizontalAlignment="Left"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<TranslateTransform x:Name="PPTBtnPreviewLSTransform" />
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Name="PPTBtnPreviewRS"
Source="Resources/PresentationExample/sidebar-white.png" Width="10"
VerticalAlignment="Center" HorizontalAlignment="Right"
RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<TranslateTransform x:Name="PPTBtnPreviewRSTransform" />
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Name="PPTBtnPreviewLB"
Source="Resources/PresentationExample/bottombar-white.png"
Height="10"
VerticalAlignment="Bottom" HorizontalAlignment="Left" />
<Image Name="PPTBtnPreviewRB"
Source="Resources/PresentationExample/bottombar-white.png"
Height="12"
VerticalAlignment="Bottom" HorizontalAlignment="Right" />
</Grid>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="在 PPT 模式下显示翻页按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchShowPPTButton" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchShowPPTButton_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Spacing="6" Name="PPTButtonSettingsPanel"
Visibility="{Binding ElementName=ToggleSwitchShowPPTButton, Path=IsOn, Converter={StaticResource BooleanToVisibilityConverter}}">
<ui:SimpleStackPanel Margin="0,-4,0,4" Orientation="Horizontal"
HorizontalAlignment="Left" Spacing="16">
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxEnableLBPPTButton"
Checked="CheckboxEnableLBPPTButton_IsCheckChanged"
Unchecked="CheckboxEnableLBPPTButton_IsCheckChanged">
左下
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxEnableRBPPTButton"
Checked="CheckboxEnableRBPPTButton_IsCheckChanged"
Unchecked="CheckboxEnableRBPPTButton_IsCheckChanged">
右下
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxEnableLSPPTButton"
Checked="CheckboxEnableLSPPTButton_IsCheckChanged"
Unchecked="CheckboxEnableLSPPTButton_IsCheckChanged">
左侧
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxEnableRSPPTButton"
Checked="CheckboxEnableRSPPTButton_IsCheckChanged"
Unchecked="CheckboxEnableRSPPTButton_IsCheckChanged">
右侧
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="左侧偏移" VerticalAlignment="Center"
FontSize="14" Margin="0,0,12,0" />
<Slider x:Name="PPTButtonLeftPositionValueSlider" Minimum="-500"
Maximum="500" Width="138" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="0"
TickFrequency="1"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="PPTButtonLeftPositionValueSlider_ValueChanged" />
<Button Padding="5" Margin="8,0,0,0" Name="PPTBtnLSPlusBtn"
Click="PPTBtnLSPlusBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,16z M0,0z M9,1C9,0.447715 8.55229,0 8,0 7.44772,0 7,0.447715 7,1L7,7 1,7C0.447715,7 0,7.44772 0,8 0,8.55229 0.447715,9 1,9L7,9 7,15C7,15.5523 7.44772,16 8,16 8.55229,16 9,15.5523 9,15L9,9 15,9C15.5523,9 16,8.55229 16,8 16,7.44772 15.5523,7 15,7L9,7 9,1z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnLSMinusBtn"
Click="PPTBtnLSMinusBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V2 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,2z M0,0z M0,1C0,0.447715,0.447715,0,1,0L15,0C15.5523,0 16,0.447715 16,1 16,1.55228 15.5523,2 15,2L1,2C0.447715,2,0,1.55228,0,1z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnLSSyncBtn"
Click="PPTBtnLSSyncBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V6 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,6z M0,0z M1,0C0.447715,0 0,0.447715 0,1 0,1.55228 0.447715,2 1,2L15,2C15.5523,2 16,1.55228 16,1 16,0.447715 15.5523,0 15,0L1,0z M1,4C0.447715,4 0,4.44772 0,5 0,5.55228 0.447715,6 1,6L15,6C15.5523,6 16,5.55228 16,5 16,4.44772 15.5523,4 15,4L1,4z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnLSResetBtn"
Click="PPTBtnLSResetBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M24,24z M0,0z M12,2.01123C10.5428,2.01123 9.14528,2.5901 8.11488,3.6205 7.08449,4.65089 6.50562,6.04841 6.50562,7.50561L6.50562,16.4944C6.50562,17.9516 7.08449,19.3491 8.11488,20.3795 9.14528,21.4099 10.5428,21.9888 12,21.9888 13.4572,21.9888 14.8547,21.4099 15.8851,20.3795 16.9135,19.3511 17.4922,17.9569 17.4944,16.5027 17.4944,16.4999 17.4944,16.4972 17.4944,16.4944L17.4944,7.50563C17.4944,7.50285 17.4944,7.50007 17.4944,7.4973 17.4922,6.0431 16.9135,4.64893 15.8851,3.6205 14.8547,2.5901 13.4572,2.01123 12,2.01123z M9.5291,5.03471C10.1844,4.37939 11.0732,4.01123 12,4.01123 12.9268,4.01123 13.8156,4.37939 14.4709,5.03471 15.1262,5.69003 15.4944,6.57884 15.4944,7.50561L15.4944,16.4944C15.4944,17.4211 15.1262,18.31 14.4709,18.9653 13.8156,19.6206 12.9268,19.9888 12,19.9888 11.0732,19.9888 10.1844,19.6206 9.5291,18.9653 8.87377,18.31 8.50562,17.4211 8.50562,16.4944L8.50562,7.50561C8.50562,6.57884,8.87377,5.69003,9.5291,5.03471z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<TextBlock
Text="{Binding ElementName=PPTButtonLeftPositionValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="13"
Margin="8,0,8,0" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="右侧偏移" VerticalAlignment="Center"
FontSize="14" Margin="0,0,12,0" />
<Slider x:Name="PPTButtonRightPositionValueSlider" Minimum="-500"
Maximum="500" Width="138" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="0"
TickFrequency="1"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="PPTButtonRightPositionValueSlider_ValueChanged" />
<Button Padding="5" Margin="8,0,0,0" Name="PPTBtnRSPlusBtn"
Click="PPTBtnRSPlusBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,16z M0,0z M9,1C9,0.447715 8.55229,0 8,0 7.44772,0 7,0.447715 7,1L7,7 1,7C0.447715,7 0,7.44772 0,8 0,8.55229 0.447715,9 1,9L7,9 7,15C7,15.5523 7.44772,16 8,16 8.55229,16 9,15.5523 9,15L9,9 15,9C15.5523,9 16,8.55229 16,8 16,7.44772 15.5523,7 15,7L9,7 9,1z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnRSMinusBtn"
Click="PPTBtnRSMinusBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V2 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,2z M0,0z M0,1C0,0.447715,0.447715,0,1,0L15,0C15.5523,0 16,0.447715 16,1 16,1.55228 15.5523,2 15,2L1,2C0.447715,2,0,1.55228,0,1z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnRSSyncBtn"
Click="PPTBtnRSSyncBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V6 H16 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M16,6z M0,0z M1,0C0.447715,0 0,0.447715 0,1 0,1.55228 0.447715,2 1,2L15,2C15.5523,2 16,1.55228 16,1 16,0.447715 15.5523,0 15,0L1,0z M1,4C0.447715,4 0,4.44772 0,5 0,5.55228 0.447715,6 1,6L15,6C15.5523,6 16,5.55228 16,5 16,4.44772 15.5523,4 15,4L1,4z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<Button Margin="6,0,0,0" Padding="5" Name="PPTBtnRSResetBtn"
Click="PPTBtnRSResetBtn_Clicked">
<Image Width="16" Height="16">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#f4f4f5"
Geometry="F0 M24,24z M0,0z M12,2.01123C10.5428,2.01123 9.14528,2.5901 8.11488,3.6205 7.08449,4.65089 6.50562,6.04841 6.50562,7.50561L6.50562,16.4944C6.50562,17.9516 7.08449,19.3491 8.11488,20.3795 9.14528,21.4099 10.5428,21.9888 12,21.9888 13.4572,21.9888 14.8547,21.4099 15.8851,20.3795 16.9135,19.3511 17.4922,17.9569 17.4944,16.5027 17.4944,16.4999 17.4944,16.4972 17.4944,16.4944L17.4944,7.50563C17.4944,7.50285 17.4944,7.50007 17.4944,7.4973 17.4922,6.0431 16.9135,4.64893 15.8851,3.6205 14.8547,2.5901 13.4572,2.01123 12,2.01123z M9.5291,5.03471C10.1844,4.37939 11.0732,4.01123 12,4.01123 12.9268,4.01123 13.8156,4.37939 14.4709,5.03471 15.1262,5.69003 15.4944,6.57884 15.4944,7.50561L15.4944,16.4944C15.4944,17.4211 15.1262,18.31 14.4709,18.9653 13.8156,19.6206 12.9268,19.9888 12,19.9888 11.0732,19.9888 10.1844,19.6206 9.5291,18.9653 8.87377,18.31 8.50562,17.4211 8.50562,16.4944L8.50562,7.50561C8.50562,6.57884,8.87377,5.69003,9.5291,5.03471z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Button>
<TextBlock
Text="{Binding ElementName=PPTButtonRightPositionValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="13"
Margin="8,0,16,0" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 调大往上偏移调小往下偏移修改为0为不偏移居中放置"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Margin="0,0,24,0" Text="两侧" FontWeight="Bold"
VerticalAlignment="Center" Foreground="#fafafa"
FontSize="20" />
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxSPPTDisplayPage"
Checked="CheckboxSPPTDisplayPage_IsCheckChange"
Unchecked="CheckboxSPPTDisplayPage_IsCheckChange">
显示页码
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxSPPTHalfOpacity"
Checked="CheckboxSPPTHalfOpacity_IsCheckChange"
Unchecked="CheckboxSPPTHalfOpacity_IsCheckChange"
Margin="16,0,0,0">
半透明
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0"
Margin="16,0,0,0" Name="CheckboxSPPTBlackBackground"
Checked="CheckboxSPPTBlackBackground_IsCheckChange"
Unchecked="CheckboxSPPTBlackBackground_IsCheckChange">
黑色背景
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Margin="0,0,24,0" Text="左下右下" FontWeight="Bold"
VerticalAlignment="Center" Foreground="#fafafa"
FontSize="20" />
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxBPPTDisplayPage"
Checked="CheckboxBPPTDisplayPage_IsCheckChange"
Unchecked="CheckboxBPPTDisplayPage_IsCheckChange">
显示页码
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxBPPTHalfOpacity"
Checked="CheckboxBPPTHalfOpacity_IsCheckChange"
Unchecked="CheckboxBPPTHalfOpacity_IsCheckChange"
Margin="16,0,0,0">
半透明
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxBPPTBlackBackground"
Checked="CheckboxBPPTBlackBackground_IsCheckChange"
Unchecked="CheckboxBPPTBlackBackground_IsCheckChange"
Margin="16,0,0,0">
黑色背景
</CheckBox>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal"
HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="PPT 页码按钮可点击"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnablePPTButtonPageClickable"
IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnablePPTButtonPageClickable_OnToggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 开启该选项后点击页码按钮可以唤起PowerPoint自带的网格缩略图视图。WPS不支持该功能开启也没用。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Name="SettingsShowCanvasAtNewSlideShowStackPanel"
Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="进入 PPT 放映时自动进入批注模式"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
Name="ToggleSwitchShowCanvasAtNewSlideShow" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchShowCanvasAtNewSlideShow_Toggled" />
</ui:SimpleStackPanel>
<ui:InfoBar
IsOpen="True"
x:Name="SettingsPPTInkingAndAutoFoldExplictBorder"
IsClosable="False"
Severity="Error"
Title="设置项冲突"
Message="该项与“自动化”中的“播放PPT时自动收纳”选项冲突因此该项目已经被禁用" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="允许幻灯片模式下的双指手势" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchEnableTwoFingerGestureInPresentationMode"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchEnableTwoFingerGestureInPresentationMode_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="自动幻灯片截屏" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoSaveScreenShotInPowerPoint" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoSaveScreenShotInPowerPoint_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启 自动幻灯片截屏 后将会在幻灯片有墨迹时翻页自动截屏" TextWrapping="Wrap"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="自动保存幻灯片墨迹" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoSaveStrokesInPowerPoint" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoSaveStrokesInPowerPoint_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 开启 自动保存幻灯片墨迹 后将在结束幻灯片放映时自动将保存已有墨迹,并在下次打开时自动加载(文件名和幻灯片页数都要相同)"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="记忆并提示上次播放位置" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchNotifyPreviousPage" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchNotifyPreviousPage_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="提示隐藏幻灯片" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchNotifyHiddenPage"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchNotifyHiddenPage_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="提示是否已启用自动播放" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchNotifyAutoPlayPresentation" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchNotifyAutoPlayPresentation_Toggled" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsAdvancedGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Advanced" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="高级设置" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:InfoBar
IsOpen="True"
x:Name="SettingsGestureEraserDisabledBorder"
IsClosable="False"
Severity="Error"
Title="设置项已被禁用"
Message="手势橡皮相关功能已经被禁用!该部分不可用!" />
<ui:SimpleStackPanel Spacing="6" Name="GestureEraserSettingsItemsPanel">
<TextBlock Text="可在手指触摸画板时显示圆形橡皮或手掌触摸画板时显示的橡皮比&#x000A;手掌大很多时调整"
Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="特殊屏幕模式" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchIsSpecialScreen"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchIsSpecialScreen_OnToggled" />
</ui:SimpleStackPanel>
<StackPanel Orientation="Vertical">
<TextBlock Foreground="#fafafa" Text="触摸倍数" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<StackPanel Orientation="Horizontal"
Visibility="{Binding Visibility,ElementName=TouchMultiplierSlider}">
<Slider x:Name="TouchMultiplierSlider"
Minimum="0" Maximum="2"
Width="340" FontFamily="Microsoft YaHei UI"
IsSnapToTickEnabled="True"
TickFrequency="0.01" TickPlacement="None"
ValueChanged="TouchMultiplierSlider_ValueChanged"
Visibility="Visible" />
<TextBlock
Text="{Binding Value, ElementName=TouchMultiplierSlider, Mode=OneWay}"
VerticalAlignment="Bottom" Margin="10,0,0,8"
FontSize="14" Width="30" HorizontalAlignment="Center"
Visibility="{Binding Path=Visibility, ElementName=TouchMultiplierSlider, Mode=OneWay}" />
</StackPanel>
</StackPanel>
<ui:SimpleStackPanel Spacing="8" Margin="0,4,0,4"
Visibility="{Binding Visibility,ElementName=TouchMultiplierSlider}">
<TextBlock FontSize="14" Text="在下方区域内用笔尖点击以估计触摸大小倍数" />
<TextBlock Text="# 数值仅供参考" Foreground="#a1a1aa" />
<Border Margin="0,0,20,0" CornerRadius="4" Height="48"
Background="Transparent"
BorderBrush="#a1a1aa" BorderThickness="2"
TouchDown="BorderCalculateMultiplier_TouchDown" />
<TextBlock Name="TextBlockShowCalculatedMultiplier" FontSize="14" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Text="# BoundsWidth 参数作为接触面积区分界限,用来区分橡皮和书写模式。笔尖模式参数值应较小。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<StackPanel Orientation="Horizontal"
Visibility="{Binding Visibility,ElementName=TouchMultiplierSlider}">
<Slider x:Name="NibModeBoundsWidthSlider" Minimum="1" Maximum="50"
Width="340"
FontFamily="Microsoft YaHei UI"
ui:ControlHelper.Header="笔尖模式 BoundsWidth"
FontSize="14" IsSnapToTickEnabled="True" TickFrequency="1"
Value="5"
TickPlacement="None"
ValueChanged="NibModeBoundsWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=NibModeBoundsWidthSlider, Mode=OneWay}"
VerticalAlignment="Bottom" Margin="10,0,0,8" FontSize="14" Width="30" />
</StackPanel>
<StackPanel Orientation="Horizontal"
Visibility="{Binding Visibility,ElementName=TouchMultiplierSlider}">
<Slider x:Name="FingerModeBoundsWidthSlider" Minimum="1" Maximum="50"
Width="340" FontFamily="Microsoft YaHei UI"
ui:ControlHelper.Header="手指模式 BoundsWidth"
FontSize="14" IsSnapToTickEnabled="True" TickFrequency="1"
Value="20"
TickPlacement="None"
ValueChanged="FingerModeBoundsWidthSlider_ValueChanged" />
<TextBlock
Text="{Binding Value, ElementName=FingerModeBoundsWidthSlider, Mode=OneWay}"
VerticalAlignment="Bottom" Margin="10,0,0,8" FontSize="14" Width="30" />
</StackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Text="# ThresholdValue 参数用来区分 墨迹擦、面积擦。触控面积达到 BoundsWidth 的界限后,触控面积小于等于 BoundsWidth * ThresholdValue 则为墨迹擦,大于则为面积擦。默认值均为 2.5"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<StackPanel Orientation="Horizontal">
<Slider
x:Name="NibModeBoundsWidthThresholdValueSlider"
Width="340"
ui:ControlHelper.Header="笔尖模式 ThresholdValue"
FontSize="15"
IsSnapToTickEnabled="True"
Maximum="10"
Minimum="0"
TickFrequency="0.01"
TickPlacement="None"
ValueChanged="NibModeBoundsWidthThresholdValueSlider_ValueChanged"
Value="2.5" />
<TextBlock
Width="30"
Margin="10,0,0,8"
VerticalAlignment="Bottom"
FontSize="14"
Text="{Binding Value, ElementName=NibModeBoundsWidthThresholdValueSlider, Mode=OneWay}" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Slider
x:Name="FingerModeBoundsWidthThresholdValueSlider"
Width="340"
ui:ControlHelper.Header="手指模式 ThresholdValue"
FontSize="15"
IsSnapToTickEnabled="True"
Maximum="10"
Minimum="0"
TickFrequency="0.01"
TickPlacement="None"
ValueChanged="FingerModeBoundsWidthThresholdValueSlider_ValueChanged"
Value="2.5" />
<TextBlock
Width="30"
Margin="10,0,0,8"
VerticalAlignment="Bottom"
FontSize="14"
Text="{Binding Value, ElementName=FingerModeBoundsWidthThresholdValueSlider, Mode=OneWay}" />
</StackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Text="# EraserSize 参数用来调节触控的面积擦大小。默认值均为 0.8"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<StackPanel Orientation="Horizontal">
<Slider
x:Name="NibModeBoundsWidthEraserSizeSlider"
Width="340"
ui:ControlHelper.Header="笔尖模式 EraserSize"
FontSize="15"
IsSnapToTickEnabled="True"
Maximum="10"
Minimum="0.01"
TickFrequency="0.01"
TickPlacement="None"
ValueChanged="NibModeBoundsWidthEraserSizeSlider_ValueChanged"
Value="0.8" />
<TextBlock
Width="30"
Margin="10,0,0,8"
VerticalAlignment="Bottom"
FontSize="14"
Text="{Binding Value, ElementName=NibModeBoundsWidthEraserSizeSlider, Mode=OneWay}" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Slider
x:Name="FingerModeBoundsWidthEraserSizeSlider"
Width="340"
ui:ControlHelper.Header="手指模式 EraserSize"
FontSize="15"
IsSnapToTickEnabled="True"
Maximum="10"
Minimum="0.01"
TickFrequency="0.01"
TickPlacement="None"
ValueChanged="FingerModeBoundsWidthEraserSizeSlider_ValueChanged"
Value="0.8" />
<TextBlock
Width="30"
Margin="10,0,0,8"
VerticalAlignment="Bottom"
FontSize="14"
Text="{Binding Value, ElementName=FingerModeBoundsWidthEraserSizeSlider, Mode=OneWay}" />
</StackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Text="# 四边红外触控屏启用 四边红外模式 有利于触控面积的确定"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="四边红外模式" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchIsQuadIR"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchIsQuadIR_Toggled" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="记录日志" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchIsLogEnabled"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchIsLogEnabled_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 日志文件超过 512 KB 时会自动删除。" TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="启用FullScreenHelper"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#7f1d1d" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fca5a5"
Geometry="F1 M24,24z M0,0z M20.1758,20.0951L15.1058,9.97512C15.0358,9.83512,14.9958,9.68512,14.9958,9.52512L14.9958,2.99512 15.4958,2.99512C16.0458,2.99512 16.4958,2.54512 16.4958,1.99512 16.4958,1.44512 16.0458,0.995117 15.4958,0.995117L8.49582,0.995117C7.94582,0.995117 7.49582,1.44512 7.49582,1.99512 7.49582,2.54512 7.94582,2.99512 8.49582,2.99512L8.99582,2.99512 8.99582,9.52512C8.99582,9.67512,8.95582,9.83512,8.89582,9.97512L3.82582,20.0951C3.67582,20.4051 3.59582,20.7451 3.61582,21.0851 3.62582,21.4251 3.73582,21.7651 3.91582,22.0551 4.09582,22.3451 4.34582,22.5851 4.64582,22.7551 4.94582,22.9151 5.27582,23.0051 5.60582,23.0051L18.3758,23.0051C18.7558,23.0051 19.0558,22.9251 19.3558,22.7551 19.6558,22.5851 19.9058,22.3451 20.0858,22.0551 20.2658,21.7651 20.3658,21.4351 20.3858,21.0851 20.3958,20.7451 20.3258,20.4051 20.1758,20.1051L20.1758,20.0951z M10.6858,10.8651C10.8958,10.4451,11.0058,9.98512,11.0058,9.52512L11.0058,2.99512 13.0058,2.99512 13.0058,9.52512C13.0058,9.98512,13.1158,10.4551,13.3258,10.8651L15.3858,14.9951 8.62582,14.9951 10.6958,10.8651 10.6858,10.8651z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fca5a5" Text="实验性选项" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchIsEnableFullScreenHelper"
Toggled="ToggleSwitchIsEnableFullScreenHelper_Toggled"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock TextWrapping="Wrap" Foreground="#a1a1aa"
Text="# 感谢lindexi大佬提供的FullScreenHelper可以减少任务栏弹出的问题且支持多显示器自动全屏虽然对icc来说没什么用就是了如果遇到一些玄学问题可以关闭该功能重启icc后生效。" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="书写时禁用Win10/11边缘手势"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchIsEnableEdgeGestureUtil_Toggled"
Name="ToggleSwitchIsEnableEdgeGestureUtil" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock TextWrapping="Wrap" Foreground="#a1a1aa"
Text="# 仅在屏幕批注、PPT批注、白板模式时禁用边缘手势" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="阻止意外关闭窗口"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchIsDisableCloseWindow_Toggled"
Name="ToggleSwitchIsDisableCloseWindow" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="强制置顶窗口"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchEnableForceTopMost_Toggled"
Name="ToggleSwitchEnableForceTopMost" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock TextWrapping="Wrap" Foreground="#a1a1aa"
Text="# 该功能在 Windows 7 系统下非常有用可以解决某些玄学的窗口置顶问题感谢《智绘教》开发者“Alan_CRL”提供的方法" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="让ICC窗口始终可见且全屏显示"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchIsEnableForceFullScreen_Toggled"
Name="ToggleSwitchIsEnableForceFullScreen" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock TextWrapping="Wrap" Foreground="#a1a1aa"
Text="# 当检测到窗口大小变化时自动使用Win32API将本窗口的大小设置为主显示器大小设备像素大小同时如果窗口被遮挡则会立刻恢复置顶。该选项重启icc后生效。" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="实时确保浮动工具栏显示在屏幕内"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#1e3a8a" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="16" Height="16" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#dbeafe"
Geometry="F0 M24,24z M0,0z M18.75,4C18.75,3.58579 18.4142,3.25 18,3.25 17.5858,3.25 17.25,3.58579 17.25,4 17.25,4.33152 17.1183,4.64946 16.8839,4.88388 16.6495,5.1183 16.3315,5.25 16,5.25 15.5858,5.25 15.25,5.58579 15.25,6 15.25,6.41421 15.5858,6.75 16,6.75 16.3315,6.75 16.6495,6.8817 16.8839,7.11612 17.1183,7.35054 17.25,7.66848 17.25,8 17.25,8.41421 17.5858,8.75 18,8.75 18.4142,8.75 18.75,8.41421 18.75,8 18.75,7.66848 18.8817,7.35054 19.1161,7.11612 19.3505,6.8817 19.6685,6.75 20,6.75 20.4142,6.75 20.75,6.41421 20.75,6 20.75,5.58579 20.4142,5.25 20,5.25 19.6685,5.25 19.3505,5.1183 19.1161,4.88388 18.8817,4.64946 18.75,4.33152 18.75,4z M9.75,6C9.75,5.58579 9.41421,5.25 9,5.25 8.58579,5.25 8.25,5.58579 8.25,6 8.25,7.39239 7.69688,8.72774 6.71231,9.71231 5.72774,10.6969 4.39239,11.25 3,11.25 2.58579,11.25 2.25,11.5858 2.25,12 2.25,12.4142 2.58579,12.75 3,12.75 4.39239,12.75 5.72774,13.3031 6.71231,14.2877 7.69688,15.2723 8.25,16.6076 8.25,18 8.25,18.4142 8.58579,18.75 9,18.75 9.41421,18.75 9.75,18.4142 9.75,18 9.75,16.6076 10.3031,15.2723 11.2877,14.2877 12.2723,13.3031 13.6076,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12 15.75,11.5858 15.4142,11.25 15,11.25 13.6076,11.25 12.2723,10.6969 11.2877,9.71231 10.3031,8.72774 9.75,7.39239 9.75,6z M18.75,16C18.75,15.5858 18.4142,15.25 18,15.25 17.5858,15.25 17.25,15.5858 17.25,16 17.25,16.3315 17.1183,16.6495 16.8839,16.8839 16.6495,17.1183 16.3315,17.25 16,17.25 15.5858,17.25 15.25,17.5858 15.25,18 15.25,18.4142 15.5858,18.75 16,18.75 16.3315,18.75 16.6495,18.8817 16.8839,19.1161 17.1183,19.3505 17.25,19.6685 17.25,20 17.25,20.4142 17.5858,20.75 18,20.75 18.4142,20.75 18.75,20.4142 18.75,20 18.75,19.6685 18.8817,19.3505 19.1161,19.1161 19.3505,18.8817 19.6685,18.75 20,18.75 20.4142,18.75 20.75,18.4142 20.75,18 20.75,17.5858 20.4142,17.25 20,17.25 19.6685,17.25 19.3505,17.1183 19.1161,16.8839 18.8817,16.6495 18.75,16.3315 18.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#dbeafe" Text="新功能" FontSize="12"
VerticalAlignment="Center" />
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchEnsureFloatingBarVisibleInScreen_Toggled"
Name="ToggleSwitchEnsureFloatingBarVisibleInScreen"
IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"
Visibility="Collapsed">
<TextBlock Foreground="#fafafa" Text="启用DPIChangeDetection"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#7f1d1d" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fca5a5"
Geometry="F1 M24,24z M0,0z M20.1758,20.0951L15.1058,9.97512C15.0358,9.83512,14.9958,9.68512,14.9958,9.52512L14.9958,2.99512 15.4958,2.99512C16.0458,2.99512 16.4958,2.54512 16.4958,1.99512 16.4958,1.44512 16.0458,0.995117 15.4958,0.995117L8.49582,0.995117C7.94582,0.995117 7.49582,1.44512 7.49582,1.99512 7.49582,2.54512 7.94582,2.99512 8.49582,2.99512L8.99582,2.99512 8.99582,9.52512C8.99582,9.67512,8.95582,9.83512,8.89582,9.97512L3.82582,20.0951C3.67582,20.4051 3.59582,20.7451 3.61582,21.0851 3.62582,21.4251 3.73582,21.7651 3.91582,22.0551 4.09582,22.3451 4.34582,22.5851 4.64582,22.7551 4.94582,22.9151 5.27582,23.0051 5.60582,23.0051L18.3758,23.0051C18.7558,23.0051 19.0558,22.9251 19.3558,22.7551 19.6558,22.5851 19.9058,22.3451 20.0858,22.0551 20.2658,21.7651 20.3658,21.4351 20.3858,21.0851 20.3958,20.7451 20.3258,20.4051 20.1758,20.1051L20.1758,20.0951z M10.6858,10.8651C10.8958,10.4451,11.0058,9.98512,11.0058,9.52512L11.0058,2.99512 13.0058,2.99512 13.0058,9.52512C13.0058,9.98512,13.1158,10.4551,13.3258,10.8651L15.3858,14.9951 8.62582,14.9951 10.6958,10.8651 10.6858,10.8651z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fca5a5" Text="实验性选项" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Toggled="ToggleSwitchIsEnableDPIChangeDetection_Toggled"
Name="ToggleSwitchIsEnableDPIChangeDetection" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"
Visibility="Collapsed">
<TextBlock Foreground="#fafafa" Text="启用ResolutionChangeDetection"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#7f1d1d" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fca5a5"
Geometry="F1 M24,24z M0,0z M20.1758,20.0951L15.1058,9.97512C15.0358,9.83512,14.9958,9.68512,14.9958,9.52512L14.9958,2.99512 15.4958,2.99512C16.0458,2.99512 16.4958,2.54512 16.4958,1.99512 16.4958,1.44512 16.0458,0.995117 15.4958,0.995117L8.49582,0.995117C7.94582,0.995117 7.49582,1.44512 7.49582,1.99512 7.49582,2.54512 7.94582,2.99512 8.49582,2.99512L8.99582,2.99512 8.99582,9.52512C8.99582,9.67512,8.95582,9.83512,8.89582,9.97512L3.82582,20.0951C3.67582,20.4051 3.59582,20.7451 3.61582,21.0851 3.62582,21.4251 3.73582,21.7651 3.91582,22.0551 4.09582,22.3451 4.34582,22.5851 4.64582,22.7551 4.94582,22.9151 5.27582,23.0051 5.60582,23.0051L18.3758,23.0051C18.7558,23.0051 19.0558,22.9251 19.3558,22.7551 19.6558,22.5851 19.9058,22.3451 20.0858,22.0551 20.2658,21.7651 20.3658,21.4351 20.3858,21.0851 20.3958,20.7451 20.3258,20.4051 20.1758,20.1051L20.1758,20.0951z M10.6858,10.8651C10.8958,10.4451,11.0058,9.98512,11.0058,9.52512L11.0058,2.99512 13.0058,2.99512 13.0058,9.52512C13.0058,9.98512,13.1158,10.4551,13.3258,10.8651L15.3858,14.9951 8.62582,14.9951 10.6958,10.8651 10.6858,10.8651z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fca5a5" Text="实验性选项" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
Toggled="ToggleSwitchIsEnableResolutionChangeDetection_Toggled"
Name="ToggleSwitchIsEnableResolutionChangeDetection"
IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold" />
</ui:SimpleStackPanel>
<TextBlock TextWrapping="Wrap" Foreground="#a1a1aa"
Text="# 仅确保浮动工具栏每时每刻显示在屏幕中若不再可见于屏幕范围内才会自动复位否则不会自动调整位置。开启后会实时监听分辨率变更事件和DPI变更事件并作出相应。如果该功能出现异常您也可以在托盘菜单中强制浮动工具栏复位。" />
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsAutomationGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Automation" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="自动化" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<TextBlock Margin="0,0,0,8" Text="自动收纳" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<Grid Margin="4,0">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<ui:SimpleStackPanel Grid.Row="0" Grid.Column="0" Orientation="Vertical">
<Image Source="/Resources/Icons-png/EasiNote.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃白板5" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInEasiNote" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiNote_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Grid.Row="0" Grid.Column="1" Orientation="Vertical">
<Image Source="/Resources/Icons-png/EasiCamera.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃展台" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInEasiCamera" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiCamera_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Grid.Row="0" Grid.Column="2" Orientation="Vertical">
<Image Source="/Resources/Icons-png/EasiNote3.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃白板3" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInEasiNote3" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiNote3_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Grid.Row="0" Grid.Column="3" Orientation="Vertical">
<Image Source="/Resources/Icons-png/EasiNote3C.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃轻白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInEasiNote3C" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiNote3C_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="1" Grid.Column="0"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/EasiNote5C.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃轻白板5C" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInEasiNote5C" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiNote5C_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="1" Grid.Column="1"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/SeewoPinco.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="希沃品课" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInSeewoPincoTeacher" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInSeewoPincoTeacher_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="1" Grid.Column="2"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/HiteBoard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="鸿合白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInHiteTouchPro" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInHiteTouchPro_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="1" Grid.Column="3"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/HiteCamera.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="鸿合展台" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInHiteCamera" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInHiteCamera_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="2" Grid.Column="0"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/HiteLightBoard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="鸿合轻量白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInHiteLightBoard" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInHiteLightBoard_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="2" Grid.Column="1"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/WenXiang.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="文香白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInWxBoardMain" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInWxBoardMain_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="2" Grid.Column="2"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/Whiteboard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="微软白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInMSWhiteboard" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInMSWhiteboard_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="2" Grid.Column="3"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/AdmoxWhiteboard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="安道白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInAdmoxWhiteboard" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInAdmoxWhiteboard_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="3" Grid.Column="0"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/AdmoxBooth.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="安道展台" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInAdmoxBooth" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInAdmoxBooth_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="3" Grid.Column="1"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/YiYunWhiteboard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="艺云白板" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInQPoint" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInQPoint_Toggled" Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="3" Grid.Column="2"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/YiYunVisualPresenter.png"
Margin="0,0,0,4" Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="艺云展台" HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInYiYunVisualPresenter"
IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInYiYunVisualPresenter_Toggled"
Width="40" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Margin="0,18,0,0" Grid.Row="3" Grid.Column="3"
Orientation="Vertical">
<Image Source="/Resources/Icons-png/MaxHubWhiteboard.png" Margin="0,0,0,4"
Width="42"
Height="42" HorizontalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="MaxHub白板"
HorizontalAlignment="Center"
FontSize="14" Margin="0,0,0,4" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
HorizontalAlignment="Center"
Name="ToggleSwitchAutoFoldInMaxHubWhiteboard" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInMaxHubWhiteboard_Toggled"
Width="40" />
</ui:SimpleStackPanel>
</Grid>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/EasiNote.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动收纳忽略桌面EN5批注窗口"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
Name="ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/Donview.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="进入“中原旧白板”时自动收纳"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
Name="ToggleSwitchAutoFoldInOldZyBoard" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInOldZyBoard_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/Powerpoint.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="播放PPT时自动收纳" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" MinWidth="0"
Name="ToggleSwitchAutoFoldInPPTSlideShow" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoFoldInPPTSlideShow_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="自动查杀" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<!--<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchAutoFoldInZySmartBoard" Header="进入“中原新白板(相似鸿合)”时自动收纳至侧边栏" IsOn="False" FontFamily="Microsoft YaHei UI" Toggled="ToggleSwitchAutoFoldInZySmartBoard_Toggled"/>-->
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/PPTTools.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀希沃“PPT 小工具”"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillPptService" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillPptService_Toggled" />
</ui:SimpleStackPanel>
<TextBlock
Text="# 请注意,查杀 PPT 小工具会导致希沃课堂授课助手无法使用,直接进入希沃课堂授课助手安装目录删除 Office.dll 文件即可进入 PPT 放映时不会启动希沃的 PPT 工具栏。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/EasiNote.png" Margin="0,0,6,0" Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 希沃白板5" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" Name="ToggleSwitchAutoKillEasiNote"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillEasiNote_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/HiteAnnotation.png" Margin="0,0,6,0"
Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 鸿合屏幕书写" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillHiteAnnotation"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillHiteAnnotation_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/VComYouJiao.png" Margin="0,0,6,0"
Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 优教授课端" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillVComYouJiao"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillVComYouJiao_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"
Visibility="Collapsed">
<Image Source="/Resources/Icons-png/Seewo2Annotation.png" Margin="0,0,6,0"
Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 希沃桌面2.0 桌面批注"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="同类软件查杀" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/InkCanvas.png" Margin="0,0,6,0"
Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 Ink Canvas"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillInkCanvas"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillInkCanvas_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Image Source="/Resources/Icons-png/ica.png" Margin="0,0,6,0"
Width="28"
Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀ICA新版旧版通杀"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillICA"
IsOn="True" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoKillICA_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="批注弹窗拦截" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<TextBlock
Text="# 该功能可以自动隐藏其他白板软件在最小化时显示的桌面批注弹窗并且可以使用icc无缝替代这些弹窗。希沃系列的悬浮窗拦截后可显示 “返回到希沃软件” 按钮。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="清屏时自动截图" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoSaveStrokesAtClear" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoSaveStrokesAtClear_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="截图分日期文件夹保存" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchSaveScreenshotsInDateFolders" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchSaveScreenshotsInDateFolders_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="截图时自动保存墨迹" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoSaveStrokesAtScreenshot" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoSaveStrokesAtScreenshot_Toggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="自动截图最小墨迹量" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="SideControlMinimumAutomationSlider" Minimum="1"
Maximum="24" Width="168" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="1" TickFrequency="1"
TickPlacement="None" AutoToolTipPlacement="None"
ValueChanged="SideControlMinimumAutomationSlider_ValueChanged" />
<TextBlock
Text="{Binding ElementName=SideControlMinimumAutomationSlider, Path=Value, Converter={StaticResource IntNumberToString2} }"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
Margin="12,0,16,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsStorageGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Storage" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="存储" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<TextBlock Margin="0,0,0,8" Text="存储位置" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<TextBlock Text="# 设置的存储位置用于存放手动保存的墨迹、自动保存的墨迹、手动保存的板书、缓存文件、部分功能的配置文件和屏幕截图。注意icc的设置档存放在icc的安装目录下无法迁移到设置的存储目录。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ComboBox Name="ComboBoxStoragePath" FontFamily="Microsoft YaHei UI"
SelectedIndex="1" HorizontalAlignment="Center">
<ComboBox.ItemContainerStyle>
<Style TargetType="ComboBoxItem" BasedOn="{StaticResource {x:Type ComboBoxItem}}">
<Setter Property="HorizontalAlignment" Value="Left" />
</Style>
</ComboBox.ItemContainerStyle>
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Width="326">
<Image Width="20" Height="20" Source="{Binding Icon}" Controls:RenderOptions.BitmapScalingMode="HighQuality" />
<TextBlock Width="300" TextTrimming="CharacterEllipsis" Margin="6,0,0,0" VerticalAlignment="Center" FontFamily="Microsoft YaHei UI">
<Run FontWeight="Bold" Text="{Binding Title}" />
<Run Text="{Binding Path}" />
</TextBlock>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<ui:SimpleStackPanel Orientation="Vertical" HorizontalAlignment="Left" Spacing="8" Name="CustomStorageLocationGroup">
<TextBlock Foreground="#fafafa" Text="自定义存储路径" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="10">
<TextBox ui:TextBoxHelper.IsDeleteButtonVisible="False" Width="320" x:Name="CustomStorageLocation" Text=""
TextWrapping="NoWrap" AcceptsTab="False" AcceptsReturn="False" IsReadOnly="True" IsReadOnlyCaretVisible="True" />
<Button Name="CustomStorageLocationButton" Content="浏览"
Click="CustomStorageLocationButton_Click" />
</ui:SimpleStackPanel>
<WrapPanel Margin="0,2,0,0" Name="CustomStorageLocationCheckPanel">
<WrapPanel.Resources>
<DrawingImage x:Key="SuccessIcon">
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#4ade80" Geometry="F1 M16,16z M0,0z M14.9248,2.88526L13.8496,1.81006 5.81979,9.88953 2.1504,6.15278 0,8.30318 5.81979,14.1903 16,3.96045 14.9248,2.88526z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
<DrawingImage x:Key="FailedIcon">
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="#facc15" Geometry="F1 M16,16z M0,0z M7.99988,0C7.74396,0,7.48812,0.0976987,7.29285,0.292969L0.292852,7.29297C-0.0976175,7.68352,-0.0976175,8.31648,0.292852,8.70703L7.29285,15.707C7.6834,16.0975,8.31636,16.0975,8.70691,15.707L15.705,8.70703C16.0954,8.31648,16.0954,7.68352,15.705,7.29297L8.70691,0.292969C8.51164,0.0977287,8.2558,0,7.99988,0z M6.99988,3L8.99988,3 8.99988,9C8.99988,9 8.99988,10 7.99988,10 6.99988,10 6.99988,9 6.99988,9L6.99988,3z M6.99988,11L8.99988,11 8.99988,13 6.99988,13 6.99988,11z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
<DrawingImage x:Key="LoadingIcon">
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F1 M16,16z M0,0z M7.97866,1.05463C7.88823,1.0548 7.798,1.06331 7.70913,1.08003 4.70969,1.23997 2.08169,3.30185 1.25795,6.20893 0.49488,9.22696 1.82645,12.4419 4.50014,14.0371 7.21817,15.5554 10.6675,15.1016 12.9005,12.9316 15.0709,10.6989 15.5243,7.25016 14.006,4.5312 15.5126,7.25687 15.038,10.6938 12.8712,12.9023 10.6434,15.0497 7.21718,15.4792 4.54116,13.9668 1.92311,12.3914 0.626806,9.23612 1.36147,6.29487 0.653131,9.24292 1.98362,12.3666 4.58217,13.8964 7.23613,15.3673 10.6076,14.9008 12.756,12.7871 14.8504,10.6193 15.2698,7.25855 13.7931,4.65425 15.2461,7.27223 14.7845,10.6101 12.6974,12.7285 10.5597,14.7962 7.23254,15.2126 4.6642,13.7539 2.14585,12.2446 0.888133,9.18174 1.59975,6.35737 0.914456,9.18855 2.2044,12.2197 4.70327,13.6835 7.24954,15.1008 10.5239,14.6473 12.5822,12.6132 14.5969,10.5356 15.0033,7.27391 13.5802,4.77729 14.9796,7.28759 14.531,10.5265 12.5236,12.5546 10.476,14.5427 7.2479,14.9461 4.78725,13.541 2.36858,12.0977 1.14946,9.12542 1.83803,6.41792 1.17578,9.13222 2.42714,12.0729 4.82631,13.4706 7.26489,14.8343 10.4402,14.3938 12.4083,12.4394 14.3433,10.4519 14.7367,7.28732 13.3673,4.89839 14.713,7.301 14.2775,10.4428 12.3498,12.3808 10.3924,14.2892 7.2613,14.6796 4.90835,13.3281 2.58936,11.9509 1.41078,9.07104 2.07631,6.48042 1.43711,9.07785 2.64987,11.926 4.94936,13.2578 7.28025,14.5677 10.3565,14.1402 12.2345,12.2656 14.0898,10.3682 14.4702,7.30267 13.1544,5.02143 14.4465,7.31636 14.024,10.3591 12.1759,12.207 10.3087,14.0357 7.27666,14.413 5.03139,13.1152 2.8121,11.804 1.67015,9.01472 2.31264,6.54097 1.69648,9.02152 2.87261,11.7792 5.07241,13.0449 7.29561,14.3012 10.2728,13.8867 12.0607,12.0918 13.8363,10.2845 14.2037,7.31803 12.9415,5.14448 14.18,7.33171 13.7705,10.2754 12.0021,12.0331 10.225,13.7822 7.29202,14.1465 5.15444,12.9023 3.03484,11.6571 1.93148,8.96035 2.55092,6.60347 1.9578,8.96716 3.09535,11.6323 5.19545,12.832 7.31097,14.0347 10.1891,13.6332 11.8869,11.9179 13.5828,10.2008 13.9371,7.33339 12.7287,5.26753 13.9134,7.34707 13.5169,10.1917 11.8283,11.8593 10.1413,13.5286 7.30738,13.88 5.27749,12.6894 3.25757,11.5103 2.19281,8.90403 2.7892,6.66401 2.21913,8.91084 3.31808,11.4854 5.3185,12.6191 7.32633,13.7681 10.1054,13.3797 11.713,11.7441 13.3293,10.1171 13.6706,7.34875 12.5158,5.39057 13.6469,7.36243 13.2634,10.108 11.6544,11.6855 10.0576,13.2751 7.32273,13.6134 5.40053,12.4765 3.48031,11.3634 2.45413,8.8477 3.02749,6.72456 2.48045,8.85451 3.54082,11.3386 5.44155,12.4062 7.34168,13.5016 10.0217,13.1262 11.5392,11.5703 13.0758,10.0334 13.4041,7.3641 12.3029,5.51362 13.3804,7.37778 13.0099,10.0243 11.4806,11.5117 9.97389,13.0216 7.3381,13.3469 5.52358,12.2636 3.70304,11.2166 2.71546,8.79333 3.26577,6.78706 2.74178,8.80014 3.76355,11.1917 5.5646,12.1933 7.35705,13.2351 9.93804,12.8727 11.3654,11.3964 12.8222,9.94974 13.1375,7.37946 12.09,5.63667 13.1138,7.39314 12.7564,9.94061 11.3068,11.3378 9.8902,12.7681 7.35345,13.0804 5.64663,12.0507 3.92578,11.0697 2.97483,8.73701 3.5021,6.84761 3.00115,8.74381 3.98629,11.0449 5.68764,11.9804 7.3724,12.9685 9.85435,12.6191 11.1915,11.2226 12.5687,9.86605 12.871,7.39482 11.8771,5.75972 12.8473,7.4085 12.5029,9.85692 11.133,11.164 9.80651,12.5146 7.36881,12.8138 5.76967,11.8378 4.14852,10.9229 3.23615,8.68263 3.74038,6.91011 3.26248,8.68944 4.20903,10.898 5.81069,11.7675 7.38776,12.702 9.77065,12.3656 11.0177,11.0488 12.3152,9.78235 12.6045,7.41019 11.6642,5.88276 12.5808,7.42387 12.2494,9.77322 10.9591,10.9902 9.72281,12.2611 7.38417,12.5473 5.89272,11.6249 4.37125,10.776 3.49748,8.62631 3.97866,6.97065 3.52413,8.63319 4.43201,10.7498 5.93374,11.5527 7.40284,12.433 9.68601,12.1097 10.8419,10.873 12.0588,9.69723 12.3356,7.42595 11.4494,6.00776 12.3234,7.43297 12.0258,9.69328 10.8126,10.8437 9.66222,12.0569 7.40191,12.3545 5.9767,11.4804 4.50712,10.6832 3.63409,8.57548 4.10952,6.97261 4.49922,5.34676 6.30735,3.95946 7.97866,4.00386L7.97866,3.99994C7.97932,3.99994 7.97999,3.99994 7.98066,3.99994 8.37116,3.9997 8.74559,3.84446 9.02172,3.56834 9.29784,3.29221 9.45307,2.91778 9.45331,2.52728 9.45307,2.13679 9.29784,1.76235 9.02171,1.48623 8.74559,1.21011 8.37116,1.05487 7.98066,1.05463 7.97999,1.05463 7.97932,1.05463 7.97866,1.05463z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</WrapPanel.Resources>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4" Margin="0,0,16,0" Name="CustomStorageNonRemovableDriveTip">
<Image Width="18" Height="18" Source="{StaticResource SuccessIcon}" />
<TextBlock FontSize="13" VerticalAlignment="Center" Text="非可移动存储介质" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="4" Margin="0,0,13,0" Name="CustomStorageWritableTip">
<Image Width="18" Height="18" Source="{StaticResource FailedIcon}" />
<TextBlock FontSize="13" VerticalAlignment="Center" Text="目录似乎没有写入权限" />
</ui:SimpleStackPanel>
</WrapPanel>
<TextBlock Text="# 请注意检查存储文件夹是否有写入权限" TextWrapping="Wrap" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Spacing="6" Name="StorageAnalazeWaitingGroup">
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="存储分析" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<TextBlock Text="# 请等待,正在分析中..."
TextWrapping="Wrap" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Spacing="6" Name="StorageAnalazeGroup">
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="存储分析" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<Border Height="24" Background="#27272a" Width="388">
<StackPanel Orientation="Horizontal">
<Border Background="#0ea5e9" Name="DiskUsageUsedSpaceBorder" Width="123" />
<Border Background="#ef4444" Name="DiskUsageICCSpaceBorder" Width="3" />
</StackPanel>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="16">
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#0ea5e9" />
<TextBlock Text="硬盘其他占用" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#ef4444" />
<TextBlock Text="ICC数据占用" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#27272a" />
<TextBlock Text="空闲空间" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Spacing="1">
<TextBlock Name="StorageNowLocationTextBlock" Text="当前位置C:\Users\Dubi906w\InkCanvasForClass" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis" Foreground="#a1a1aa" />
<TextBlock Name="StorageDiskUsageTextBlock" Text="磁盘使用情况:已用 291.13 GB、剩余 8932.12 GB" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis" Foreground="#a1a1aa" />
<TextBlock Name="StorageDirectoryUsageTextBlock" Text="目录占用情况:已用 256.00 MB共 1 个文件" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Spacing="6" Name="ICCDirectoryStorageAnalyzeGroup">
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<Border Height="24" Background="#27272a" Width="388">
<StackPanel Orientation="Horizontal">
<Border Name="StorageDirectoryAutoSavedInkUsageBorder" Background="#f97316" Width="48" />
<Border Name="StorageDirectoryQuotedPhotoUsageBorder" Background="#eab308" Width="12" />
<Border Name="StorageDirectoryExportedInkUsageBorder" Background="#22c55e" Width="67" />
<Border Name="StorageDirectoryCachesUsageBorder" Background="#0ea5e9" Width="193" />
<Border Name="StorageDirectoryAutoSavedSnapshotUsageBorder" Background="#a855f7" Width="68" />
</StackPanel>
</Border>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="16">
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#f97316" />
<TextBlock Text="自动保存的墨迹" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#eab308" />
<TextBlock Text="板书的图片引用" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#22c55e" />
<TextBlock Text="导出的板书文件" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="16">
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#0ea5e9" />
<TextBlock Text="缓存文件" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Border Width="12" Height="12" Background="#a855f7" />
<TextBlock Text="自动保存的截图文件" Margin="3,0,0,0" VerticalAlignment="Center" Foreground="#f4f4f5" />
</StackPanel>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Spacing="12" Margin="0,4,0,0">
<Grid>
<StackPanel Orientation="Horizontal">
<Image Margin="0,0,8,0" Height="32" Width="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.87868,2.87868C5.44129,2.31607,6.20435,2,7,2L14,2C14.2652,2,14.5196,2.10536,14.7071,2.29289L19.7071,7.29289C19.8946,7.48043,20,7.73478,20,8L20,19C20,19.7957 19.6839,20.5587 19.1213,21.1213 18.5587,21.6839 17.7957,22 17,22L7,22C6.20435,22 5.44129,21.6839 4.87868,21.1213 4.31607,20.5587 4,19.7957 4,19L4,5C4,4.20435,4.31607,3.44129,4.87868,2.87868z M13.5858,8.41421C13.9609,8.78929,14.4696,9,15,9L18,9 18,19C18,19.2652 17.8946,19.5196 17.7071,19.7071 17.5196,19.8946 17.2652,20 17,20L7,20C6.73478,20 6.48043,19.8946 6.29289,19.7071 6.10536,19.5196 6,19.2652 6,19L6,5C6,4.73478 6.10536,4.48043 6.29289,4.29289 6.48043,4.10536 6.73478,4 7,4L13,4 13,7C13,7.53043,13.2107,8.03914,13.5858,8.41421z M16.5858,7L15,7 15,5.41421 16.5858,7z M14,9.58594C13.3597,9.58594,12.7456,9.84029,12.2929,10.293L7.29289,15.293C7.10536,15.4806,7,15.7349,7,16.0002L7,18.0002C7,18.5524,7.44772,19.0002,8,19.0002L10,19.0002C10.2652,19.0002,10.5196,18.8948,10.7071,18.7073L15.7071,13.7073C16.1599,13.2545 16.4142,12.6404 16.4142,12.0002 16.4142,11.3599 16.1599,10.7458 15.7071,10.293 15.2544,9.84029 14.6403,9.58594 14,9.58594z M13.7071,11.7073C13.7848,11.6296 13.8901,11.5859 14,11.5859 14.1099,11.5859 14.2152,11.6296 14.2929,11.7073 14.3706,11.7849 14.4142,11.8903 14.4142,12.0002 14.4142,12.11 14.3706,12.2154 14.2929,12.293L9.58579,17.0002 9,17.0002 9,16.4144 13.7071,11.7073z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical">
<TextBlock FontSize="16" FontWeight="Bold">自动保存的墨迹</TextBlock>
<TextBlock Name="StorageAutoSavedInkDescription" FontSize="14" Foreground="#a1a1aa" Margin="0,2,0,0">78%占用654.31MB的空间</TextBlock>
</StackPanel>
</StackPanel>
<Border Name="StorageJumpToFolderBtn1" VerticalAlignment="Center" HorizontalAlignment="Right" Width="38" Height="38" CornerRadius="19">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.50024,5.5C4.23503,5.5 3.98067,5.60536 3.79314,5.79289 3.6056,5.98043 3.50024,6.23478 3.50024,6.5L3.50024,17.5C3.50024,17.7652 3.6056,18.0196 3.79314,18.2071 3.82261,18.2366 3.85373,18.264 3.88628,18.2893L6.32087,11.798 6.32087,11.798C6.46375,11.4169 6.71956,11.0883 7.05401,10.8564 7.38851,10.6245 7.78582,10.5002 8.19287,10.5L19.5002,10.5 19.5002,9.5C19.5002,9.23478 19.3949,8.98043 19.2073,8.79289 19.0198,8.60536 18.7655,8.5 18.5002,8.5L11.5002,8.5C11.235,8.5,10.9807,8.39464,10.7931,8.20711L8.08603,5.5 4.50024,5.5z M20.4995,12.5L8.19362,12.5 5.94331,18.5 18.526,18.5 18.526,18.5C18.7585,18.4999 18.984,18.4187 19.1632,18.2705 19.3424,18.1222 19.4644,17.916 19.508,17.6875L20.4995,12.5z M21.5002,10.7682C21.699,10.883 21.8769,11.0315 22.0259,11.2073 22.2135,11.4288 22.3507,11.6885 22.4278,11.9684 22.505,12.2483 22.5203,12.5416 22.4727,12.828L22.4685,12.8517 21.4725,18.0625C21.3417,18.748 20.9759,19.3665 20.4382,19.8114 19.9004,20.2563 19.2244,20.4998 18.5265,20.5L4.50024,20.5C3.70459,20.5 2.94153,20.1839 2.37892,19.6213 1.81631,19.0587 1.50024,18.2956 1.50024,17.5L1.50024,6.5C1.50024,5.70435 1.81631,4.94129 2.37892,4.37868 2.94153,3.81607 3.70459,3.5 4.50024,3.5L8.50024,3.5C8.76546,3.5,9.01981,3.60536,9.20735,3.79289L11.9145,6.5 18.5002,6.5C19.2959,6.5 20.059,6.81607 20.6216,7.37868 21.1842,7.94129 21.5002,8.70435 21.5002,9.5L21.5002,10.7682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Grid>
<Grid>
<StackPanel Orientation="Horizontal">
<Image Margin="0,0,8,0" Height="32" Width="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.58579,4.58579C4.96086,4.21071,5.46957,4,6,4L18,4C18.5304,4 19.0391,4.21071 19.4142,4.58579 19.7893,4.96086 20,5.46957 20,6L20,13.5856 18.7071,12.2927 18.6934,12.2793C18.0792,11.6883 17.3227,11.3301 16.5,11.3301 15.6773,11.3301 14.9208,11.6883 14.3066,12.2793L14.2929,12.2927 14,12.5856 11.7071,10.2927 11.6934,10.2793C11.0792,9.68828 10.3227,9.33008 9.5,9.33008 8.67726,9.33008 7.92076,9.68828 7.30661,10.2793L7.29289,10.2927 4,13.5856 4,6C4,5.46957,4.21071,4.96086,4.58579,4.58579z M15.4142,13.9998L15.6997,13.7144C16.011,13.4172 16.2882,13.3301 16.5,13.3301 16.7118,13.3301 16.989,13.4172 17.3003,13.7144L20,16.414 20,18C20,18.5304 19.7893,19.0391 19.4142,19.4142 19.0391,19.7893 18.5304,20 18,20L6,20C5.46957,20 4.96086,19.7893 4.58579,19.4142 4.21071,19.0391 4,18.5304 4,18L4,16.414 8.69967,11.7144C9.01097,11.4172 9.28816,11.3301 9.5,11.3301 9.71184,11.3301 9.98903,11.4172 10.3003,11.7144L13.2929,14.7069 15.2929,16.7069C15.6834,17.0975 16.3166,17.0975 16.7071,16.7069 17.0976,16.3164 17.0976,15.6832 16.7071,15.2927L15.4142,13.9998z M22,16.0008L22,18C22,19.0609 21.5786,20.0783 20.8284,20.8284 20.0783,21.5786 19.0609,22 18,22L6,22C4.93913,22 3.92172,21.5786 3.17157,20.8284 2.42143,20.0783 2,19.0609 2,18L2,16 2,15.9997 2,6C2,4.93913 2.42143,3.92172 3.17157,3.17157 3.92172,2.42143 4.93913,2 6,2L18,2C19.0609,2 20.0783,2.42143 20.8284,3.17157 21.5786,3.92172 22,4.93913 22,6L22,15.9988C22,15.9995,22,16.0002,22,16.0008z M15,7C14.4477,7 14,7.44772 14,8 14,8.55228 14.4477,9 15,9L15.01,9C15.5623,9 16.01,8.55228 16.01,8 16.01,7.44772 15.5623,7 15.01,7L15,7z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical">
<TextBlock FontSize="16" FontWeight="Bold">板书的图片引用</TextBlock>
<TextBlock Name="StorageQuotedPhotosDescription" FontSize="14" Foreground="#a1a1aa" Margin="0,2,0,0">0%</TextBlock>
</StackPanel>
</StackPanel>
<Border Name="StorageJumpToFolderBtn2" VerticalAlignment="Center" HorizontalAlignment="Right" Width="38" Height="38" CornerRadius="19">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.50024,5.5C4.23503,5.5 3.98067,5.60536 3.79314,5.79289 3.6056,5.98043 3.50024,6.23478 3.50024,6.5L3.50024,17.5C3.50024,17.7652 3.6056,18.0196 3.79314,18.2071 3.82261,18.2366 3.85373,18.264 3.88628,18.2893L6.32087,11.798 6.32087,11.798C6.46375,11.4169 6.71956,11.0883 7.05401,10.8564 7.38851,10.6245 7.78582,10.5002 8.19287,10.5L19.5002,10.5 19.5002,9.5C19.5002,9.23478 19.3949,8.98043 19.2073,8.79289 19.0198,8.60536 18.7655,8.5 18.5002,8.5L11.5002,8.5C11.235,8.5,10.9807,8.39464,10.7931,8.20711L8.08603,5.5 4.50024,5.5z M20.4995,12.5L8.19362,12.5 5.94331,18.5 18.526,18.5 18.526,18.5C18.7585,18.4999 18.984,18.4187 19.1632,18.2705 19.3424,18.1222 19.4644,17.916 19.508,17.6875L20.4995,12.5z M21.5002,10.7682C21.699,10.883 21.8769,11.0315 22.0259,11.2073 22.2135,11.4288 22.3507,11.6885 22.4278,11.9684 22.505,12.2483 22.5203,12.5416 22.4727,12.828L22.4685,12.8517 21.4725,18.0625C21.3417,18.748 20.9759,19.3665 20.4382,19.8114 19.9004,20.2563 19.2244,20.4998 18.5265,20.5L4.50024,20.5C3.70459,20.5 2.94153,20.1839 2.37892,19.6213 1.81631,19.0587 1.50024,18.2956 1.50024,17.5L1.50024,6.5C1.50024,5.70435 1.81631,4.94129 2.37892,4.37868 2.94153,3.81607 3.70459,3.5 4.50024,3.5L8.50024,3.5C8.76546,3.5,9.01981,3.60536,9.20735,3.79289L11.9145,6.5 18.5002,6.5C19.2959,6.5 20.059,6.81607 20.6216,7.37868 21.1842,7.94129 21.5002,8.70435 21.5002,9.5L21.5002,10.7682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Grid>
<Grid>
<StackPanel Orientation="Horizontal">
<Image Margin="0,0,8,0" Height="32" Width="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.87868,2.87868C5.44129,2.31607,6.20435,2,7,2L14,2C14.2652,2,14.5196,2.10536,14.7071,2.29289L19.7071,7.29289C19.8946,7.48043,20,7.73478,20,8L20,19C20,19.7957 19.6839,20.5587 19.1213,21.1213 18.5587,21.6839 17.7957,22 17,22L7,22C6.20435,22 5.44129,21.6839 4.87868,21.1213 4.31607,20.5587 4,19.7957 4,19L4,5C4,4.20435,4.31607,3.44129,4.87868,2.87868z M13.5858,8.41421C13.9609,8.78929,14.4696,9,15,9L18,9 18,19C18,19.2652 17.8946,19.5196 17.7071,19.7071 17.5196,19.8946 17.2652,20 17,20L7,20C6.73478,20 6.48043,19.8946 6.29289,19.7071 6.10536,19.5196 6,19.2652 6,19L6,5C6,4.73478 6.10536,4.48043 6.29289,4.29289 6.48043,4.10536 6.73478,4 7,4L13,4 13,7C13,7.53043,13.2107,8.03914,13.5858,8.41421z M16.5858,7L15,7 15,5.41421 16.5858,7z M14,9.58594C13.3597,9.58594,12.7456,9.84029,12.2929,10.293L7.29289,15.293C7.10536,15.4806,7,15.7349,7,16.0002L7,18.0002C7,18.5524,7.44772,19.0002,8,19.0002L10,19.0002C10.2652,19.0002,10.5196,18.8948,10.7071,18.7073L15.7071,13.7073C16.1599,13.2545 16.4142,12.6404 16.4142,12.0002 16.4142,11.3599 16.1599,10.7458 15.7071,10.293 15.2544,9.84029 14.6403,9.58594 14,9.58594z M13.7071,11.7073C13.7848,11.6296 13.8901,11.5859 14,11.5859 14.1099,11.5859 14.2152,11.6296 14.2929,11.7073 14.3706,11.7849 14.4142,11.8903 14.4142,12.0002 14.4142,12.11 14.3706,12.2154 14.2929,12.293L9.58579,17.0002 9,17.0002 9,16.4144 13.7071,11.7073z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical">
<TextBlock FontSize="16" FontWeight="Bold">导出的板书文件</TextBlock>
<TextBlock Name="StorageExportedInkDescription" FontSize="14" Foreground="#a1a1aa" Margin="0,2,0,0">1%占用34.1MB的空间</TextBlock>
</StackPanel>
</StackPanel>
<Border Name="StorageJumpToFolderBtn3" VerticalAlignment="Center" HorizontalAlignment="Right" Width="38" Height="38" CornerRadius="19">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.50024,5.5C4.23503,5.5 3.98067,5.60536 3.79314,5.79289 3.6056,5.98043 3.50024,6.23478 3.50024,6.5L3.50024,17.5C3.50024,17.7652 3.6056,18.0196 3.79314,18.2071 3.82261,18.2366 3.85373,18.264 3.88628,18.2893L6.32087,11.798 6.32087,11.798C6.46375,11.4169 6.71956,11.0883 7.05401,10.8564 7.38851,10.6245 7.78582,10.5002 8.19287,10.5L19.5002,10.5 19.5002,9.5C19.5002,9.23478 19.3949,8.98043 19.2073,8.79289 19.0198,8.60536 18.7655,8.5 18.5002,8.5L11.5002,8.5C11.235,8.5,10.9807,8.39464,10.7931,8.20711L8.08603,5.5 4.50024,5.5z M20.4995,12.5L8.19362,12.5 5.94331,18.5 18.526,18.5 18.526,18.5C18.7585,18.4999 18.984,18.4187 19.1632,18.2705 19.3424,18.1222 19.4644,17.916 19.508,17.6875L20.4995,12.5z M21.5002,10.7682C21.699,10.883 21.8769,11.0315 22.0259,11.2073 22.2135,11.4288 22.3507,11.6885 22.4278,11.9684 22.505,12.2483 22.5203,12.5416 22.4727,12.828L22.4685,12.8517 21.4725,18.0625C21.3417,18.748 20.9759,19.3665 20.4382,19.8114 19.9004,20.2563 19.2244,20.4998 18.5265,20.5L4.50024,20.5C3.70459,20.5 2.94153,20.1839 2.37892,19.6213 1.81631,19.0587 1.50024,18.2956 1.50024,17.5L1.50024,6.5C1.50024,5.70435 1.81631,4.94129 2.37892,4.37868 2.94153,3.81607 3.70459,3.5 4.50024,3.5L8.50024,3.5C8.76546,3.5,9.01981,3.60536,9.20735,3.79289L11.9145,6.5 18.5002,6.5C19.2959,6.5 20.059,6.81607 20.6216,7.37868 21.1842,7.94129 21.5002,8.70435 21.5002,9.5L21.5002,10.7682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Grid>
<Grid>
<StackPanel Orientation="Horizontal">
<Image Margin="0,0,8,0" Height="32" Width="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M7,2C6.20435,2 5.44129,2.31607 4.87868,2.87868 4.31607,3.44129 4,4.20435 4,5L4,19C4,19.7957 4.31607,20.5587 4.87868,21.1213 5.44129,21.6839 6.20435,22 7,22L17,22C17.7957,22 18.5587,21.6839 19.1213,21.1213 19.6839,20.5587 20,19.7957 20,19L20,8C20,7.73478,19.8946,7.48043,19.7071,7.29289L14.7071,2.29289C14.5196,2.10536,14.2652,2,14,2L7,2z M15,9C14.4696,9 13.9609,8.78929 13.5858,8.41421 13.2107,8.03914 13,7.53043 13,7L13,4 7,4C6.73478,4 6.48043,4.10536 6.29289,4.29289 6.10536,4.48043 6,4.73478 6,5L6,19C6,19.2652 6.10536,19.5196 6.29289,19.7071 6.48043,19.8946 6.73478,20 7,20L17,20C17.2652,20 17.5196,19.8946 17.7071,19.7071 17.8946,19.5196 18,19.2652 18,19L18,9 15,9z M15,7L16.5858,7 15,5.41421 15,7z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical">
<TextBlock FontSize="16" FontWeight="Bold">缓存文件</TextBlock>
<TextBlock Name="StorageCachesDescription" FontSize="14" Foreground="#a1a1aa" Margin="0,2,0,0">0%</TextBlock>
</StackPanel>
</StackPanel>
<Border Name="StorageJumpToFolderBtn4" VerticalAlignment="Center" HorizontalAlignment="Right" Width="38" Height="38" CornerRadius="19">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.50024,5.5C4.23503,5.5 3.98067,5.60536 3.79314,5.79289 3.6056,5.98043 3.50024,6.23478 3.50024,6.5L3.50024,17.5C3.50024,17.7652 3.6056,18.0196 3.79314,18.2071 3.82261,18.2366 3.85373,18.264 3.88628,18.2893L6.32087,11.798 6.32087,11.798C6.46375,11.4169 6.71956,11.0883 7.05401,10.8564 7.38851,10.6245 7.78582,10.5002 8.19287,10.5L19.5002,10.5 19.5002,9.5C19.5002,9.23478 19.3949,8.98043 19.2073,8.79289 19.0198,8.60536 18.7655,8.5 18.5002,8.5L11.5002,8.5C11.235,8.5,10.9807,8.39464,10.7931,8.20711L8.08603,5.5 4.50024,5.5z M20.4995,12.5L8.19362,12.5 5.94331,18.5 18.526,18.5 18.526,18.5C18.7585,18.4999 18.984,18.4187 19.1632,18.2705 19.3424,18.1222 19.4644,17.916 19.508,17.6875L20.4995,12.5z M21.5002,10.7682C21.699,10.883 21.8769,11.0315 22.0259,11.2073 22.2135,11.4288 22.3507,11.6885 22.4278,11.9684 22.505,12.2483 22.5203,12.5416 22.4727,12.828L22.4685,12.8517 21.4725,18.0625C21.3417,18.748 20.9759,19.3665 20.4382,19.8114 19.9004,20.2563 19.2244,20.4998 18.5265,20.5L4.50024,20.5C3.70459,20.5 2.94153,20.1839 2.37892,19.6213 1.81631,19.0587 1.50024,18.2956 1.50024,17.5L1.50024,6.5C1.50024,5.70435 1.81631,4.94129 2.37892,4.37868 2.94153,3.81607 3.70459,3.5 4.50024,3.5L8.50024,3.5C8.76546,3.5,9.01981,3.60536,9.20735,3.79289L11.9145,6.5 18.5002,6.5C19.2959,6.5 20.059,6.81607 20.6216,7.37868 21.1842,7.94129 21.5002,8.70435 21.5002,9.5L21.5002,10.7682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Grid>
<Grid>
<StackPanel Orientation="Horizontal">
<Image Margin="0,0,8,0" Height="32" Width="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.58579,4.58579C4.96086,4.21071,5.46957,4,6,4L18,4C18.5304,4 19.0391,4.21071 19.4142,4.58579 19.7893,4.96086 20,5.46957 20,6L20,13.5856 18.7071,12.2927 18.6934,12.2793C18.0792,11.6883 17.3227,11.3301 16.5,11.3301 15.6773,11.3301 14.9208,11.6883 14.3066,12.2793L14.2929,12.2927 14,12.5856 11.7071,10.2927 11.6934,10.2793C11.0792,9.68828 10.3227,9.33008 9.5,9.33008 8.67726,9.33008 7.92076,9.68828 7.30661,10.2793L7.29289,10.2927 4,13.5856 4,6C4,5.46957,4.21071,4.96086,4.58579,4.58579z M15.4142,13.9998L15.6997,13.7144C16.011,13.4172 16.2882,13.3301 16.5,13.3301 16.7118,13.3301 16.989,13.4172 17.3003,13.7144L20,16.414 20,18C20,18.5304 19.7893,19.0391 19.4142,19.4142 19.0391,19.7893 18.5304,20 18,20L6,20C5.46957,20 4.96086,19.7893 4.58579,19.4142 4.21071,19.0391 4,18.5304 4,18L4,16.414 8.69967,11.7144C9.01097,11.4172 9.28816,11.3301 9.5,11.3301 9.71184,11.3301 9.98903,11.4172 10.3003,11.7144L13.2929,14.7069 15.2929,16.7069C15.6834,17.0975 16.3166,17.0975 16.7071,16.7069 17.0976,16.3164 17.0976,15.6832 16.7071,15.2927L15.4142,13.9998z M22,16.0008L22,18C22,19.0609 21.5786,20.0783 20.8284,20.8284 20.0783,21.5786 19.0609,22 18,22L6,22C4.93913,22 3.92172,21.5786 3.17157,20.8284 2.42143,20.0783 2,19.0609 2,18L2,16 2,15.9997 2,6C2,4.93913 2.42143,3.92172 3.17157,3.17157 3.92172,2.42143 4.93913,2 6,2L18,2C19.0609,2 20.0783,2.42143 20.8284,3.17157 21.5786,3.92172 22,4.93913 22,6L22,15.9988C22,15.9995,22,16.0002,22,16.0008z M15,7C14.4477,7 14,7.44772 14,8 14,8.55228 14.4477,9 15,9L15.01,9C15.5623,9 16.01,8.55228 16.01,8 16.01,7.44772 15.5623,7 15.01,7L15,7z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical">
<TextBlock FontSize="16" FontWeight="Bold">自动保存的截图文件</TextBlock>
<TextBlock Name="StorageAutoSavedSnapshotDescription" FontSize="14" Foreground="#a1a1aa" Margin="0,2,0,0">0%</TextBlock>
</StackPanel>
</StackPanel>
<Border Name="StorageJumpToFolderBtn5" VerticalAlignment="Center" HorizontalAlignment="Right" Width="38" Height="38" CornerRadius="19">
<Image Width="24" Height="24">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M4.50024,5.5C4.23503,5.5 3.98067,5.60536 3.79314,5.79289 3.6056,5.98043 3.50024,6.23478 3.50024,6.5L3.50024,17.5C3.50024,17.7652 3.6056,18.0196 3.79314,18.2071 3.82261,18.2366 3.85373,18.264 3.88628,18.2893L6.32087,11.798 6.32087,11.798C6.46375,11.4169 6.71956,11.0883 7.05401,10.8564 7.38851,10.6245 7.78582,10.5002 8.19287,10.5L19.5002,10.5 19.5002,9.5C19.5002,9.23478 19.3949,8.98043 19.2073,8.79289 19.0198,8.60536 18.7655,8.5 18.5002,8.5L11.5002,8.5C11.235,8.5,10.9807,8.39464,10.7931,8.20711L8.08603,5.5 4.50024,5.5z M20.4995,12.5L8.19362,12.5 5.94331,18.5 18.526,18.5 18.526,18.5C18.7585,18.4999 18.984,18.4187 19.1632,18.2705 19.3424,18.1222 19.4644,17.916 19.508,17.6875L20.4995,12.5z M21.5002,10.7682C21.699,10.883 21.8769,11.0315 22.0259,11.2073 22.2135,11.4288 22.3507,11.6885 22.4278,11.9684 22.505,12.2483 22.5203,12.5416 22.4727,12.828L22.4685,12.8517 21.4725,18.0625C21.3417,18.748 20.9759,19.3665 20.4382,19.8114 19.9004,20.2563 19.2244,20.4998 18.5265,20.5L4.50024,20.5C3.70459,20.5 2.94153,20.1839 2.37892,19.6213 1.81631,19.0587 1.50024,18.2956 1.50024,17.5L1.50024,6.5C1.50024,5.70435 1.81631,4.94129 2.37892,4.37868 2.94153,3.81607 3.70459,3.5 4.50024,3.5L8.50024,3.5C8.76546,3.5,9.01981,3.60536,9.20735,3.79289L11.9145,6.5 18.5002,6.5C19.2959,6.5 20.059,6.81607 20.6216,7.37868 21.1842,7.94129 21.5002,8.70435 21.5002,9.5L21.5002,10.7682z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Grid>
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="6">
<Button Content="清理缓存文件" Name="ClearCacheFilesButton" Click="ClearCacheFilesButton_Clicked" />
<Button Content="清理自动保存的截图" Name="ClearAutoSavedSnapshotButton" Click="ClearAutoSavedSnapshotButton_Clicked" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="自动清理" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="定期自动删除超过保存时间的墨迹、截图文件"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoDelSavedFiles" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchAutoDelSavedFiles_Toggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 请注意如果开启自动删除功能,将会删除自动保存目录下所有后缀名为 .icstk、.iccink 和 .png 的文件!手动保存不受影响!"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="保存时长" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxAutoDelSavedFilesDaysThreshold"
FontFamily="Microsoft YaHei UI"
SelectedIndex="4"
SelectionChanged="ComboBoxAutoDelSavedFilesDaysThreshold_SelectionChanged">
<ComboBoxItem Content="1" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="3" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="5" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="7" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="15" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="30" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="60" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="100" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="365" FontFamily="Microsoft YaHei UI" />
</ComboBox>
<TextBlock Foreground="#fafafa" Text="天" VerticalAlignment="Center"
FontSize="14" Margin="8,0,0,0" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="限制自动保存的墨迹数量"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchLimitAutoSaveAmount" IsOn="True"
FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchLimitAutoSaveAmount_Toggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="最多保存" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ComboBox Name="ComboBoxLimitAutoSaveAmount"
FontFamily="Microsoft YaHei UI"
SelectedIndex="3"
SelectionChanged="ComboBoxLimitAutoSaveAmount_SelectionChanged">
<ComboBoxItem Content="10" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="25" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="30" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="50" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="100" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="150" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="200" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="500" FontFamily="Microsoft YaHei UI" />
<ComboBoxItem Content="999" FontFamily="Microsoft YaHei UI" />
</ComboBox>
<TextBlock Foreground="#fafafa" Text="份墨迹" VerticalAlignment="Center"
FontSize="14" Margin="8,0,0,0" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsSnapshotGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Screenshot" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="截图" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="使用MagnificationAPI截图"
VerticalAlignment="Center" FontSize="14" Margin="0,0,6,0" />
<Border Height="20" CornerRadius="3" Background="#7f1d1d" Margin="0,0,12,0"
Padding="4,0">
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="3"
VerticalAlignment="Center">
<Image Width="15" Height="15" VerticalAlignment="Center">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#fca5a5"
Geometry="F1 M24,24z M0,0z M20.1758,20.0951L15.1058,9.97512C15.0358,9.83512,14.9958,9.68512,14.9958,9.52512L14.9958,2.99512 15.4958,2.99512C16.0458,2.99512 16.4958,2.54512 16.4958,1.99512 16.4958,1.44512 16.0458,0.995117 15.4958,0.995117L8.49582,0.995117C7.94582,0.995117 7.49582,1.44512 7.49582,1.99512 7.49582,2.54512 7.94582,2.99512 8.49582,2.99512L8.99582,2.99512 8.99582,9.52512C8.99582,9.67512,8.95582,9.83512,8.89582,9.97512L3.82582,20.0951C3.67582,20.4051 3.59582,20.7451 3.61582,21.0851 3.62582,21.4251 3.73582,21.7651 3.91582,22.0551 4.09582,22.3451 4.34582,22.5851 4.64582,22.7551 4.94582,22.9151 5.27582,23.0051 5.60582,23.0051L18.3758,23.0051C18.7558,23.0051 19.0558,22.9251 19.3558,22.7551 19.6558,22.5851 19.9058,22.3451 20.0858,22.0551 20.2658,21.7651 20.3658,21.4351 20.3858,21.0851 20.3958,20.7451 20.3258,20.4051 20.1758,20.1051L20.1758,20.0951z M10.6858,10.8651C10.8958,10.4451,11.0058,9.98512,11.0058,9.52512L11.0058,2.99512 13.0058,2.99512 13.0058,9.52512C13.0058,9.98512,13.1158,10.4551,13.3258,10.8651L15.3858,14.9951 8.62582,14.9951 10.6958,10.8651 10.6858,10.8651z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<TextBlock Foreground="#fca5a5" Text="实验性选项" FontSize="12"
VerticalAlignment="Center">
</TextBlock>
</ui:SimpleStackPanel>
</Border>
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchScreenshotUsingMagnificationAPI"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchScreenshotUsingMagnificationAPI_OnToggled" />
</ui:SimpleStackPanel>
<TextBlock Text="# 使用 Magnification API 和弃用的函数 MagSetImageScalingCallback 实现过滤ICC窗口截图。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:InfoBar
IsOpen="True"
IsClosable="False"
Severity="Warning"
Title="该功能为高度实验性选项"
Message="该功能使用的 MagSetImageScalingCallback 函数在 Win7 及更高版本中已弃用,经测试,只有 Win8、Win8.1、Win10 系统可以使用该功能Win11已经失效。该功能极度不稳定可能会导致截屏时黑屏或系统崩溃请按需开启。" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="截图后以 .png 格式复制到剪贴板"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchCopyScreenshotToClipboard"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchCopyScreenshotToClipboard_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="截图时隐藏ICC主窗口"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchHideMainWinWhenScreenshot"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchHideMainWinWhenScreenshot_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="截图时附加墨迹到截图文件上"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAttachInkWhenScreenshot"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchAttachInkWhenScreenshot_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="窗口截图只截取最大化窗口"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchOnlySnapshotMaximizeWindow"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold" Toggled="ToggleSwitchOnlySnapshotMaximizeWindow_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" HorizontalAlignment="Left" Spacing="8">
<TextBlock Foreground="#fafafa" Text="截图文件文件名" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<ui:SimpleStackPanel Orientation="Horizontal" Spacing="10">
<TextBox ui:TextBoxHelper.IsDeleteButtonVisible="False" Width="320" x:Name="ScreenshotFileName" Text='Screenshot-[YYYY]-[MM]-[DD]-[HH]-[mm]-[ss].png'
TextWrapping="NoWrap" AcceptsTab="False" AcceptsReturn="False"
TextChanged="ScreenshotFileName_TextChanged" />
<Button Name="ScreenshotFileNameResetButton" Content="重置" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Vertical" Spacing="2">
<TextBlock Text="# 模板语法请参考下面可用的语法:" TextWrapping="Wrap" Foreground="#a1a1aa" />
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Column="0" Grid.Row="0" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[YYYY] - 日期年份" />
<TextBlock Grid.Column="1" Grid.Row="0" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[MM] - 日期月份" />
<TextBlock Grid.Column="2" Grid.Row="0" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[DD] - 日期号数" />
<TextBlock Grid.Column="0" Grid.Row="1" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[HH] - 日期小时数" />
<TextBlock Grid.Column="1" Grid.Row="1" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[mm] - 日期分钟数" />
<TextBlock Grid.Column="2" Grid.Row="1" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[ss] - 日期秒数" />
<TextBlock Grid.Column="0" Grid.Row="2" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[width] - 图片宽度" />
<TextBlock Grid.Column="1" Grid.Row="2" TextWrapping="Wrap" Foreground="#a1a1aa" Text="[height] - 图片高度" />
</Grid>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsRandWindowGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Lucky Random" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="随机点名" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<TextBlock Text="# 随机点名名单存放在 ICC 存储位置下的 LuckyRandom 目录下。支持多名单加载和切换文件格式为txt文件名必须以 .luckyrand.list.txt 结尾,否则不会识别!"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="为 ICC 启用机器学习以提升渲染性能"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchRandWindowSpecialConfig"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示切换随机点名名单的按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchDisplayRandWindowNamesInputBtn"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示点名历史记录"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchDisplayRandWindowHistory"
IsOn="True" FontFamily="Microsoft YaHei UI"
FontWeight="Bold"
Toggled="ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled" />
</ui:SimpleStackPanel>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0"
Stroke="#3f3f46" StrokeThickness="1" Margin="0,4,0,4" />
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="单次抽人窗口关闭延迟" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="RandWindowOnceCloseLatencySlider" Minimum="0.5"
Maximum="8" Width="168" FontFamily="Microsoft YaHei UI"
FontSize="20" IsSnapToTickEnabled="True" Value="2.5"
TickFrequency="0.1"
ValueChanged="RandWindowOnceCloseLatencySlider_ValueChanged"
TickPlacement="None" AutoToolTipPlacement="None" />
<StackPanel Orientation="Horizontal" VerticalAlignment="Center"
Margin="12,0,16,0">
<TextBlock FontSize="14" FontFamily="Consolas"
Text="{Binding ElementName=RandWindowOnceCloseLatencySlider, Path=Value}" />
<TextBlock FontSize="14" FontFamily="Consolas">s</TextBlock>
</StackPanel>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="单次随机点名人数上限" VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" />
<Slider x:Name="RandWindowOnceMaxStudentsSlider" Minimum="0"
Maximum="20" Width="168" FontFamily="Microsoft YaHei UI"
ValueChanged="RandWindowOnceMaxStudentsSlider_ValueChanged"
FontSize="20" IsSnapToTickEnabled="True" Value="10" TickFrequency="1"
TickPlacement="None" AutoToolTipPlacement="None" />
<TextBlock VerticalAlignment="Center" Margin="12,0,16,0" FontSize="14"
FontFamily="Consolas"
Text="{Binding ElementName=RandWindowOnceMaxStudentsSlider, Path=Value, Converter={StaticResource IntNumberToString}}" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsDonationGroupBox">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="Donation" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="赞助" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="6">
<TextBlock
Text="# InkCanvasForClass 项目非常需要您的帮助,您的捐款是我们继续开发的动力,同时您也可以成为 Golden Sponsor。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Image Margin="-12,-4,-12,00" Source="./Resources/qrcodes.png" />
</ui:SimpleStackPanel>
</GroupBox>
<GroupBox Name="SettingsAboutGroupBox" Margin="0,0,0,100">
<GroupBox.Header>
<Canvas Height="56">
<TextBlock Text="About" Foreground="#fafafa" Opacity="0.1"
FontSize="20" Canvas.Top="30" Canvas.Left="16" />
<TextBlock Margin="0,12,0,0" Text="关于" FontWeight="Bold" Foreground="#fafafa"
FontSize="26" Canvas.Top="0" />
</Canvas>
</GroupBox.Header>
<ui:SimpleStackPanel Spacing="12">
<ui:SimpleStackPanel Orientation="Horizontal">
<TextBlock FontSize="18" FontWeight="Bold" Text="Release Version" />
<TextBlock FontSize="18" FontWeight="Bold" FontFamily="Consolas"
Text="6.0.0" />
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal">
<TextBlock FontSize="18" FontWeight="Bold" Text="Bundle Version" />
<TextBlock x:Name="AppVersionTextBlock" FontSize="18" FontWeight="Bold"
Text="5.X.X.X" />
</ui:SimpleStackPanel>
<Image Name="CustomCopyrightBanner" />
<TextBlock
Text="# 使用和分发本软件前,请您应当且务必知晓相关开源协议,且您应当知晓本软件基于 https://github.com/WXRIW/Ink-Canvas 修改而成。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<TextBlock
Text="# 别再基于ICC改了ICA本身就是依托构思经过Dubi906w的屎上雕花变得更是依托大芬。有能力建议自己重写更好的。"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Border BorderBrush="#a1a1aa" BorderThickness="1" CornerRadius="8"
Background="#18181b">
<ui:SimpleStackPanel Orientation="Vertical" Margin="8">
<ui:SimpleStackPanel Orientation="Horizontal">
<Image Width="32" Height="32" VerticalAlignment="Top">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White"
Geometry="F0 M24,24z M0,0z M12.875,3C12.875,2.51675 12.4832,2.125 12,2.125 11.5168,2.125 11.125,2.51675 11.125,3L11.125,4.25876 5.86249,5.13585C5.84299,5.13895 5.82367,5.1427 5.80454,5.14708 5.62042,5.1891 5.46195,5.28735 5.34446,5.4204 5.31167,5.45747 5.28185,5.49755 5.25544,5.54036 5.23979,5.56568 5.22542,5.59181 5.2124,5.61865L2.21738,11.6087C2.15663,11.7302 2.125,11.8642 2.125,12 2.125,13.0277 2.53326,14.0133 3.25996,14.74 3.98667,15.4667 4.97229,15.875 6,15.875 7.02771,15.875 8.01334,15.4667 8.74004,14.74 9.46674,14.0133 9.875,13.0277 9.875,12 9.875,11.8642 9.84337,11.7302 9.78262,11.6087L7.31244,6.66833 11.125,6.0329 11.125,19.125 7,19.125C6.51675,19.125 6.125,19.5168 6.125,20 6.125,20.4832 6.51675,20.875 7,20.875L17,20.875C17.4832,20.875 17.875,20.4832 17.875,20 17.875,19.5168 17.4832,19.125 17,19.125L12.875,19.125 12.875,6.0329 16.6876,6.66833 14.2174,11.6087C14.1566,11.7302 14.125,11.8642 14.125,12 14.125,13.0277 14.5333,14.0133 15.26,14.74 15.9867,15.4667 16.9723,15.875 18,15.875 19.0277,15.875 20.0133,15.4667 20.74,14.74 21.4667,14.0133 21.875,13.0277 21.875,12 21.875,11.8642 21.8434,11.7302 21.7826,11.6087L18.7876,5.61864C18.7746,5.5918 18.7602,5.56567 18.7446,5.54036 18.7182,5.49755 18.6883,5.45747 18.6555,5.4204 18.538,5.28735 18.3796,5.1891 18.1955,5.14708 18.1763,5.1427 18.157,5.13895 18.1375,5.13585L12.875,4.25876 12.875,3z M3.88347,12.1896C3.92772,12.6837 4.14382,13.149 4.4974,13.5026 4.89591,13.9011 5.43641,14.125 6,14.125 6.56359,14.125 7.10409,13.9011 7.5026,13.5026 7.85618,13.149 8.07228,12.6837 8.11653,12.1896L6,7.95656 3.88347,12.1896z M16.4974,13.5026C16.1438,13.149,15.9277,12.6837,15.8835,12.1896L18,7.95656 20.1165,12.1896C20.0723,12.6837 19.8562,13.149 19.5026,13.5026 19.1041,13.9011 18.5636,14.125 18,14.125 17.4364,14.125 16.8959,13.9011 16.4974,13.5026z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<StackPanel Orientation="Vertical" Margin="4,0,0,0">
<TextBlock
Text="本软件和ICAInk Canvas均基于许可证开源" Margin="0,0,0,-1"
TextWrapping="Wrap" Foreground="#a1a1aa" FontWeight="Bold" />
<TextBlock
Text="GNU General Public License v3.0" FontSize="20"
TextWrapping="Wrap" Foreground="White" />
</StackPanel>
</ui:SimpleStackPanel>
<TextBlock
Text="本强许可协议的许可条件是,在相同许可协议下,提供许可作品的完整源代码和修改,包括使用许可作品的大型作品。版权和许可声明必须保留。贡献者明确授予专利权。"
Margin="0,2,0,1" TextWrapping="Wrap" Foreground="#a1a1aa" FontSize="11" />
</ui:SimpleStackPanel>
</Border>
<TextBlock FontSize="18" FontWeight="Bold" Margin="0,0,0,4" Text="开发者:" />
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<ui:SimpleStackPanel Grid.Column="0" Orientation="Vertical">
<Image Source="/Resources/DeveloperAvatars/dubi906w.jpg"
VerticalAlignment="Center" HorizontalAlignment="Center"
RenderOptions.BitmapScalingMode="HighQuality" Width="64"
Margin="0,0,0,6" Height="64">
<Image.Clip>
<EllipseGeometry Center="32,32" RadiusX="32" RadiusY="32" />
</Image.Clip>
</Image>
<TextBlock Margin="0,0,0,2" VerticalAlignment="Center"
HorizontalAlignment="Center" FontSize="18" Foreground="#fde047"
FontWeight="Bold">
Dubi906w
</TextBlock>
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"
FontSize="12" Foreground="White">
InkCanvasForClass
</TextBlock>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Grid.Column="1" Orientation="Vertical">
<Image Source="/Resources/DeveloperAvatars/ChangSakura.png"
VerticalAlignment="Center" HorizontalAlignment="Center"
RenderOptions.BitmapScalingMode="HighQuality" Width="64"
Margin="0,0,0,6" Height="64">
<Image.Clip>
<EllipseGeometry Center="32,32" RadiusX="32" RadiusY="32" />
</Image.Clip>
</Image>
<TextBlock Margin="0,0,0,2" VerticalAlignment="Center"
HorizontalAlignment="Center" FontSize="18" Foreground="#fde047"
FontWeight="Bold">
ChangSakura
</TextBlock>
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"
FontSize="12" Foreground="White">
Ink Canvas Artistry
</TextBlock>
</ui:SimpleStackPanel>
<ui:SimpleStackPanel Grid.Column="2" Orientation="Vertical">
<Image Source="/Resources/DeveloperAvatars/WXRIW.png"
VerticalAlignment="Center" HorizontalAlignment="Center"
RenderOptions.BitmapScalingMode="HighQuality" Width="64"
Margin="0,0,0,6" Height="64">
<Image.Clip>
<EllipseGeometry Center="32,32" RadiusX="32" RadiusY="32" />
</Image.Clip>
</Image>
<TextBlock Margin="0,0,0,2" VerticalAlignment="Center"
HorizontalAlignment="Center" FontSize="18" Foreground="#fde047"
FontWeight="Bold">
WXRIW
</TextBlock>
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"
FontSize="12" Foreground="White">
Ink Canvas
</TextBlock>
</ui:SimpleStackPanel>
</Grid>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock FontSize="15">
<Bold>icc! Gitea源:</Bold>
<Hyperlink Click="HyperlinkSourceToICCRepository_Click">
<TextBlock Margin="2,0" Text="gitea:kriastans/InkCanvasForClass"
TextWrapping="Wrap" />
</Hyperlink>
</TextBlock>
<TextBlock FontSize="15">
<Bold>icc! Github源:</Bold>
<Hyperlink Click="HyperlinkSourceToICCGithubRepository_Click">
<TextBlock Margin="2,0" Text="InkCanvas/InkCanvasForClass"
TextWrapping="Wrap" />
</Hyperlink>
</TextBlock>
<TextBlock FontSize="15">
<Bold>ICA 仓库源:</Bold>
<Hyperlink Click="HyperlinkSourceToPresentRepository_Click">
<TextBlock Margin="2,0" Text="InkCanvas/Ink-Canvas-Artistry" TextWrapping="Wrap" />
</Hyperlink>
</TextBlock>
<TextBlock FontSize="15">
<Bold>Ink Canvas 仓库源:</Bold>
<Hyperlink Click="HyperlinkSourceToOringinalRepository_Click">
<TextBlock Margin="2,0" Text="WXRIW/Ink-Canvas" />
</Hyperlink>
</TextBlock>
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock FontSize="18" FontWeight="Bold" Text="感谢下列贡献者和支持者:" />
<TextBlock
Text="# 排名不分先后"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<Image Source="Resources/contributors.png" />
<ui:SimpleStackPanel Spacing="3" Orientation="Vertical">
<TextBlock
Text="© 2024 Dubi906w(Doubx690i/kriastans) 版权所有" FontWeight="Bold"
TextWrapping="Wrap" Foreground="White" />
<TextBlock
Text="ICC的部分元素设计参考来源于© iNKORE! 名下产品 Inkways已经过授权使用最终解释权归 Yoojun Zhou 所有"
TextWrapping="Wrap" Foreground="#a1a1aa" />
<TextBlock
Text="We love Open-Source forever!" FontWeight="Bold"
TextWrapping="Wrap" Foreground="#a1a1aa" />
</ui:SimpleStackPanel>
</ui:SimpleStackPanel>
</GroupBox>
</StackPanel>
</ui:ScrollViewerEx>
<Grid ClipToBounds="True" Margin="50,0,0,0" Height="80" VerticalAlignment="Top">
<Border Background="#18181b" CornerRadius="0" Margin="-1,-1,-1,0">
<ui:SimpleStackPanel Orientation="Horizontal" VerticalAlignment="Center">
<TextBlock Foreground="White" Margin="25,-2,0,0" Text="设置" FontWeight="Bold"
FontSize="32" />
</ui:SimpleStackPanel>
</Border>
<Canvas>
<Image Canvas.Top="12" Canvas.Right="-16" Width="98" Height="98" Opacity="0.4">
<Image.RenderTransform>
<RotateTransform CenterX="49" CenterY="49" />
</Image.RenderTransform>
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V257 H257 V0 H0 Z">
<GeometryDrawing Brush="GhostWhite"
Geometry="F0 M257,257z M0,0z M93.339,256.594L88.2444,215.634C85.4849,214.567 82.8846,213.287 80.4434,211.794 78.0023,210.301 75.6142,208.701 73.2793,206.994L35.3887,222.994 0.363831,162.194 33.1598,137.234C32.9476,135.741,32.8414,134.301,32.8414,132.914L32.8414,124.274C32.8414,122.887,32.9476,121.447,33.1598,119.954L0.363831,94.9941 35.3887,34.1941 73.2793,50.1941C75.6142,48.4874 78.0554,46.8874 80.6026,45.3941 83.1499,43.9007 85.6972,42.6207 88.2444,41.5541L93.339,0.594055 163.389,0.594055 168.483,41.5541C171.243,42.6207 173.843,43.9007 176.284,45.3941 178.725,46.8874 181.113,48.4874 183.448,50.1941L221.339,34.1941 256.364,94.9941 223.568,119.954C223.78,121.447,223.886,122.887,223.886,124.274L223.886,132.914C223.886,134.301,223.674,135.741,223.249,137.234L256.045,162.194 221.021,222.994 183.448,206.994C181.113,208.701 178.672,210.301 176.125,211.794 173.578,213.287 171.031,214.567 168.483,215.634L163.389,256.594 93.339,256.594z M160.523,160.274C151.82,169.021 141.312,173.394 129.001,173.394 116.477,173.394 105.916,169.021 97.3191,160.274 88.722,151.527 84.4235,140.967 84.4235,128.594 84.4235,116.221 88.722,105.661 97.3191,96.9141 105.916,88.1674 116.477,83.7941 129.001,83.7941 141.312,83.7941 151.82,88.1674 160.523,96.9141 169.226,105.661 173.578,116.221 173.578,128.594 173.578,140.967 169.226,151.527 160.523,160.274z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
<Image.Triggers>
<EventTrigger RoutedEvent="Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetProperty="(Image.RenderTransform).(RotateTransform.Angle)"
To="-360" Duration="0:0:3" RepeatBehavior="Forever" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Image.Triggers>
</Image>
</Canvas>
</Grid>
<Grid Controls:Panel.ZIndex="998" Width="50" HorizontalAlignment="Left" Background="#AA09090b">
<ui:SimpleStackPanel Orientation="Vertical" VerticalAlignment="Center" Width="50" Name="SettingsJumpToGroupBoxButtonsPanel">
<Border Name="SettingsStartupJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,4,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M6.63415,3.34528C6.87134,3.21274,7.16167,3.21885,7.39307,3.36126L20.3931,11.3613C20.6149,11.4978 20.75,11.7396 20.75,12 20.75,12.2604 20.6149,12.5022 20.3931,12.6387L7.39307,20.6387C7.16167,20.7811 6.87134,20.7873 6.63415,20.6547 6.39696,20.5222 6.25,20.2717 6.25,20L6.25,4C6.25,3.72829,6.39696,3.47783,6.63415,3.34528z M7.75,5.34217L7.75,18.6578 18.569,12 7.75,5.34217z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsCanvasJumpToGroupBoxButton" MouseDown="SettingsJumpToGroupBox_MouseDown"
BorderBrush="#3b82f6" BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M4.11612,6.11612C4.35054,5.8817,4.66848,5.75,5,5.75L19,5.75C19.3315,5.75 19.6495,5.8817 19.8839,6.11612 20.1183,6.35054 20.25,6.66848 20.25,7L20.25,18C20.25,18.0663 20.2237,18.1299 20.1768,18.1768 20.1299,18.2237 20.0663,18.25 20,18.25 19.5858,18.25 19.25,18.5858 19.25,19 19.25,19.4142 19.5858,19.75 20,19.75 20.4641,19.75 20.9092,19.5656 21.2374,19.2374 21.5656,18.9092 21.75,18.4641 21.75,18L21.75,7C21.75,6.27065 21.4603,5.57118 20.9445,5.05546 20.4288,4.53973 19.7293,4.25 19,4.25L5,4.25C4.27065,4.25 3.57118,4.53973 3.05546,5.05546 2.53973,5.57118 2.25,6.27065 2.25,7L2.25,17C2.25,17.7293 2.53973,18.4288 3.05546,18.9445 3.57118,19.4603 4.27065,19.75 5,19.75L8,19.75C8.41421,19.75 8.75,19.4142 8.75,19 8.75,18.5858 8.41421,18.25 8,18.25L5,18.25C4.66848,18.25 4.35054,18.1183 4.11612,17.8839 3.8817,17.6495 3.75,17.3315 3.75,17L3.75,7C3.75,6.66848,3.8817,6.35054,4.11612,6.11612z M11.8232,16.8232C11.8701,16.7763,11.9337,16.75,12,16.75L16,16.75C16.0663,16.75 16.1299,16.7763 16.1768,16.8232 16.2237,16.8701 16.25,16.9337 16.25,17L16.25,18C16.25,18.0663 16.2237,18.1299 16.1768,18.1768 16.1299,18.2237 16.0663,18.25 16,18.25L12,18.25C11.9337,18.25 11.8701,18.2237 11.8232,18.1768 11.7763,18.1299 11.75,18.0663 11.75,18L11.75,17C11.75,16.9337,11.7763,16.8701,11.8232,16.8232z M12,15.25C11.5359,15.25 11.0908,15.4344 10.7626,15.7626 10.4344,16.0908 10.25,16.5359 10.25,17L10.25,18C10.25,18.4641 10.4344,18.9092 10.7626,19.2374 11.0908,19.5656 11.5359,19.75 12,19.75L16,19.75C16.4641,19.75 16.9092,19.5656 17.2374,19.2374 17.5656,18.9092 17.75,18.4641 17.75,18L17.75,17C17.75,16.5359 17.5656,16.0908 17.2374,15.7626 16.9092,15.4344 16.4641,15.25 16,15.25L12,15.25z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsGestureJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M7.98145,10.6889L7.98145,3.97896C7.98145,3.37896 8.21145,2.80897 8.64145,2.38896 9.49145,1.53896 10.9714,1.53896 11.8214,2.38896 12.2414,2.80897 12.4814,3.37896 12.4814,3.97896L12.4814,6.87304C13.2752,6.60639 14.2109,6.77837 14.8214,7.38896 14.9934,7.56094 15.1352,7.75807 15.2427,7.97211 16.0798,7.5855 17.157,7.72439 17.8214,8.38879 17.9978,8.56516 18.1424,8.76797 18.2509,8.98835 19.0867,8.60643 20.1592,8.74658 20.8214,9.40881 21.2414,9.82881 21.4814,10.3988 21.4814,10.9988L21.4814,15.4988C21.4814,17.2788 20.7614,19.0188 19.5014,20.2688 18.2314,21.5488 16.5314,22.2488 14.7314,22.2488L14.7314,22.2288 12.7314,22.2288 12.6214,22.2288C11.6114,22.1788 10.6214,21.9088 9.73138,21.4288 8.75138,20.8988 7.91138,20.1288 7.29138,19.1988L7.09138,18.8988C6.76138,18.3988 5.68138,16.5088 3.78138,13.1288 3.49138,12.6188 3.41138,12.0188 3.57138,11.4488 3.72138,10.8788 4.08138,10.3988 4.59138,10.0988 5.09138,9.79881 5.68138,9.67881 6.26138,9.74881 6.84138,9.81881 7.38138,10.0888 7.79138,10.4988L7.98145,10.6889z M16.9814,11.0086L16.9814,11.4788C16.9814,11.8888 17.3214,12.2288 17.7314,12.2288 18.1414,12.2288 18.4814,11.8888 18.4814,11.4788L18.4814,10.9889C18.484,10.7926 18.5637,10.6065 18.7014,10.4688 18.9814,10.1888 19.4814,10.1888 19.7614,10.4688 19.9014,10.6088 19.9814,10.7988 19.9814,10.9988L19.9814,15.4988C19.9814,16.8788 19.4214,18.2288 18.4414,19.2088 17.4514,20.1988 16.1314,20.7488 14.7314,20.7488L12.9414,20.7488C12.0714,20.7488 11.2114,20.5288 10.4514,20.1188 9.69138,19.7088 9.04138,19.1088 8.56138,18.3888L8.36138,18.0888C8.06138,17.6188 6.96138,15.7088 5.10138,12.3988 5.00138,12.2288 4.98138,12.0288 5.03138,11.8388 5.08138,11.6488 5.20138,11.4888 5.37138,11.3888 5.58138,11.2588 5.83138,11.2088 6.08138,11.2388 6.32138,11.2688 6.55138,11.3888 6.73138,11.5588L8.20138,13.0288C8.49138,13.3188 8.97138,13.3188 9.26138,13.0288 9.38653,12.9037 9.45767,12.7431 9.4748,12.5778 9.47918,12.5454 9.48145,12.5124 9.48145,12.479L9.48145,3.97896C9.48145,3.77897 9.56145,3.58896 9.70145,3.44896 9.98145,3.16896 10.4814,3.16896 10.7614,3.44896 10.9014,3.58896 10.9814,3.77897 10.9814,3.97896L10.9814,8.97896 10.9814,10.979 10.9814,11.479C10.9814,11.889 11.3214,12.229 11.7314,12.229 12.1414,12.229 12.4814,11.889 12.4814,11.479L12.4814,10.979 12.4814,8.97896C12.4814,8.77897 12.5614,8.58897 12.7014,8.44897 12.9814,8.16897 13.4814,8.16897 13.7614,8.44897 13.9014,8.58897 13.9814,8.77897 13.9814,8.97896L13.9814,9.97879 13.9814,11.479C13.9814,11.889 14.3214,12.229 14.7314,12.229 15.1414,12.229 15.4814,11.889 15.4814,11.479L15.4814,9.97879C15.4814,9.77879 15.5614,9.58879 15.7014,9.44879 15.9814,9.16879 16.4814,9.16879 16.7614,9.44879 16.9014,9.58879 16.9814,9.77879 16.9814,9.97879L16.9814,10.9814 16.9814,10.9988 16.9814,11.0086z M3.27144,5.81876C3.04144,5.81876 2.81144,5.70876 2.66144,5.50876 2.42144,5.17876 2.49144,4.70876 2.82144,4.45876 3.63144,3.86876 4.50144,3.35876 5.42144,2.94876 5.80144,2.77876 6.24144,2.94876 6.41144,3.32875 6.58144,3.70876 6.41144,4.14876 6.03144,4.31876 5.21144,4.68876 4.43144,5.13875 3.71144,5.66876 3.58144,5.76876 3.42144,5.80875 3.27144,5.80875L3.27144,5.81876z M18.0113,5.17885C18.1413,5.25885,18.2713,5.29885,18.4113,5.29885L18.4113,5.28885C18.6613,5.28885 18.9113,5.16885 19.0513,4.93885 19.2713,4.58885 19.1613,4.12885 18.8113,3.90885 17.6013,3.14885 16.3013,2.57885 14.9213,2.20885 14.5113,2.09885 14.1113,2.33885 14.0013,2.73885 13.8913,3.13885 14.1313,3.54885 14.5313,3.65885 15.7613,3.98885 16.9313,4.49885 18.0113,5.17885z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsInkRecognitionJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M15.1306,4.19378C15.5647,4.01395 16.0301,3.92139 16.5,3.92139 16.9699,3.92139 17.4353,4.01395 17.8694,4.19378 18.3036,4.37361 18.698,4.6372 19.0303,4.96948 19.3626,5.30177 19.6262,5.69625 19.806,6.13041 19.9859,6.56457 20.0784,7.02989 20.0784,7.49981 20.0784,7.96974 19.9859,8.43506 19.806,8.86922 19.6262,9.30337 19.3626,9.69786 19.0303,10.0301L18.0403,11.0202 18.0303,11.0303 18.0202,11.0403 8.53033,20.5301C8.38968,20.6708,8.19891,20.7498,8,20.7498L4,20.7498C3.58579,20.7498,3.25,20.414,3.25,19.9998L3.25,15.9998C3.25,15.8009,3.32902,15.6101,3.46967,15.4695L13.9697,4.96948C14.302,4.6372,14.6964,4.37361,15.1306,4.19378z M17.9697,8.96948L17.4999,9.43925 14.5606,6.49991 15.0303,6.03014C15.2233,5.83714 15.4525,5.68405 15.7046,5.5796 15.9568,5.47515 16.2271,5.42139 16.5,5.42139 16.7729,5.42139 17.0432,5.47515 17.2954,5.5796 17.5475,5.68405 17.7767,5.83714 17.9697,6.03014 18.1627,6.22314 18.3158,6.45227 18.4202,6.70443 18.5247,6.9566 18.5784,7.22687 18.5784,7.49981 18.5784,7.77276 18.5247,8.04303 18.4202,8.29519 18.3158,8.54736 18.1627,8.77648 17.9697,8.96948z M4.75,16.3105L13.4999,7.56057 16.4392,10.4999 7.68934,19.2498 4.75,19.2498 4.75,16.3105z M21.5303,17.5303C21.8232,17.2374 21.8232,16.7626 21.5303,16.4697 21.2374,16.1768 20.7626,16.1768 20.4697,16.4697L17,19.9393 15.5303,18.4697C15.2374,18.1768 14.7626,18.1768 14.4697,18.4697 14.1768,18.7626 14.1768,19.2374 14.4697,19.5303L16.4697,21.5303C16.7626,21.8232,17.2374,21.8232,17.5303,21.5303L21.5303,17.5303z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsAppearanceJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M9.43853,3.39157C9.63411,3.53254 9.75,3.75892 9.75,4.00001 9.75,4.59674 9.98705,5.16904 10.409,5.591 10.831,6.01295 11.4033,6.25001 12,6.25001 12.5967,6.25001 13.169,6.01295 13.591,5.591 14.0129,5.16904 14.25,4.59674 14.25,4.00001 14.25,3.75892 14.3659,3.53254 14.5615,3.39157 14.757,3.25061 15.0085,3.21226 15.2372,3.28849L21.2372,5.28849C21.5434,5.39058,21.75,5.67718,21.75,6.00001L21.75,11C21.75,11.4142,21.4142,11.75,21,11.75L18.75,11.75 18.75,19C18.75,19.4641 18.5656,19.9093 18.2374,20.2374 17.9092,20.5656 17.4641,20.75 17,20.75L7,20.75C6.53587,20.75 6.09075,20.5656 5.76256,20.2374 5.43437,19.9093 5.25,19.4641 5.25,19L5.25,11.75 3,11.75C2.58579,11.75,2.25,11.4142,2.25,11L2.25,6.00001C2.25,5.67718,2.45657,5.39058,2.76283,5.28849L8.76283,3.28849C8.99154,3.21226,9.24296,3.25061,9.43853,3.39157z M3.75,6.54058L3.75,10.25 6,10.25C6.41421,10.25,6.75,10.5858,6.75,11L6.75,19C6.75,19.0663 6.77634,19.1299 6.82322,19.1768 6.87011,19.2237 6.93369,19.25 7,19.25L17,19.25C17.0663,19.25 17.1299,19.2237 17.1768,19.1768 17.2237,19.1299 17.25,19.0663 17.25,19L17.25,11C17.25,10.5858,17.5858,10.25,18,10.25L20.25,10.25 20.25,6.54058 15.6154,4.99571C15.4444,5.61643 15.1149,6.1884 14.6517,6.65166 13.9484,7.35492 12.9946,7.75001 12,7.75001 11.0054,7.75001 10.0516,7.35492 9.34835,6.65166 8.8851,6.1884 8.55557,5.61643 8.3846,4.99571L3.75,6.54058z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsPPTJumpToGroupBoxButton" MouseDown="SettingsJumpToGroupBox_MouseDown"
BorderBrush="#3b82f6" BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M12.6955,2.31464C12.8562,2.2432,13.037,2.23053,13.2061,2.27886L20.2061,4.27886C20.5281,4.37085,20.7501,4.66514,20.7501,5L20.7501,18C20.7501,18.3,20.5713,18.5712,20.2955,18.6894L13.2955,21.6894C13.1267,21.7617,12.9372,21.7696,12.7629,21.7115L3.7629,18.7115C3.41393,18.5952 3.20083,18.243 3.25975,17.8799 3.31867,17.5168 3.63223,17.25 4.00007,17.25L12.2501,17.25 12.2501,7.10778 8.75007,8.50778 8.75007,13C8.75007,13.2841,8.58957,13.5438,8.33548,13.6708L4.33548,15.6708C4.10299,15.7871 3.82688,15.7746 3.60577,15.638 3.38466,15.5013 3.25007,15.2599 3.25007,15L3.25007,7C3.25007,6.70361,3.42462,6.43502,3.69546,6.31464L12.6955,2.31464z M13.0558,3.79595L4.75007,7.48741 4.75007,13.7865 7.25007,12.5365 7.25007,8C7.25007,7.69332,7.43678,7.41754,7.72153,7.30364L12.7215,5.30364C12.9526,5.21122 13.2145,5.23943 13.4205,5.37895 13.6266,5.51847 13.7501,5.75113 13.7501,6L13.7501,18C13.7501,18.4142,13.4143,18.75,13.0001,18.75L8.62178,18.75 12.9667,20.1983 19.2501,17.5055 19.2501,5.56573 13.0558,3.79595z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsAdvancedJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M7.8679,3.80724L10.5302,6.46952C10.6708,6.61018,10.7499,6.80094,10.7499,6.99985L10.7499,9.99985C10.7499,10.4141,10.4141,10.7499,9.99985,10.7499L6.99985,10.7499C6.80094,10.7499,6.61018,10.6708,6.46952,10.5302L3.80724,7.8679C3.64358,8.5543 3.61907,9.27047 3.73968,9.97343 3.92327,11.0435 4.43407,12.0303 5.20176,12.798 5.96944,13.5656 6.95625,14.0764 8.02628,14.26 9.09632,14.4436 10.197,14.291 11.1766,13.8231 11.4634,13.6861 11.8054,13.7448 12.0302,13.9695L18.0302,19.9695C18.2874,20.2267 18.6362,20.3712 18.9999,20.3712 19.3636,20.3712 19.7124,20.2267 19.9695,19.9695 20.2267,19.7124 20.3712,19.3636 20.3712,18.9999 20.3712,18.6362 20.2267,18.2874 19.9695,18.0302L13.9695,12.0302C13.7448,11.8054 13.6861,11.4634 13.8231,11.1766 14.291,10.197 14.4436,9.09632 14.26,8.02628 14.0764,6.95625 13.5656,5.96944 12.798,5.20176 12.0303,4.43407 11.0435,3.92327 9.97343,3.73968 9.27047,3.61907 8.5543,3.64358 7.8679,3.80724z M6.17663,2.82308C7.43621,2.22151 8.85132,2.02523 10.2271,2.26128 11.6028,2.49732 12.8716,3.15407 13.8586,4.1411 14.8456,5.12812 15.5024,6.39687 15.7384,7.77263 15.944,8.97097 15.8216,10.1992 15.3891,11.3284L21.0302,16.9695C21.5687,17.508 21.8712,18.2383 21.8712,18.9999 21.8712,19.7614 21.5687,20.4917 21.0302,21.0302 20.4917,21.5687 19.7614,21.8712 18.9999,21.8712 18.2383,21.8712 17.508,21.5687 16.9695,21.0302L11.3284,15.3891C10.1992,15.8216 8.97097,15.944 7.77263,15.7384 6.39687,15.5024 5.12812,14.8456 4.1411,13.8586 3.15407,12.8716 2.49732,11.6028 2.26128,10.2271 2.02523,8.85132 2.22151,7.43621 2.82308,6.17663 2.92801,5.95693 3.13306,5.80183 3.37303,5.76066 3.613,5.71948 3.85802,5.79736 4.03018,5.96952L7.31051,9.24985 9.24985,9.24985 9.24985,7.31051 5.96952,4.03018C5.79736,3.85802 5.71948,3.613 5.76066,3.37303 5.80183,3.13306 5.95693,2.92801 6.17663,2.82308z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsAutomationJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M7.81828,2.27257C8.22012,2.17211,8.62732,2.41643,8.72778,2.81828L9.08572,4.25 14.9146,4.25 15.2726,2.81828C15.373,2.41643 15.7802,2.17211 16.1821,2.27257 16.5839,2.37303 16.8282,2.78023 16.7278,3.18208L16.4608,4.25 18,4.25C18.7293,4.25 19.4288,4.53973 19.9445,5.05546 20.4603,5.57118 20.75,6.27065 20.75,7L20.75,19C20.75,19.7293 20.4603,20.4288 19.9445,20.9445 19.4288,21.4603 18.7293,21.75 18,21.75L6,21.75C5.27065,21.75 4.57118,21.4603 4.05546,20.9445 3.53973,20.4288 3.25,19.7293 3.25,19L3.25,7C3.25,6.27065 3.53973,5.57118 4.05546,5.05546 4.57118,4.53973 5.27065,4.25 6,4.25L7.53955,4.25 7.27257,3.18208C7.17211,2.78023,7.41643,2.37303,7.81828,2.27257z M14.5396,5.75L14.2726,6.81828C14.1721,7.22012 14.4164,7.62732 14.8183,7.72778 15.2201,7.82825 15.6273,7.58393 15.7278,7.18208L16.0858,5.75 18,5.75C18.3315,5.75 18.6495,5.8817 18.8839,6.11612 19.1183,6.35054 19.25,6.66848 19.25,7L19.25,19C19.25,19.3315 19.1183,19.6495 18.8839,19.8839 18.6495,20.1183 18.3315,20.25 18,20.25L6,20.25C5.66848,20.25 5.35054,20.1183 5.11612,19.8839 4.8817,19.6495 4.75,19.3315 4.75,19L4.75,7C4.75,6.66848 4.8817,6.35054 5.11612,6.11612 5.35054,5.8817 5.66848,5.75 6,5.75L7.91455,5.75 8.27257,7.18208C8.37303,7.58393 8.78023,7.82825 9.18208,7.72778 9.58393,7.62732 9.82825,7.22012 9.72778,6.81828L9.46072,5.75 14.5396,5.75z M9.41625,15.3761C9.07166,15.1463 8.60598,15.2393 8.37614,15.5839 8.14629,15.9285 8.23932,16.3942 8.58391,16.624 9.6821,17.3565 10.8245,17.7501 12.0001,17.7501 13.1757,17.7501 14.3181,17.3565 15.4162,16.624 15.7608,16.3942 15.8539,15.9285 15.624,15.5839 15.3942,15.2393 14.9285,15.1463 14.5839,15.3761 13.6821,15.9776 12.8245,16.2501 12.0001,16.2501 11.1757,16.2501 10.3181,15.9776 9.41625,15.3761z M9,10.25C9.41421,10.25,9.75,10.5858,9.75,11L9.75,12C9.75,12.4142 9.41421,12.75 9,12.75 8.58579,12.75 8.25,12.4142 8.25,12L8.25,11C8.25,10.5858,8.58579,10.25,9,10.25z M15.75,11C15.75,10.5858 15.4142,10.25 15,10.25 14.5858,10.25 14.25,10.5858 14.25,11L14.25,12C14.25,12.4142 14.5858,12.75 15,12.75 15.4142,12.75 15.75,12.4142 15.75,12L15.75,11z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsStorageJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF" Geometry="F0 M24,24z M0,0z M6.0798,3.17643C7.68668,2.57385 9.81582,2.25 12,2.25 14.1842,2.25 16.3133,2.57385 17.9202,3.17643 18.7225,3.47728 19.4021,3.85027 19.8944,4.29596 20.3864,4.7414 20.75,5.31783 20.75,6L20.75,12 20.75,18C20.75,18.6822 20.3864,19.2586 19.8944,19.704 19.4021,20.1497 18.7225,20.5227 17.9202,20.8236 16.3133,21.4261 14.1842,21.75 12,21.75 9.81582,21.75 7.68668,21.4261 6.0798,20.8236 5.27753,20.5227 4.5979,20.1497 4.10561,19.704 3.61358,19.2586 3.25,18.6822 3.25,18L3.25,12 3.25,6C3.25,5.31783 3.61358,4.7414 4.10561,4.29596 4.5979,3.85027 5.27753,3.47728 6.0798,3.17643z M4.75,14.1841L4.75,18C4.75,18.1135 4.80785,18.3164 5.11232,18.5921 5.41653,18.8675 5.90847,19.1573 6.60649,19.4191 8.00019,19.9417 9.94071,20.25 12,20.25 14.0593,20.25 15.9998,19.9417 17.3935,19.4191 18.0915,19.1573 18.5835,18.8675 18.8877,18.5921 19.1922,18.3164 19.25,18.1135 19.25,18L19.25,14.1841C18.8636,14.4248 18.4152,14.6379 17.9202,14.8236 16.3133,15.4261 14.1842,15.75 12,15.75 9.81582,15.75 7.68668,15.4261 6.0798,14.8236 5.58478,14.6379 5.13644,14.4248 4.75,14.1841z M19.25,12L19.25,8.18414C18.8636,8.42484 18.4152,8.63793 17.9202,8.82357 16.3133,9.42615 14.1842,9.75 12,9.75 9.81582,9.75 7.68668,9.42615 6.0798,8.82357 5.58478,8.63793 5.13644,8.42484 4.75,8.18414L4.75,12C4.75,12.1135 4.80785,12.3164 5.11232,12.5921 5.41653,12.8675 5.90847,13.1573 6.60649,13.4191 8.00019,13.9417 9.94071,14.25 12,14.25 14.0593,14.25 15.9998,13.9417 17.3935,13.4191 18.0915,13.1573 18.5835,12.8675 18.8877,12.5921 19.1922,12.3164 19.25,12.1135 19.25,12z M5.11232,6.59206C4.80785,6.3164 4.75,6.11348 4.75,6 4.75,5.88652 4.80784,5.6836 5.11232,5.40794 5.41653,5.13253 5.90847,4.84268 6.60649,4.58093 8.00019,4.05829 9.94071,3.75 12,3.75 14.0593,3.75 15.9998,4.05829 17.3935,4.58093 18.0915,4.84268 18.5835,5.13253 18.8877,5.40794 19.1922,5.6836 19.25,5.88652 19.25,6 19.25,6.11348 19.1922,6.3164 18.8877,6.59206 18.5835,6.86747 18.0915,7.15732 17.3935,7.41907 15.9998,7.94171 14.0593,8.25 12,8.25 9.94071,8.25 8.00019,7.94171 6.60649,7.41907 5.90847,7.15732 5.41653,6.86747 5.11232,6.59206z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsSnapshotJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF" Geometry="F0 M24,24z M0,0z M6,4.75C5.66848,4.75 5.35054,4.8817 5.11612,5.11612 4.8817,5.35054 4.75,5.66848 4.75,6L4.75,8C4.75,8.41421 4.41421,8.75 4,8.75 3.58579,8.75 3.25,8.41421 3.25,8L3.25,6C3.25,5.27065 3.53973,4.57118 4.05546,4.05546 4.57118,3.53973 5.27065,3.25 6,3.25L8,3.25C8.41421,3.25 8.75,3.58579 8.75,4 8.75,4.41421 8.41421,4.75 8,4.75L6,4.75z M14.25,8C14.25,7.58579,14.5858,7.25,15,7.25L15.01,7.25C15.4242,7.25 15.76,7.58579 15.76,8 15.76,8.41421 15.4242,8.75 15.01,8.75L15,8.75C14.5858,8.75,14.25,8.41421,14.25,8z M9.5,10.751C9.43956,10.751 9.3797,10.7629 9.32387,10.786 9.26803,10.8092 9.2173,10.8431 9.17458,10.8859L9.17433,10.8861 6.53033,13.5301C6.23744,13.823 5.76256,13.823 5.46967,13.5301 5.17678,13.2372 5.17678,12.7623 5.46967,12.4694L8.11342,9.8257 8.11354,9.82557 8.11367,9.82545C8.29564,9.64337 8.51171,9.49892 8.74952,9.40035 8.98743,9.30173 9.24245,9.25098 9.5,9.25098 9.75755,9.25098 10.0126,9.30173 10.2505,9.40035 10.4883,9.49892 10.7044,9.64337 10.8863,9.82545L10.8865,9.82557 10.8866,9.8257 13,11.9391 14.1134,10.8257 14.1135,10.8256 14.1137,10.8254C14.2956,10.6434 14.5117,10.4989 14.7495,10.4003 14.9874,10.3017 15.2425,10.251 15.5,10.251 15.7575,10.251 16.0126,10.3017 16.2505,10.4003 16.4883,10.4989 16.7044,10.6434 16.8863,10.8254L16.8866,10.8257 18.5303,12.4694C18.8232,12.7623 18.8232,13.2372 18.5303,13.5301 18.2374,13.823 17.7626,13.823 17.4697,13.5301L15.8257,11.8861 15.8254,11.8859C15.7827,11.8431 15.732,11.8092 15.6761,11.786 15.6203,11.7629 15.5604,11.751 15.5,11.751 15.4396,11.751 15.3797,11.7629 15.3239,11.786 15.268,11.8092 15.2173,11.8431 15.1746,11.8859L15.1743,11.8861 14.0607,12.9998 14.5303,13.4694C14.8232,13.7623 14.8232,14.2372 14.5303,14.5301 14.2374,14.823 13.7626,14.823 13.4697,14.5301L12.4697,13.5301 9.82567,10.8861 9.82542,10.8859C9.7827,10.8431 9.73197,10.8092 9.67613,10.786 9.6203,10.7629 9.56044,10.751 9.5,10.751z M4.75,16C4.75,15.5858 4.41421,15.25 4,15.25 3.58579,15.25 3.25,15.5858 3.25,16L3.25,18C3.25,18.7293 3.53973,19.4288 4.05546,19.9445 4.57118,20.4603 5.27065,20.75 6,20.75L8,20.75C8.41421,20.75 8.75,20.4142 8.75,20 8.75,19.5858 8.41421,19.25 8,19.25L6,19.25C5.66848,19.25 5.35054,19.1183 5.11612,18.8839 4.8817,18.6495 4.75,18.3315 4.75,18L4.75,16z M15.25,4C15.25,3.58579,15.5858,3.25,16,3.25L18,3.25C18.7293,3.25 19.4288,3.53973 19.9445,4.05546 20.4603,4.57118 20.75,5.27065 20.75,6L20.75,8C20.75,8.41421 20.4142,8.75 20,8.75 19.5858,8.75 19.25,8.41421 19.25,8L19.25,6C19.25,5.66848 19.1183,5.35054 18.8839,5.11612 18.6495,4.8817 18.3315,4.75 18,4.75L16,4.75C15.5858,4.75,15.25,4.41421,15.25,4z M20.75,16C20.75,15.5858 20.4142,15.25 20,15.25 19.5858,15.25 19.25,15.5858 19.25,16L19.25,18C19.25,18.3315 19.1183,18.6495 18.8839,18.8839 18.6495,19.1183 18.3315,19.25 18,19.25L16,19.25C15.5858,19.25 15.25,19.5858 15.25,20 15.25,20.4142 15.5858,20.75 16,20.75L18,20.75C18.7293,20.75 19.4288,20.4603 19.9445,19.9445 20.4603,19.4288 20.75,18.7293 20.75,18L20.75,16z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsRandWindowJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M18.5303,3.46967C18.2374,3.17678 17.7626,3.17678 17.4697,3.46967 17.1768,3.76256 17.1768,4.23744 17.4697,4.53033L19.1893,6.25 16,6.25C14.475,6.25 13.0125,6.8558 11.9341,7.93414 11.5659,8.30239 11.2527,8.71546 11,9.16052 10.7473,8.71546 10.4341,8.30239 10.0659,7.93414 8.98753,6.8558 7.52499,6.25 6,6.25L3,6.25C2.58579,6.25 2.25,6.58579 2.25,7 2.25,7.41421 2.58579,7.75 3,7.75L6,7.75C7.12717,7.75 8.20817,8.19777 9.0052,8.9948 9.80223,9.79183 10.25,10.8728 10.25,12 10.25,13.1272 9.80223,14.2082 9.0052,15.0052 8.20817,15.8022 7.12717,16.25 6,16.25L3,16.25C2.58579,16.25 2.25,16.5858 2.25,17 2.25,17.4142 2.58579,17.75 3,17.75L6,17.75C7.52499,17.75 8.98753,17.1442 10.0659,16.0659 10.4341,15.6976 10.7473,15.2845 11,14.8395 11.2527,15.2845 11.5659,15.6976 11.9341,16.0659 13.0125,17.1442 14.475,17.75 16,17.75L19.1893,17.75 17.4697,19.4697C17.1768,19.7626 17.1768,20.2374 17.4697,20.5303 17.7626,20.8232 18.2374,20.8232 18.5303,20.5303L21.5303,17.5303C21.6022,17.4584 21.6565,17.3755 21.6931,17.2871 21.7298,17.1987 21.75,17.1017 21.75,17 21.75,16.8081 21.6768,16.6161 21.5303,16.4697L18.5303,13.4697C18.2374,13.1768 17.7626,13.1768 17.4697,13.4697 17.1768,13.7626 17.1768,14.2374 17.4697,14.5303L19.1893,16.25 16,16.25C14.8728,16.25 13.7918,15.8022 12.9948,15.0052 12.1978,14.2082 11.75,13.1272 11.75,12 11.75,10.8728 12.1978,9.79183 12.9948,8.9948 13.7918,8.19777 14.8728,7.75 16,7.75L19.1893,7.75 17.4697,9.46967C17.1768,9.76256 17.1768,10.2374 17.4697,10.5303 17.7626,10.8232 18.2374,10.8232 18.5303,10.5303L21.5303,7.53033C21.6768,7.38388 21.75,7.19194 21.75,7 21.75,6.89831 21.7298,6.80134 21.6931,6.71291 21.6565,6.62445 21.6022,6.54158 21.5303,6.46967L18.5303,3.46967z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsDonationJumpToGroupBoxButton"
MouseDown="SettingsJumpToGroupBox_MouseDown" BorderBrush="#3b82f6"
BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="White" Geometry="F0 M24,24z M0,0z M8.26884,2.99217C9.45176,2.50219 10.7196,2.25 12,2.25 13.2804,2.25 14.5482,2.50219 15.7312,2.99217 16.9141,3.48216 17.9889,4.20034 18.8943,5.10571 19.7997,6.01108 20.5178,7.08591 21.0078,8.26884 21.4978,9.45176 21.75,10.7196 21.75,12 21.75,13.2804 21.4978,14.5482 21.0078,15.7312 20.5178,16.9141 19.7997,17.9889 18.8943,18.8943 17.9889,19.7997 16.9141,20.5178 15.7312,21.0078 14.5482,21.4978 13.2804,21.75 12,21.75 10.7196,21.75 9.45176,21.4978 8.26884,21.0078 7.08591,20.5178 6.01108,19.7997 5.10571,18.8943 4.20034,17.9889 3.48216,16.9141 2.99217,15.7312 2.50219,14.5482 2.25,13.2804 2.25,12 2.25,10.7196 2.50219,9.45176 2.99217,8.26884 3.48216,7.08591 4.20034,6.01108 5.10571,5.10571 6.01108,4.20034 7.08591,3.48216 8.26884,2.99217z M12,3.75C10.9166,3.75 9.8438,3.96339 8.84286,4.37799 7.84193,4.7926 6.93245,5.40029 6.16637,6.16637 5.40029,6.93245 4.79259,7.84193 4.37799,8.84286 3.96339,9.8438 3.75,10.9166 3.75,12 3.75,13.0834 3.96339,14.1562 4.37799,15.1571 4.79259,16.1581 5.40029,17.0675 6.16637,17.8336 6.93245,18.5997 7.84193,19.2074 8.84286,19.622 9.8438,20.0366 10.9166,20.25 12,20.25 13.0834,20.25 14.1562,20.0366 15.1571,19.622 16.1581,19.2074 17.0675,18.5997 17.8336,17.8336 18.5997,17.0675 19.2074,16.1581 19.622,15.1571 20.0366,14.1562 20.25,13.0834 20.25,12 20.25,10.9166 20.0366,9.8438 19.622,8.84286 19.2074,7.84193 18.5997,6.93245 17.8336,6.16637 17.0675,5.40029 16.1581,4.7926 15.1571,4.37799 14.1562,3.96339 13.0834,3.75 12,3.75z M8.25,12C8.25,11.5858,8.58579,11.25,9,11.25L10.2653,11.25 8.37596,8.41603C8.1462,8.07138 8.23933,7.60573 8.58397,7.37596 8.92862,7.1462 9.39427,7.23933 9.62404,7.58397L12,11.1479 14.376,7.58397C14.6057,7.23933 15.0714,7.1462 15.416,7.37596 15.7607,7.60573 15.8538,8.07138 15.624,8.41603L13.7347,11.25 15,11.25C15.4142,11.25 15.75,11.5858 15.75,12 15.75,12.4142 15.4142,12.75 15,12.75L12.75,12.75 12.75,14.25 15,14.25C15.4142,14.25 15.75,14.5858 15.75,15 15.75,15.4142 15.4142,15.75 15,15.75L12.75,15.75 12.75,17C12.75,17.4142 12.4142,17.75 12,17.75 11.5858,17.75 11.25,17.4142 11.25,17L11.25,15.75 9,15.75C8.58579,15.75 8.25,15.4142 8.25,15 8.25,14.5858 8.58579,14.25 9,14.25L11.25,14.25 11.25,12.75 9,12.75C8.58579,12.75,8.25,12.4142,8.25,12z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
<Border Name="SettingsAboutJumpToGroupBoxButton" MouseDown="SettingsJumpToGroupBox_MouseDown"
BorderBrush="#3b82f6" BorderThickness="0,0,0,0" Width="50" Height="50">
<Grid>
<Image Height="28" Width="28">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<DrawingGroup ClipGeometry="M0,0 V24 H24 V0 H0 Z">
<GeometryDrawing Brush="#FFFFFFFF"
Geometry="F0 M24,24z M0,0z M5.10571,5.10571C6.93419,3.27723 9.41414,2.25 12,2.25 14.5859,2.25 17.0658,3.27723 18.8943,5.10571 20.7228,6.93419 21.75,9.41414 21.75,12 21.75,13.2804 21.4978,14.5482 21.0078,15.7312 20.5178,16.9141 19.7997,17.9889 18.8943,18.8943 17.9889,19.7997 16.9141,20.5178 15.7312,21.0078 14.5482,21.4978 13.2804,21.75 12,21.75 10.7196,21.75 9.45176,21.4978 8.26884,21.0078 7.08591,20.5178 6.01108,19.7997 5.10571,18.8943 4.20034,17.9889 3.48216,16.9141 2.99217,15.7312 2.50219,14.5482 2.25,13.2804 2.25,12 2.25,9.41414 3.27723,6.93419 5.10571,5.10571z M12,3.75C9.81196,3.75 7.71354,4.61919 6.16637,6.16637 4.61919,7.71354 3.75,9.81196 3.75,12 3.75,13.0834 3.96339,14.1562 4.37799,15.1571 4.79259,16.1581 5.40029,17.0675 6.16637,17.8336 6.93245,18.5997 7.84193,19.2074 8.84286,19.622 9.8438,20.0366 10.9166,20.25 12,20.25 13.0834,20.25 14.1562,20.0366 15.1571,19.622 16.1581,19.2074 17.0675,18.5997 17.8336,17.8336 18.5997,17.0675 19.2074,16.1581 19.622,15.1571 20.0366,14.1562 20.25,13.0834 20.25,12 20.25,9.81196 19.3808,7.71354 17.8336,6.16637 16.2865,4.61919 14.188,3.75 12,3.75z M11.25,9C11.25,8.58579,11.5858,8.25,12,8.25L12.01,8.25C12.4242,8.25 12.76,8.58579 12.76,9 12.76,9.41421 12.4242,9.75 12.01,9.75L12,9.75C11.5858,9.75,11.25,9.41421,11.25,9z M11,11.25C10.5858,11.25 10.25,11.5858 10.25,12 10.25,12.4142 10.5858,12.75 11,12.75L11.25,12.75 11.25,16C11.25,16.4142,11.5858,16.75,12,16.75L13,16.75C13.4142,16.75 13.75,16.4142 13.75,16 13.75,15.5858 13.4142,15.25 13,15.25L12.75,15.25 12.75,12C12.75,11.5858,12.4142,11.25,12,11.25L11,11.25z" />
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Grid>
</Border>
</ui:SimpleStackPanel>
</Grid>
<Grid>
<Canvas MouseDown="SettingsPaneScrollBarTrack_MouseDown" Background="#18181b"
Name="SettingsPaneScrollBarTrack" Width="12" Margin="0,80,0,0"
HorizontalAlignment="Right">
<Border Name="SettingsPaneScrollBarThumb"
MouseDown="SettingsPaneScrollBarThumb_MouseDown"
MouseMove="SettingsPaneScrollBarThumb_MouseMove"
MouseUp="SettingsPaneScrollBarThumb_MouseUp"
Width="6" Height="128" Canvas.Left="3" Margin="0,3,0,3" Background="#52525b"
CornerRadius="3" RenderTransformOrigin="0.5,0.5">
<Border.RenderTransform>
<TranslateTransform x:Name="SettingsPaneScrollBarThumbTranslateTransform" Y="0" />
</Border.RenderTransform>
</Border>
</Canvas>
</Grid>
<Grid Controls:Panel.ZIndex="999" Height="90" VerticalAlignment="Bottom">
<Border Height="90" IsHitTestVisible="False">
<Border.Background>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
<GradientStop Color="#00000000" Offset="0.0" />
<GradientStop Color="#FF000000" Offset="1.0" />
</LinearGradientBrush>
</Border.Background>
</Border>
<Image IsHitTestVisible="True" MouseDown="BtnSettings_Click"
MouseEnter="SettingsPaneBackBtn_MouseEnter" MouseLeave="SettingsPaneBackBtn_MouseLeave"
Height="60" Source="/Resources/Icons-png/menu-back.png" Margin="-10,30,0,0"
HorizontalAlignment="Left">
</Image>
<Image Name="SettingsPaneBackBtnHighlight" IsHitTestVisible="False" Height="60"
Source="/Resources/Icons-png/menu-back-highlighted.png" Margin="-10,30,0,0"
HorizontalAlignment="Left" Opacity="0">
</Image>
</Grid>
</Grid>
</Border>
</Grid>
</Grid>
</helpers:PerformanceTransparentWin>