[update] PPT翻页按钮设置项(还没有实装),BorderTools图标更换。

This commit is contained in:
Dubi906w 2024-06-14 14:12:25 +08:00
parent c890b4e044
commit fb2315a033
7 changed files with 829 additions and 114 deletions

View File

@ -525,12 +525,16 @@
<None Remove="Resources\new-icons\rotate.png" /> <None Remove="Resources\new-icons\rotate.png" />
<None Remove="Resources\new-icons\unfold-chevron.png" /> <None Remove="Resources\new-icons\unfold-chevron.png" />
<None Remove="Resources\new-icons\zoom.png" /> <None Remove="Resources\new-icons\zoom.png" />
<None Remove="Resources\PresentationExample\page.jpg" />
<None Remove="Resources\PresentationExample\toolbar.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Resource Include="Resources\Icons-png\idt.png" /> <Resource Include="Resources\Icons-png\idt.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Resource Include="Resources\Icons-png\HiteAnnotation.png" /> <Resource Include="Resources\Icons-png\HiteAnnotation.png" />
<Resource Include="Resources\PresentationExample\page.jpg" />
<Resource Include="Resources\PresentationExample\toolbar.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Update="Properties\Settings.Designer.cs"> <Compile Update="Properties\Settings.Designer.cs">

View File

