2026-03-21 22:15:36 +08:00
<Window x:Class= "Ink_Canvas.OperatingGuideWindow"
2025-05-25 09:29:48 +08:00
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:local= "clr-namespace:Ink_Canvas"
xmlns:ui= "http://schemas.inkore.net/lib/ui/wpf/modern"
2026-03-14 17:19:05 +08:00
xmlns:ikw= "http://schemas.inkore.net/lib/ui/wpf"
2025-05-25 09:29:48 +08:00
ui:ThemeManager.RequestedTheme= "Light" Topmost= "True" Background= "Transparent"
mc:Ignorable= "d" WindowStyle= "None" AllowsTransparency= "True"
WindowStartupLocation= "CenterScreen"
Title= "Ink Canvas Annotation 使用指南"
Height= "600" Width= "500" >
2025-10-05 09:33:25 +08:00
<Border Background= "{DynamicResource OperatingGuideWindowBackground}" CornerRadius= "10" BorderThickness= "1" BorderBrush= "{DynamicResource OperatingGuideWindowBorderBrush}" Margin= "10,10,10,50" >
2025-05-25 09:29:48 +08:00
<Grid >
<Border MouseMove= "WindowDragMove" Visibility= "Visible" Width= "64" Height= "15" CornerRadius= "8" Background= "Gray" Margin= "0,0,0,5" HorizontalAlignment= "Center" VerticalAlignment= "Bottom" />
<ScrollViewer Margin= "0,0,0,30" VerticalScrollBarVisibility= "Auto"
PanningMode= "VerticalOnly" ui:ThemeManager.RequestedTheme= "Light"
ManipulationBoundaryFeedback= "SCManipulationBoundaryFeedback" >
2026-03-14 17:19:05 +08:00
<ikw:SimpleStackPanel >
<ikw:SimpleStackPanel Margin= "20,20,20,0" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:44:54 +08:00
<Image Margin= "5, 0" Source= "{DynamicResource OperatingGuideWindowKeyboardIcon}"
2025-05-25 09:29:48 +08:00
RenderOptions.BitmapScalingMode= "HighQuality" Height= "40" Width= "40" />
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "22" Text= "软件快捷键" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
2025-05-25 09:29:48 +08:00
<Viewbox Height= "320" HorizontalAlignment= "Left" >
2026-03-14 17:19:05 +08:00
<ikw:SimpleStackPanel >
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:44:54 +08:00
<Image Source= "{DynamicResource OperatingGuideWindowControlIcon1}"
2025-05-25 09:29:48 +08:00
RenderOptions.BitmapScalingMode= "HighQuality" Height= "20" Width= "20" />
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " + Z —— 撤销" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:44:54 +08:00
<Image Source= "{DynamicResource OperatingGuideWindowControlIcon2}"
2025-05-25 09:29:48 +08:00
RenderOptions.BitmapScalingMode= "HighQuality" Height= "20" Width= "20" />
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " + Y —— 重做" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:44:54 +08:00
<Image Source= "{DynamicResource OperatingGuideWindowControlIcon3}"
2025-05-25 09:29:48 +08:00
RenderOptions.BitmapScalingMode= "HighQuality" Height= "20" Width= "20" />
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " + E —— 清屏" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + V —— 显示/隐藏笑脸右侧工具栏(Visibility) " TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + C —— 截屏(Capture) " TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + S —— 切换至选择模式(Select)" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + D —— 切换至批注模式 / 墨迹颜色选择器(Draw)" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + Q —— 退出批注模式(Quit) " TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + B —— 切换/退出画板模式(Board)" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + E —— 切换至面积擦/墨迹擦功能(Eraser)" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= " Alt + L —— 切换至单次直线绘制功能(Line)" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
<ikw:SimpleStackPanel Margin= "20, 0" Height= "20" Orientation= "Horizontal" HorizontalAlignment= "Left" >
2025-10-05 09:33:25 +08:00
<TextBlock FontSize= "10" Text= "Shift + Esc —— 退出 PPT 放映" TextWrapping= "Wrap" VerticalAlignment= "Center" Foreground= "{DynamicResource OperatingGuideWindowTextForeground}" />
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
</ikw:SimpleStackPanel>
2025-05-25 09:29:48 +08:00
</Viewbox>
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
2025-05-25 09:29:48 +08:00
</ScrollViewer>
2025-09-06 14:24:18 +08:00
<Viewbox Visibility= "{Binding ElementName=BigViewController, Path=Visibility}" Margin= "20,20,20,20" HorizontalAlignment= "Right" >
2026-03-14 17:19:05 +08:00
<ikw:SimpleStackPanel Height= "180" Orientation= "Horizontal" >
2025-05-25 09:29:48 +08:00
<Border x:Name= "BtnFullscreen" MouseUp= "BtnFullscreen_MouseUp" HorizontalAlignment= "Right" VerticalAlignment= "Bottom"
Margin= "5"
2025-10-05 09:33:25 +08:00
Background= "{DynamicResource OperatingGuideWindowFullscreenButtonBackground}" Height= "20" Width= "20" CornerRadius= "100" >
2025-05-25 09:29:48 +08:00
<Border.Effect >
<DropShadowEffect Direction= "0" ShadowDepth= "0" Opacity= "0.1" BlurRadius= "3" />
</Border.Effect>
<Viewbox Margin= "5.5" >
2026-03-21 22:15:36 +08:00
<ui:FontIcon Name= "FontIconFullscreen" Icon= "{x:Static ui:SegoeFluentIcons.FullScreen}" Foreground= "{DynamicResource OperatingGuideWindowFullscreenButtonForeground}" />
2025-05-25 09:29:48 +08:00
</Viewbox>
</Border>
<Border x:Name= "BtnClose" MouseUp= "BtnClose_MouseUp" HorizontalAlignment= "Right" VerticalAlignment= "Bottom"
Margin= "5"
2025-10-05 09:33:25 +08:00
Background= "{DynamicResource OperatingGuideWindowCloseButtonBackground}" Height= "20" Width= "20" CornerRadius= "100" >
2025-05-25 09:29:48 +08:00
<Border.Effect >
<DropShadowEffect Direction= "0" ShadowDepth= "0" Opacity= "0.1" BlurRadius= "3" />
</Border.Effect>
<Viewbox Margin= "5.5" >
2026-03-21 22:15:36 +08:00
<ui:FontIcon Icon= "{x:Static ui:SegoeFluentIcons.Clear}" Foreground= "{DynamicResource OperatingGuideWindowCloseButtonForeground}" />
2025-05-25 09:29:48 +08:00
</Viewbox>
</Border>
2026-03-14 17:19:05 +08:00
</ikw:SimpleStackPanel>
2025-05-25 09:29:48 +08:00
</Viewbox>
</Grid>
</Border>
</Window>