@ -20,7 +20,7 @@
Closing="Window_Closing" Closing="Window_Closing"
Closed="Window_Closed" Closed="Window_Closed"
PreviewKeyDown="Main_Grid_PreviewKeyDown" PreviewKeyDown="Main_Grid_PreviewKeyDown"
Height="8000" Width="1440" Height="9000" Width="1440"
FontFamily="Microsoft YaHei UI" FontFamily="Microsoft YaHei UI"
MouseWheel="Window_MouseWheel" MouseWheel="Window_MouseWheel"
Foreground="Black" Foreground="Black"
@ -54,6 +54,7 @@
<RoutedUICommand x:Key="HotKey_ChangeToPen4" Text=" " /> <RoutedUICommand x:Key="HotKey_ChangeToPen4" Text=" " />
<RoutedUICommand x:Key="HotKey_ChangeToPen5" Text=" " /> <RoutedUICommand x:Key="HotKey_ChangeToPen5" Text=" " />
<RoutedUICommand x:Key="HotKey_DrawLine" Text=" " /> <RoutedUICommand x:Key="HotKey_DrawLine" Text=" " />
<RoutedUICommand x:Key="NothingWillHappened" Text=" " />
</Window.Resources> </Window.Resources>
<!--输入命令绑定--> <!--输入命令绑定-->
<Window.InputBindings> <Window.InputBindings>
@ -74,6 +75,7 @@
<KeyBinding Modifiers="Alt" Key="D4" Command="{StaticResource HotKey_ChangeToPen4}" /> <KeyBinding Modifiers="Alt" Key="D4" Command="{StaticResource HotKey_ChangeToPen4}" />
<KeyBinding Modifiers="Alt" Key="D5" Command="{StaticResource HotKey_ChangeToPen5}" /> <KeyBinding Modifiers="Alt" Key="D5" Command="{StaticResource HotKey_ChangeToPen5}" />
<KeyBinding Modifiers="Alt" Key="L" Command="{StaticResource HotKey_DrawLine}" /> <KeyBinding Modifiers="Alt" Key="L" Command="{StaticResource HotKey_DrawLine}" />
<KeyBinding Modifiers="Alt" Key="F4" Command="{StaticResource NothingWillHappened}" />
</Window.InputBindings> </Window.InputBindings>
<!--命令执行方法绑定--> <!--命令执行方法绑定-->
<Window.CommandBindings> <Window.CommandBindings>
@ -693,7 +695,230 @@
TextWrapping="Wrap" Foreground="#a1a1aa" /> TextWrapping="Wrap" Foreground="#a1a1aa" />
<Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46" <Line HorizontalAlignment="Center" X1="0" Y1="0" X2="400" Y2="0" Stroke="#3f3f46"
StrokeThickness="1" Margin="0,4,0,4" /> StrokeThickness="1" Margin="0,4,0,4" />
<TextBlock Margin="0,0,0,8" Text="PPT翻页按钮" FontWeight="Bold" Foreground="#fafafa"
FontSize="20" />
<Grid>
<Image Source="Resources/PresentationExample/page.jpg"></Image>
<Image Source="Resources/PresentationExample/toolbar.png" Height="16"
VerticalAlignment="Bottom" HorizontalAlignment="Center" />
<Canvas>
</Canvas>
</Grid>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"> <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,16,0" />
<Slider x:Name="PPTButtonLeftPositionValueSlider" Minimum="-500"
Maximum="500" Width="148" 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>
<TextBlock
Text="{Binding ElementName=PPTButtonLeftPositionValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
Margin="8,0,8,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="PPTButtonRightPositionValueSlider" Minimum="-500"
Maximum="500" Width="148" 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>
<TextBlock
Text="{Binding ElementName=PPTButtonRightPositionValueSlider, Path=Value}"
VerticalAlignment="Center" FontSize="14" FontFamily="Consolas"
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="CheckboxBPPTSHalfOpacity_IsCheckChange"
Unchecked="CheckboxBPPTSHalfOpacity_IsCheckChange"
Margin="16,0,0,0">
半透明
</CheckBox>
<CheckBox IsChecked="True" MinWidth="0" Name="CheckboxBPPTBlackBackground"
Checked="CheckboxBPPTSBlackBackground_IsCheckChange"
Unchecked="CheckboxBPPTSBlackBackground_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>
<ui:SimpleStackPanel Visibility="Collapsed" Orientation="Horizontal"
HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示 PPT 浏览切页按钮(页码按钮)" <TextBlock Foreground="#fafafa" Text="显示 PPT 浏览切页按钮(页码按钮)"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" /> VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" <ui:ToggleSwitch OnContent="" OffContent=""
@ -701,7 +926,8 @@
FontFamily="Microsoft YaHei UI" FontWeight="Bold" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchShowButtonPPTNavigation_OnToggled" /> Toggled="ToggleSwitchShowButtonPPTNavigation_OnToggled" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"> <ui:SimpleStackPanel Visibility="Collapsed" Orientation="Horizontal"
HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示 PPT 下方翻页控制按钮" <TextBlock Foreground="#fafafa" Text="显示 PPT 下方翻页控制按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" /> VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" <ui:ToggleSwitch OnContent="" OffContent=""
@ -709,7 +935,8 @@
FontFamily="Microsoft YaHei UI" FontWeight="Bold" FontFamily="Microsoft YaHei UI" FontWeight="Bold"
Toggled="ToggleSwitchShowBottomPPTNavigationPanel_OnToggled" /> Toggled="ToggleSwitchShowBottomPPTNavigationPanel_OnToggled" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
<ui:SimpleStackPanel Orientation="Horizontal" HorizontalAlignment="Left"> <ui:SimpleStackPanel Visibility="Collapsed" Orientation="Horizontal"
HorizontalAlignment="Left">
<TextBlock Foreground="#fafafa" Text="显示 PPT 侧边翻页控制按钮" <TextBlock Foreground="#fafafa" Text="显示 PPT 侧边翻页控制按钮"
VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" /> VerticalAlignment="Center" FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" <ui:ToggleSwitch OnContent="" OffContent=""
@ -1420,7 +1647,8 @@
<Image Source="/Resources/Icons-png/Seewo2Annotation.png" Margin="0,0,6,0" <Image Source="/Resources/Icons-png/Seewo2Annotation.png" Margin="0,0,6,0"
Width="28" Width="28"
Height="28" VerticalAlignment="Center" /> Height="28" VerticalAlignment="Center" />
<TextBlock Foreground="#fafafa" Text="自动查杀 希沃桌面2.0 桌面批注" VerticalAlignment="Center" <TextBlock Foreground="#fafafa" Text="自动查杀 希沃桌面2.0 桌面批注"
VerticalAlignment="Center"
FontSize="14" Margin="0,0,16,0" /> FontSize="14" Margin="0,0,16,0" />
<ui:ToggleSwitch OnContent="" OffContent="" <ui:ToggleSwitch OnContent="" OffContent=""
Name="ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation" Name="ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation"
@ -2799,7 +3027,8 @@
Minimum="1" Maximum="255" Width="208" Minimum="1" Maximum="255" Width="208"
FontFamily="Microsoft YaHei UI" FontFamily="Microsoft YaHei UI"
FontSize="20" FontSize="20"
IsSnapToTickEnabled="True" Value="255" TickFrequency="1" IsSnapToTickEnabled="True" Value="255"
TickFrequency="1"
TickPlacement="None" TickPlacement="None"
ValueChanged="InkAlphaSlider_ValueChanged" /> ValueChanged="InkAlphaSlider_ValueChanged" />
<TextBlock <TextBlock
@ -3959,7 +4188,8 @@
<TranslateTransform /> <TranslateTransform />
</TransformGroup> </TransformGroup>
</Grid.RenderTransform> </Grid.RenderTransform>
<Border ClipToBounds="True" Name="BoardBorderTools" Margin="-105,-138.5,-14,33.5" <Border ClipToBounds="True" Name="BoardBorderTools"
Margin="-105,-138.5,-14,33.5"
CornerRadius="5" Background="#fafafa" Opacity="1" CornerRadius="5" Background="#fafafa" Opacity="1"
BorderThickness="1" BorderThickness="1"
BorderBrush="#2563eb"> BorderBrush="#2563eb">
@ -3990,10 +4220,19 @@
MouseUp="ImageCountdownTimer_MouseUp" MouseUp="ImageCountdownTimer_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_timer_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="计时器" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4001,10 +4240,19 @@
MouseUp="SymbolIconRand_MouseUp" MouseUp="SymbolIconRand_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_people_money_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="随机抽" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4012,10 +4260,19 @@
MouseUp="SymbolIconRandOne_MouseUp" MouseUp="SymbolIconRandOne_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_person_money_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="单次抽选" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4026,10 +4283,19 @@
MouseUp="SymbolIconSaveStrokes_MouseUp" MouseUp="SymbolIconSaveStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_save_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="保存" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4037,10 +4303,19 @@
MouseUp="SymbolIconOpenStrokes_MouseUp" MouseUp="SymbolIconOpenStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_folder_open_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="打开..." FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4048,9 +4323,19 @@
MouseUp="GridInkReplayButton_MouseUp" MouseUp="GridInkReplayButton_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image Source="/Resources/Icons-png/playCircle.png" <Image Margin="0,4,0,2" Height="19" Width="19">
RenderOptions.BitmapScalingMode="HighQuality" <Image.Source>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="重播" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4061,10 +4346,19 @@
MouseUp="SymbolIconScreenshot_MouseUp" MouseUp="SymbolIconScreenshot_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_camera_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="截屏" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4072,10 +4366,19 @@
MouseUp="OperatingGuideWindowIcon_MouseUp" MouseUp="OperatingGuideWindowIcon_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_book_question_mark_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="说明书" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -4083,10 +4386,19 @@
MouseUp="SymbolIconSettings_Click" MouseUp="SymbolIconSettings_Click"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_settings_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="设置" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6125,10 +6437,19 @@
MouseUp="ImageCountdownTimer_MouseUp" MouseUp="ImageCountdownTimer_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_timer_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="计时器" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6136,10 +6457,19 @@
MouseUp="SymbolIconRand_MouseUp" MouseUp="SymbolIconRand_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_people_money_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="随机抽" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6147,10 +6477,19 @@
MouseUp="SymbolIconRandOne_MouseUp" MouseUp="SymbolIconRandOne_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_person_money_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="单次抽选" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6161,10 +6500,19 @@
MouseUp="SymbolIconSaveStrokes_MouseUp" MouseUp="SymbolIconSaveStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_save_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="保存" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6172,10 +6520,19 @@
MouseUp="SymbolIconOpenStrokes_MouseUp" MouseUp="SymbolIconOpenStrokes_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_folder_open_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="打开..." FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6183,9 +6540,19 @@
MouseUp="GridInkReplayButton_MouseUp" MouseUp="GridInkReplayButton_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image Source="/Resources/Icons-png/playCircle.png" <Image Margin="0,4,0,2" Height="19" Width="19">
RenderOptions.BitmapScalingMode="HighQuality" <Image.Source>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="重播" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6196,10 +6563,19 @@
MouseUp="SymbolIconScreenshot_MouseUp" MouseUp="SymbolIconScreenshot_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_camera_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="截屏" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6207,10 +6583,19 @@
MouseUp="OperatingGuideWindowIcon_MouseUp" MouseUp="OperatingGuideWindowIcon_MouseUp"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_book_question_mark_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="说明书" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6218,10 +6603,19 @@
MouseUp="SymbolIconSettings_Click" MouseUp="SymbolIconSettings_Click"
Margin="0,0,0,0" Height="38" Width="32" Margin="0,0,0,0" Height="38" Width="32"
Orientation="Vertical"> Orientation="Vertical">
<Image <Image Margin="0,4,0,2" Height="19" Width="19">
Source="/Resources/Icons-Fluent/ic_fluent_settings_24_regular.png" <Image.Source>
RenderOptions.BitmapScalingMode="HighQuality" <DrawingImage>
Margin="0,4,0,2" Height="19" Width="19" /> <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" <Label Content="设置" FontSize="8"
HorizontalAlignment="Center" /> HorizontalAlignment="Center" />
</ui:SimpleStackPanel> </ui:SimpleStackPanel>
@ -6392,7 +6786,8 @@
<Grid> <Grid>
<InkCanvas Name="InkCanvasForInkReplay" MouseDown="InkCanvasForInkReplay_MouseDown" Visibility="Collapsed" <InkCanvas Name="InkCanvasForInkReplay" MouseDown="InkCanvasForInkReplay_MouseDown" Visibility="Collapsed"
EditingMode="None" Background="Transparent" /> EditingMode="None" Background="Transparent" />
<Border Name="BorderInkReplayToolBox" Width="386" Height="48" HorizontalAlignment="Center" Visibility="Collapsed" <Border Name="BorderInkReplayToolBox" Width="386" Height="48" HorizontalAlignment="Center"
Visibility="Collapsed"
VerticalAlignment="Bottom" Margin="0,0,0,16" Background="#fafafa" CornerRadius="5" VerticalAlignment="Bottom" Margin="0,0,0,16" Background="#fafafa" CornerRadius="5"
BorderBrush="#a1a1aa" BorderThickness="1"> BorderBrush="#a1a1aa" BorderThickness="1">
<ui:SimpleStackPanel Orientation="Horizontal"> <ui:SimpleStackPanel Orientation="Horizontal">

View File

@ -295,6 +295,7 @@ namespace Ink_Canvas {
LoadSettings(); LoadSettings();
} }
[Obsolete]
private void ToggleSwitchShowButtonPPTNavigation_OnToggled(object sender, RoutedEventArgs e) { private void ToggleSwitchShowButtonPPTNavigation_OnToggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return; if (!isLoaded) return;
Settings.PowerPointSettings.IsShowPPTNavigation = ToggleSwitchShowButtonPPTNavigation.IsOn; Settings.PowerPointSettings.IsShowPPTNavigation = ToggleSwitchShowButtonPPTNavigation.IsOn;
@ -304,6 +305,7 @@ namespace Ink_Canvas {
SaveSettingsToFile(); SaveSettingsToFile();
} }
[Obsolete]
private void ToggleSwitchShowBottomPPTNavigationPanel_OnToggled(object sender, RoutedEventArgs e) { private void ToggleSwitchShowBottomPPTNavigationPanel_OnToggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return; if (!isLoaded) return;
Settings.PowerPointSettings.IsShowBottomPPTNavigationPanel = ToggleSwitchShowBottomPPTNavigationPanel.IsOn; Settings.PowerPointSettings.IsShowBottomPPTNavigationPanel = ToggleSwitchShowBottomPPTNavigationPanel.IsOn;
@ -314,6 +316,7 @@ namespace Ink_Canvas {
SaveSettingsToFile(); SaveSettingsToFile();
} }
[Obsolete]
private void ToggleSwitchShowSidePPTNavigationPanel_OnToggled(object sender, RoutedEventArgs e) { private void ToggleSwitchShowSidePPTNavigationPanel_OnToggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return; if (!isLoaded) return;
Settings.PowerPointSettings.IsShowSidePPTNavigationPanel = ToggleSwitchShowSidePPTNavigationPanel.IsOn; Settings.PowerPointSettings.IsShowSidePPTNavigationPanel = ToggleSwitchShowSidePPTNavigationPanel.IsOn;
@ -329,6 +332,229 @@ namespace Ink_Canvas {
SaveSettingsToFile(); SaveSettingsToFile();
} }
private void ToggleSwitchShowPPTButton_OnToggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return;
Settings.PowerPointSettings.ShowPPTButton = ToggleSwitchShowPPTButton.IsOn;
SaveSettingsToFile();
}
private void ToggleSwitchEnablePPTButtonPageClickable_OnToggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return;
Settings.PowerPointSettings.EnablePPTButtonPageClickable = ToggleSwitchEnablePPTButtonPageClickable.IsOn;
SaveSettingsToFile();
}
private void CheckboxEnableLBPPTButton_IsCheckChanged(object sender, RoutedEventArgs e) {
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString();
char[] c = str.ToCharArray();
c[0] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTButtonsDisplayOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxEnableRBPPTButton_IsCheckChanged(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString();
char[] c = str.ToCharArray();
c[1] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTButtonsDisplayOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxEnableLSPPTButton_IsCheckChanged(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString();
char[] c = str.ToCharArray();
c[2] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTButtonsDisplayOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxEnableRSPPTButton_IsCheckChanged(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString();
char[] c = str.ToCharArray();
c[3] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTButtonsDisplayOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxSPPTDisplayPage_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTSButtonsOption.ToString();
char[] c = str.ToCharArray();
c[0] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTSButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxSPPTHalfOpacity_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTSButtonsOption.ToString();
char[] c = str.ToCharArray();
c[1] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTSButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxSPPTBlackBackground_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTSButtonsOption.ToString();
char[] c = str.ToCharArray();
c[2] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTSButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxBPPTDisplayPage_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTBButtonsOption.ToString();
char[] c = str.ToCharArray();
c[0] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTBButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxBPPTSHalfOpacity_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTBButtonsOption.ToString();
char[] c = str.ToCharArray();
c[1] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTBButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void CheckboxBPPTSBlackBackground_IsCheckChange(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
var str = Settings.PowerPointSettings.PPTBButtonsOption.ToString();
char[] c = str.ToCharArray();
c[2] = (bool)((CheckBox)sender).IsChecked ? '2' : '1';
Settings.PowerPointSettings.PPTBButtonsOption = int.Parse(new string(c));
SaveSettingsToFile();
}
private void PPTButtonLeftPositionValueSlider_ValueChanged(object sender, RoutedEventArgs e) {
if (!isLoaded) return;
Settings.PowerPointSettings.PPTLSButtonPosition = (int)PPTButtonLeftPositionValueSlider.Value;
UpdatePPTBtnSlidersStatus();
SaveSettingsToFile();
}
private void UpdatePPTBtnSlidersStatus() {
if (PPTButtonLeftPositionValueSlider.Value <= -500 || PPTButtonLeftPositionValueSlider.Value >= 500) {
if (PPTButtonLeftPositionValueSlider.Value >= 500) {
PPTBtnLSPlusBtn.IsEnabled = false;
PPTBtnLSPlusBtn.Opacity = 0.5;
PPTButtonLeftPositionValueSlider.Value = 500;
} else if (PPTButtonLeftPositionValueSlider.Value <= -500) {
PPTBtnLSMinusBtn.IsEnabled = false;
PPTBtnLSMinusBtn.Opacity = 0.5;
PPTButtonLeftPositionValueSlider.Value = -500;
}
}
else
{
PPTBtnLSPlusBtn.IsEnabled = true;
PPTBtnLSPlusBtn.Opacity = 1;
PPTBtnLSMinusBtn.IsEnabled = true;
PPTBtnLSMinusBtn.Opacity = 1;
}
if (PPTButtonRightPositionValueSlider.Value <= -500 || PPTButtonRightPositionValueSlider.Value >= 500)
{
if (PPTButtonRightPositionValueSlider.Value >= 500)
{
PPTBtnRSPlusBtn.IsEnabled = false;
PPTBtnRSPlusBtn.Opacity = 0.5;
PPTButtonRightPositionValueSlider.Value = 500;
}
else if (PPTButtonRightPositionValueSlider.Value <= -500)
{
PPTBtnRSMinusBtn.IsEnabled = false;
PPTBtnRSMinusBtn.Opacity = 0.5;
PPTButtonRightPositionValueSlider.Value = -500;
}
}
else
{
PPTBtnRSPlusBtn.IsEnabled = true;
PPTBtnRSPlusBtn.Opacity = 1;
PPTBtnRSMinusBtn.IsEnabled = true;
PPTBtnRSMinusBtn.Opacity = 1;
}
}
private void PPTBtnLSPlusBtn_Clicked(object sender, RoutedEventArgs e) {
if (!isLoaded) return;
PPTButtonLeftPositionValueSlider.Value++;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTLSButtonPosition = (int)PPTButtonLeftPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTBtnLSMinusBtn_Clicked(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
PPTButtonLeftPositionValueSlider.Value--;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTLSButtonPosition = (int)PPTButtonLeftPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTBtnLSSyncBtn_Clicked(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
PPTButtonRightPositionValueSlider.Value = PPTButtonLeftPositionValueSlider.Value;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTRSButtonPosition = (int)PPTButtonLeftPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTBtnRSPlusBtn_Clicked(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
PPTButtonRightPositionValueSlider.Value++;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTRSButtonPosition = (int)PPTButtonRightPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTBtnRSMinusBtn_Clicked(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
PPTButtonRightPositionValueSlider.Value--;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTRSButtonPosition = (int)PPTButtonRightPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTBtnRSSyncBtn_Clicked(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
PPTButtonLeftPositionValueSlider.Value = PPTButtonRightPositionValueSlider.Value;
UpdatePPTBtnSlidersStatus();
Settings.PowerPointSettings.PPTLSButtonPosition = (int)PPTButtonRightPositionValueSlider.Value;
SaveSettingsToFile();
}
private void PPTButtonRightPositionValueSlider_ValueChanged(object sender, RoutedEventArgs e)
{
if (!isLoaded) return;
Settings.PowerPointSettings.PPTRSButtonPosition = (int)PPTButtonRightPositionValueSlider.Value;
UpdatePPTBtnSlidersStatus();
SaveSettingsToFile();
}
private void ToggleSwitchShowCursor_Toggled(object sender, RoutedEventArgs e) { private void ToggleSwitchShowCursor_Toggled(object sender, RoutedEventArgs e) {
if (!isLoaded) return; if (!isLoaded) return;

View File

@ -171,7 +171,8 @@ namespace Ink_Canvas {
ToggleSwitchEnableQuickPanel.IsOn = Settings.Appearance.IsShowQuickPanel; ToggleSwitchEnableQuickPanel.IsOn = Settings.Appearance.IsShowQuickPanel;
ToggleSwitchEnableTrayIcon.IsOn = Settings.Appearance.EnableTrayIcon; ToggleSwitchEnableTrayIcon.IsOn = Settings.Appearance.EnableTrayIcon;
ICCTrayIconExampleImage.Visibility = Settings.Appearance.EnableTrayIcon ? Visibility.Visible : Visibility.Collapsed; ICCTrayIconExampleImage.Visibility =
Settings.Appearance.EnableTrayIcon ? Visibility.Visible : Visibility.Collapsed;
var _taskbar = (TaskbarIcon)Application.Current.Resources["TaskbarTrayIcon"]; var _taskbar = (TaskbarIcon)Application.Current.Resources["TaskbarTrayIcon"];
_taskbar.Visibility = Settings.Appearance.EnableTrayIcon ? Visibility.Visible : Visibility.Collapsed; _taskbar.Visibility = Settings.Appearance.EnableTrayIcon ? Visibility.Visible : Visibility.Collapsed;
@ -210,50 +211,36 @@ namespace Ink_Canvas {
} }
ComboBoxFloatingBarImg.SelectedIndex = Settings.Appearance.FloatingBarImg; ComboBoxFloatingBarImg.SelectedIndex = Settings.Appearance.FloatingBarImg;
if (ComboBoxFloatingBarImg.SelectedIndex == 0) if (ComboBoxFloatingBarImg.SelectedIndex == 0) {
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/icc.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/icc.png"));
FloatingbarHeadIconImg.Margin = new Thickness(0.5); FloatingbarHeadIconImg.Margin = new Thickness(0.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 1) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 1)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/icc-transparent-dark-small.png")); new BitmapImage(
new Uri("pack://application:,,,/Resources/Icons-png/icc-transparent-dark-small.png"));
FloatingbarHeadIconImg.Margin = new Thickness(1.2); FloatingbarHeadIconImg.Margin = new Thickness(1.2);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 2) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 2)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuandoujiyanhuaji.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuandoujiyanhuaji.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 3) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 3)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanshounvhuaji.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanshounvhuaji.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 4) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 4)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanciya.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanciya.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 5) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 5)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanneikuhuaji.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuanneikuhuaji.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 6) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 6)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuandogeyuanliangwo.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/kuandogeyuanliangwo.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1.5);
} } else if (ComboBoxFloatingBarImg.SelectedIndex == 7) {
else if (ComboBoxFloatingBarImg.SelectedIndex == 7)
{
FloatingbarHeadIconImg.Source = FloatingbarHeadIconImg.Source =
new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/tiebahuaji.png")); new BitmapImage(new Uri("pack://application:,,,/Resources/Icons-png/tiebahuaji.png"));
FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1); FloatingbarHeadIconImg.Margin = new Thickness(2, 2, 2, 1);
@ -300,6 +287,72 @@ namespace Ink_Canvas {
ToggleSwitchNotifyPreviousPage.IsOn = Settings.PowerPointSettings.IsNotifyPreviousPage; ToggleSwitchNotifyPreviousPage.IsOn = Settings.PowerPointSettings.IsNotifyPreviousPage;
// -- new --
ToggleSwitchShowPPTButton.IsOn = Settings.PowerPointSettings.ShowPPTButton;
ToggleSwitchEnablePPTButtonPageClickable.IsOn =
Settings.PowerPointSettings.EnablePPTButtonPageClickable;
var dops = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString();
var dopsc = dops.ToCharArray();
if ((dopsc[0] == '1' || dopsc[0] == '2') && (dopsc[1] == '1' || dopsc[1] == '2') &&
(dopsc[2] == '1' || dopsc[2] == '2') && (dopsc[3] == '1' || dopsc[3] == '2')) {
CheckboxEnableLBPPTButton.IsChecked = dopsc[0] == '2';
CheckboxEnableRBPPTButton.IsChecked = dopsc[1] == '2';
CheckboxEnableLSPPTButton.IsChecked = dopsc[2] == '2';
CheckboxEnableRSPPTButton.IsChecked = dopsc[3] == '2';
} else {
Settings.PowerPointSettings.PPTButtonsDisplayOption = 2222;
CheckboxEnableLBPPTButton.IsChecked = true;
CheckboxEnableRBPPTButton.IsChecked = true;
CheckboxEnableLSPPTButton.IsChecked = true;
CheckboxEnableRSPPTButton.IsChecked = true;
SaveSettingsToFile();
}
var sops = Settings.PowerPointSettings.PPTSButtonsOption.ToString();
var sopsc = sops.ToCharArray();
if ((sopsc[0] == '1' || sopsc[0] == '2') && (sopsc[1] == '1' || sopsc[1] == '2') &&
(sopsc[2] == '1' || sopsc[2] == '2'))
{
CheckboxSPPTDisplayPage.IsChecked = sopsc[0] == '2';
CheckboxSPPTHalfOpacity.IsChecked = sopsc[1] == '2';
CheckboxSPPTBlackBackground.IsChecked = sopsc[2] == '2';
}
else
{
Settings.PowerPointSettings.PPTSButtonsOption = 221;
CheckboxSPPTDisplayPage.IsChecked = true;
CheckboxSPPTHalfOpacity.IsChecked = true;
CheckboxSPPTBlackBackground.IsChecked = false;
SaveSettingsToFile();
}
var bops = Settings.PowerPointSettings.PPTBButtonsOption.ToString();
var bopsc = bops.ToCharArray();
if ((bopsc[0] == '1' || bopsc[0] == '2') && (bopsc[1] == '1' || bopsc[1] == '2') &&
(bopsc[2] == '1' || bopsc[2] == '2'))
{
CheckboxBPPTDisplayPage.IsChecked = bopsc[0] == '2';
CheckboxBPPTHalfOpacity.IsChecked = bopsc[1] == '2';
CheckboxBPPTBlackBackground.IsChecked = bopsc[2] == '2';
}
else
{
Settings.PowerPointSettings.PPTBButtonsOption = 121;
CheckboxBPPTDisplayPage.IsChecked = false;
CheckboxBPPTHalfOpacity.IsChecked = true;
CheckboxBPPTBlackBackground.IsChecked = false;
SaveSettingsToFile();
}
PPTButtonLeftPositionValueSlider.Value = Settings.PowerPointSettings.PPTLSButtonPosition;
PPTButtonRightPositionValueSlider.Value = Settings.PowerPointSettings.PPTRSButtonPosition;
UpdatePPTBtnSlidersStatus();
// -- new --
ToggleSwitchNotifyHiddenPage.IsOn = Settings.PowerPointSettings.IsNotifyHiddenPage; ToggleSwitchNotifyHiddenPage.IsOn = Settings.PowerPointSettings.IsNotifyHiddenPage;
ToggleSwitchNotifyAutoPlayPresentation.IsOn = Settings.PowerPointSettings.IsNotifyAutoPlayPresentation; ToggleSwitchNotifyAutoPlayPresentation.IsOn = Settings.PowerPointSettings.IsNotifyAutoPlayPresentation;
@ -478,14 +531,16 @@ namespace Ink_Canvas {
ToggleSwitchIsEnableEdgeGestureUtil.IsOn = Settings.Advanced.IsEnableEdgeGestureUtil; ToggleSwitchIsEnableEdgeGestureUtil.IsOn = Settings.Advanced.IsEnableEdgeGestureUtil;
if (Settings.Advanced.IsEnableEdgeGestureUtil) { if (Settings.Advanced.IsEnableEdgeGestureUtil) {
if (OSVersion.GetOperatingSystem()>=OperatingSystem.Windows10) EdgeGestureUtil.DisableEdgeGestures(new WindowInteropHelper(this).Handle, true); if (OSVersion.GetOperatingSystem() >= OperatingSystem.Windows10)
EdgeGestureUtil.DisableEdgeGestures(new WindowInteropHelper(this).Handle, true);
} }
ToggleSwitchIsEnableForceFullScreen.IsOn = Settings.Advanced.IsEnableForceFullScreen; ToggleSwitchIsEnableForceFullScreen.IsOn = Settings.Advanced.IsEnableForceFullScreen;
ToggleSwitchIsEnableDPIChangeDetection.IsOn = Settings.Advanced.IsEnableDPIChangeDetection; ToggleSwitchIsEnableDPIChangeDetection.IsOn = Settings.Advanced.IsEnableDPIChangeDetection;
ToggleSwitchIsEnableResolutionChangeDetection.IsOn = Settings.Advanced.IsEnableResolutionChangeDetection; ToggleSwitchIsEnableResolutionChangeDetection.IsOn =
Settings.Advanced.IsEnableResolutionChangeDetection;
} else { } else {
Settings.Advanced = new Advanced(); Settings.Advanced = new Advanced();
} }
@ -560,11 +615,13 @@ namespace Ink_Canvas {
SettingsShowCanvasAtNewSlideShowStackPanel.Opacity = 0.5; SettingsShowCanvasAtNewSlideShowStackPanel.Opacity = 0.5;
SettingsShowCanvasAtNewSlideShowStackPanel.IsHitTestVisible = false; SettingsShowCanvasAtNewSlideShowStackPanel.IsHitTestVisible = false;
} }
ToggleSwitchAutoFoldInPPTSlideShow.IsOn = Settings.Automation.IsAutoFoldInPPTSlideShow; ToggleSwitchAutoFoldInPPTSlideShow.IsOn = Settings.Automation.IsAutoFoldInPPTSlideShow;
if (Settings.Automation.IsAutoKillEasiNote || Settings.Automation.IsAutoKillPptService || if (Settings.Automation.IsAutoKillEasiNote || Settings.Automation.IsAutoKillPptService ||
Settings.Automation.IsAutoKillHiteAnnotation || Settings.Automation.IsAutoKillInkCanvas Settings.Automation.IsAutoKillHiteAnnotation || Settings.Automation.IsAutoKillInkCanvas
|| Settings.Automation.IsAutoKillICA || Settings.Automation.IsAutoKillIDT || Settings.Automation.IsAutoKillVComYouJiao || Settings.Automation.IsAutoKillICA || Settings.Automation.IsAutoKillIDT ||
Settings.Automation.IsAutoKillVComYouJiao
|| Settings.Automation.IsAutoKillSeewoLauncher2DesktopAnnotation) { || Settings.Automation.IsAutoKillSeewoLauncher2DesktopAnnotation) {
timerKillProcess.Start(); timerKillProcess.Start();
} else { } else {

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -154,11 +154,44 @@ namespace Ink_Canvas
public class PowerPointSettings public class PowerPointSettings
{ {
[JsonProperty("isShowPPTNavigation")] [JsonProperty("isShowPPTNavigation")]
// -- old --
public bool IsShowPPTNavigation { get; set; } = true; public bool IsShowPPTNavigation { get; set; } = true;
[JsonProperty("isShowBottomPPTNavigationPanel")] [JsonProperty("isShowBottomPPTNavigationPanel")]
public bool IsShowBottomPPTNavigationPanel { get; set; } = true; public bool IsShowBottomPPTNavigationPanel { get; set; } = true;
[JsonProperty("isShowSidePPTNavigationPanel")] [JsonProperty("isShowSidePPTNavigationPanel")]
public bool IsShowSidePPTNavigationPanel { get; set; } = true; public bool IsShowSidePPTNavigationPanel { get; set; } = true;
// -- old --
// -- new --
[JsonProperty("showPPTButton")]
public bool ShowPPTButton { get; set; } = true;
// 每一个数位代表一个选项2就是开启1就是关闭
[JsonProperty("pptButtonsDisplayOption")]
public int PPTButtonsDisplayOption { get; set; } = 2222;
// 0居中+就是往上,-就是往下
[JsonProperty("pptLSButtonPosition")]
public int PPTLSButtonPosition { get; set; } = 0;
// 0居中+就是往上,-就是往下
[JsonProperty("pptRSButtonPosition")]
public int PPTRSButtonPosition { get; set; } = 0;
[JsonProperty("pptSButtonsOption")]
public int PPTSButtonsOption { get; set; } = 221;
[JsonProperty("pptBButtonsOption")]
public int PPTBButtonsOption { get; set; } = 121;
[JsonProperty("enablePPTButtonPageClickable")]
public bool EnablePPTButtonPageClickable { get; set; } = true;
// -- new --
[JsonProperty("powerPointSupport")] [JsonProperty("powerPointSupport")]
public bool PowerPointSupport { get; set; } = true; public bool PowerPointSupport { get; set; } = true;
[JsonProperty("isShowCanvasAtNewSlideShow")] [JsonProperty("isShowCanvasAtNewSlideShow")]