From 5f828736deb6e4307e4987fb3c5948d170b05021 Mon Sep 17 00:00:00 2001 From: CJK_mkp <113243675+CJKmkp@users.noreply.github.com> Date: Wed, 18 Jun 2025 09:08:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:issue=20#13=20#23=20add:=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BE=A7=E8=BE=B9=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AutomaticUpdateVersionControl.txt | 2 +- Ink Canvas/AssemblyInfo.cs | 4 +- Ink Canvas/MainWindow.xaml | 441 +- Ink Canvas/MainWindow.xaml.cs | 310 +- ...CanvasForClass.csproj.FileListAbsolute.txt | 18 +- .../net472/InkCanvasForClass.g.resources | Bin 5166123 -> 5177953 bytes Ink Canvas/obj/Debug/net472/MainWindow.g.cs | 7022 +++++++++-------- Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs | 7022 +++++++++-------- 8 files changed, 7795 insertions(+), 7024 deletions(-) diff --git a/AutomaticUpdateVersionControl.txt b/AutomaticUpdateVersionControl.txt index b000a6a0..308b6faa 100644 --- a/AutomaticUpdateVersionControl.txt +++ b/AutomaticUpdateVersionControl.txt @@ -1 +1 @@ -1.4.7 \ No newline at end of file +1.6.2 \ No newline at end of file diff --git a/Ink Canvas/AssemblyInfo.cs b/Ink Canvas/AssemblyInfo.cs index 0a156b5e..9281a39d 100644 --- a/Ink Canvas/AssemblyInfo.cs +++ b/Ink Canvas/AssemblyInfo.cs @@ -49,5 +49,5 @@ using System.Windows; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.2.0")] -[assembly: AssemblyFileVersion("5.0.2.0")] +[assembly: AssemblyVersion("1.6.2.0")] +[assembly: AssemblyFileVersion("1.6.2.0")] diff --git a/Ink Canvas/MainWindow.xaml b/Ink Canvas/MainWindow.xaml index 3ad95f25..6c479042 100644 --- a/Ink Canvas/MainWindow.xaml +++ b/Ink Canvas/MainWindow.xaml @@ -53,9 +53,72 @@ - - - + + + + + + @@ -109,13 +172,301 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Text="1.X.X.X" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/Ink Canvas/MainWindow.xaml.cs b/Ink Canvas/MainWindow.xaml.cs index 3748d78e..ec542037 100644 --- a/Ink Canvas/MainWindow.xaml.cs +++ b/Ink Canvas/MainWindow.xaml.cs @@ -18,6 +18,9 @@ using System.Threading; using System.Threading.Tasks; using Microsoft.Win32; using System.Windows.Input; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Media.Animation; namespace Ink_Canvas { public partial class MainWindow : Window { @@ -154,28 +157,9 @@ namespace Ink_Canvas { private void inkCanvas_EditingModeChanged(object sender, RoutedEventArgs e) { var inkCanvas1 = sender as InkCanvas; if (inkCanvas1 == null) return; - // 修复"显示画笔光标"选项不可用的问题 - if (Settings.Canvas.IsShowCursor) { - inkCanvas1.UseCustomCursor = true; - // 修复触屏和数位笔时光标不显示:强制显示光标,不再依赖鼠标或触控状态 - inkCanvas1.ForceCursor = true; - - // 根据编辑模式设置不同的光标 - if (inkCanvas1.EditingMode == InkCanvasEditingMode.EraseByPoint) { - var sri = Application.GetResourceStream(new Uri("Resources/Cursors/Eraser.cur", UriKind.Relative)); - if (sri != null) - inkCanvas1.Cursor = new Cursor(sri.Stream); - } else if (inkCanvas1.EditingMode == InkCanvasEditingMode.Ink) { - var sri = Application.GetResourceStream(new Uri("Resources/Cursors/Pen.cur", UriKind.Relative)); - if (sri != null) - inkCanvas1.Cursor = new Cursor(sri.Stream); - } else if (inkCanvas1.EditingMode == InkCanvasEditingMode.Select) { - inkCanvas1.Cursor = Cursors.Cross; - } - } else { - inkCanvas1.UseCustomCursor = false; - inkCanvas1.ForceCursor = false; - } + + // 使用辅助方法设置光标 + SetCursorBasedOnEditingMode(inkCanvas1); if (inkCanvas1.EditingMode == InkCanvasEditingMode.Ink) forcePointEraser = !forcePointEraser; } @@ -355,54 +339,280 @@ namespace Ink_Canvas { SaveSettingsToFile(); } + // 添加一个辅助方法,根据当前编辑模式设置光标 + private void SetCursorBasedOnEditingMode(InkCanvas canvas) + { + if (Settings.Canvas.IsShowCursor) { + canvas.UseCustomCursor = true; + canvas.ForceCursor = true; + + // 根据编辑模式设置不同的光标 + if (canvas.EditingMode == InkCanvasEditingMode.EraseByPoint) { + canvas.Cursor = Cursors.Cross; + } else if (canvas.EditingMode == InkCanvasEditingMode.Ink) { + var sri = Application.GetResourceStream(new Uri("Resources/Cursors/Pen.cur", UriKind.Relative)); + if (sri != null) + canvas.Cursor = new Cursor(sri.Stream); + } else if (canvas.EditingMode == InkCanvasEditingMode.Select) { + canvas.Cursor = Cursors.Cross; + } + + System.Windows.Forms.Cursor.Show(); + } else { + canvas.UseCustomCursor = false; + canvas.ForceCursor = false; + System.Windows.Forms.Cursor.Show(); + } + } + // 鼠标输入 private void inkCanvas_PreviewMouseDown(object sender, MouseButtonEventArgs e) { - inkCanvas.Cursor = Cursors.Arrow; + // 使用辅助方法设置光标 + SetCursorBasedOnEditingMode(inkCanvas); } // 手写笔输入 private void inkCanvas_StylusDown(object sender, StylusDownEventArgs e) { - var sri = Application.GetResourceStream(new Uri("Resources/Cursors/Pen.cur", UriKind.Relative)); - if (sri != null) - inkCanvas.Cursor = new Cursor(sri.Stream); + // 使用辅助方法设置光标 + SetCursorBasedOnEditingMode(inkCanvas); } // 触摸输入,不隐藏光标 private void inkCanvas_TouchDown(object sender, TouchEventArgs e) { - // 修改:根据用户设置决定是否强制显示自定义光标 - if (Settings.Canvas.IsShowCursor) - { - inkCanvas.ForceCursor = true; - // 确保鼠标光标对触摸可见 - System.Windows.Forms.Cursor.Show(); - // 新增:当处于套索选择模式时保持光标可见 - if (inkCanvas.EditingMode == InkCanvasEditingMode.Select) - inkCanvas.Cursor = Cursors.Cross; - } - else - { - inkCanvas.ForceCursor = false; - System.Windows.Forms.Cursor.Show(); - } + // 使用辅助方法设置光标 + SetCursorBasedOnEditingMode(inkCanvas); } // 触摸结束,恢复光标 private void inkCanvas_TouchUp(object sender, TouchEventArgs e) { - // 修改:根据当前模式和设置恢复光标状态 - if (Settings.Canvas.IsShowCursor) { - inkCanvas.ForceCursor = true; - // 确保鼠标光标对触摸可见 - System.Windows.Forms.Cursor.Show(); - } else { - inkCanvas.ForceCursor = false; - System.Windows.Forms.Cursor.Show(); - } + // 使用辅助方法设置光标 + SetCursorBasedOnEditingMode(inkCanvas); } #endregion Definations and Loading + + #region Navigation Sidebar Methods + + // 侧边栏导航按钮事件处理 + private void NavStartup_Click(object sender, RoutedEventArgs e) + { + // 切换到启动设置页面 + ShowSettingsSection("startup"); + } + + private void NavCanvas_Click(object sender, RoutedEventArgs e) + { + // 切换到画布设置页面 + ShowSettingsSection("canvas"); + } + + private void NavGesture_Click(object sender, RoutedEventArgs e) + { + // 切换到手势设置页面 + ShowSettingsSection("gesture"); + } + + private void NavInkRecognition_Click(object sender, RoutedEventArgs e) + { + // 切换到墨迹识别设置页面 + ShowSettingsSection("inkrecognition"); + } + + private void NavCrashAction_Click(object sender, RoutedEventArgs e) + { + // 切换到崩溃处理设置页面 + ShowSettingsSection("crashaction"); + } + + private void NavPPT_Click(object sender, RoutedEventArgs e) + { + // 切换到PPT设置页面 + ShowSettingsSection("ppt"); + } + + private void NavAdvanced_Click(object sender, RoutedEventArgs e) + { + // 切换到高级设置页面 + ShowSettingsSection("advanced"); + } + + private void NavAutomation_Click(object sender, RoutedEventArgs e) + { + // 切换到自动化设置页面 + ShowSettingsSection("automation"); + } + + private void NavRandomWindow_Click(object sender, RoutedEventArgs e) + { + // 切换到随机窗口设置页面 + ShowSettingsSection("randomwindow"); + } + + private void NavAbout_Click(object sender, RoutedEventArgs e) + { + // 切换到关于页面 + ShowSettingsSection("about"); + } + + // 新增:个性化设置 + private void NavTheme_Click(object sender, RoutedEventArgs e) + { + // 切换到个性化设置页面 + ShowSettingsSection("theme"); + } + + // 新增:快捷键设置 + private void NavShortcuts_Click(object sender, RoutedEventArgs e) + { + // 切换到快捷键设置页面 + ShowSettingsSection("shortcuts"); + // 如果设置部分尚未快捷键 + MessageBox.Show("设置功能正在开发中", "提示", MessageBoxButton.OK, MessageBoxImage.Information); + } + + private void BtnCloseSettings_Click(object sender, RoutedEventArgs e) + { + // 关闭设置面板 + BorderSettings.Visibility = Visibility.Collapsed; + BorderSettingsMask.IsHitTestVisible = false; + } + + // 新增:折叠侧边栏 + private void CollapseNavSidebar_Click(object sender, RoutedEventArgs e) + { + // 折叠/展开侧边栏 + var columnDefinitions = ((Grid)BorderSettings.Child).ColumnDefinitions; + if (columnDefinitions[0].Width.Value == 50) + { + // 折叠侧边栏 + columnDefinitions[0].Width = new GridLength(0); + } + else + { + // 展开侧边栏 + columnDefinitions[0].Width = new GridLength(50); + } + } + + // 新增:显示侧边栏 + private void ShowNavSidebar_Click(object sender, RoutedEventArgs e) + { + // 确保侧边栏展开 + var columnDefinitions = ((Grid)BorderSettings.Child).ColumnDefinitions; + columnDefinitions[0].Width = new GridLength(50); + } + + // 辅助方法:显示指定的设置部分 + private void ShowSettingsSection(string sectionTag) + { + // 显示设置面板 + BorderSettings.Visibility = Visibility.Visible; + BorderSettingsMask.IsHitTestVisible = true; + + // 获取SettingsPanelScrollViewer中的所有GroupBox + var stackPanel = SettingsPanelScrollViewer.Content as StackPanel; + if (stackPanel == null) return; + + // 首先隐藏所有GroupBox + foreach (var child in stackPanel.Children) + { + if (child is GroupBox groupBox) + { + groupBox.Visibility = Visibility.Collapsed; + } + } + + // 根据传入的sectionTag显示相应的设置部分 + switch (sectionTag.ToLower()) + { + case "startup": + // 显示启动设置 + ShowGroupBoxByHeader(stackPanel, "启动"); + break; + case "canvas": + // 显示画板和墨迹设置 + ShowGroupBoxByHeader(stackPanel, "画板和墨迹"); + break; + case "gesture": + // 显示手势设置 + ShowGroupBoxByHeader(stackPanel, "手势"); + break; + case "inkrecognition": + // 显示墨迹纠正设置 + ShowGroupBoxByHeader(stackPanel, "墨迹纠正"); + if (GroupBoxInkRecognition != null) + GroupBoxInkRecognition.Visibility = Visibility.Visible; + break; + case "crashaction": + // 显示崩溃后操作设置 + ShowGroupBoxByHeader(stackPanel, "崩溃后操作"); + break; + case "ppt": + // 显示PPT联动设置 + ShowGroupBoxByHeader(stackPanel, "PPT联动"); + break; + case "advanced": + // 显示高级设置 + // 这里可能需要根据实际情况调整 + break; + case "automation": + // 显示自动化设置 + // 这里可能需要根据实际情况调整 + break; + case "randomwindow": + // 显示随机窗口设置 + if (GroupBoxRandWindow != null) + GroupBoxRandWindow.Visibility = Visibility.Visible; + break; + case "theme": + // 显示主题设置 + if (GroupBoxAppearanceNewUI != null) + GroupBoxAppearanceNewUI.Visibility = Visibility.Visible; + break; + case "shortcuts": + // 显示快捷键设置 + // 快捷键设置部分可能尚未实现 + break; + case "about": + // 显示关于页面 + ShowGroupBoxByHeader(stackPanel, "关于"); + break; + default: + // 默认显示第一个GroupBox + if (stackPanel.Children.Count > 0 && stackPanel.Children[0] is GroupBox firstGroupBox) + { + firstGroupBox.Visibility = Visibility.Visible; + } + break; + } + + // 滚动到顶部 + SettingsPanelScrollViewer.ScrollToTop(); + } + + // 根据Header文本查找并显示GroupBox + private void ShowGroupBoxByHeader(StackPanel parent, string headerText) + { + foreach (var child in parent.Children) + { + if (child is GroupBox groupBox) + { + // 查找GroupBox的Header + if (groupBox.Header is TextBlock headerTextBlock && + headerTextBlock.Text != null && + headerTextBlock.Text.Contains(headerText)) + { + groupBox.Visibility = Visibility.Visible; + return; + } + } + } + } + + #endregion Navigation Sidebar Methods } } \ No newline at end of file diff --git a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.FileListAbsolute.txt b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.FileListAbsolute.txt index 929347a8..4b26827d 100644 --- a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.FileListAbsolute.txt +++ b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.FileListAbsolute.txt @@ -373,15 +373,6 @@ E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\App.g.cs E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\GeneratedInternalTypeHelper.g.cs E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass_MarkupCompile.cache E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass_MarkupCompile.lref -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\App.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\MainWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\CountdownTimerWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\CycleProcessBar.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\HasNewUpdateWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\NamesInputWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\OperatingGuideWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\RandWindow.baml -E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\YesOrNoNotificationWindow.baml E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass.g.resources E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Ink_Canvas.Properties.Resources.resources E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass.csproj.GenerateResource.cache @@ -391,3 +382,12 @@ E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass.sourc E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanva.0F57E7D5.Up2Date E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass.exe E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\InkCanvasForClass.exe.config +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\App.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\MainWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\CountdownTimerWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\CycleProcessBar.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\HasNewUpdateWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\NamesInputWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\OperatingGuideWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\RandWindow.baml +E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\obj\Debug\net472\Windows\YesOrNoNotificationWindow.baml diff --git a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources index b37af4e591d147e08f9ee58af8503a0087100400..5de98a0df7915962f28de21fdbe4cbafe6212089 100644 GIT binary patch delta 139413 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 z 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 diff --git a/Ink Canvas/obj/Debug/net472/MainWindow.g.cs b/Ink Canvas/obj/Debug/net472/MainWindow.g.cs index 9d60eebd..a09d6ec1 100644 --- a/Ink Canvas/obj/Debug/net472/MainWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/MainWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B973C9A13CFF3C19F61DB5B63D0BC9203F435B10" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7158EF500B0E626111E3DA2EB7F7E2C619CF99C3" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -67,7 +67,7 @@ namespace Ink_Canvas { #line hidden - #line 107 "..\..\..\MainWindow.xaml" + #line 170 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid Main_Grid; @@ -75,7 +75,7 @@ namespace Ink_Canvas { #line hidden - #line 110 "..\..\..\MainWindow.xaml" + #line 173 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BorderSettingsMask; @@ -83,7 +83,7 @@ namespace Ink_Canvas { #line hidden - #line 112 "..\..\..\MainWindow.xaml" + #line 175 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderSettings; @@ -91,7 +91,7 @@ namespace Ink_Canvas { #line hidden - #line 118 "..\..\..\MainWindow.xaml" + #line 469 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx SettingsPanelScrollViewer; @@ -99,7 +99,7 @@ namespace Ink_Canvas { #line hidden - #line 305 "..\..\..\MainWindow.xaml" + #line 656 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsAutoUpdate; @@ -107,7 +107,7 @@ namespace Ink_Canvas { #line hidden - #line 309 "..\..\..\MainWindow.xaml" + #line 660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsAutoUpdateWithSilence; @@ -115,7 +115,7 @@ namespace Ink_Canvas { #line hidden - #line 318 "..\..\..\MainWindow.xaml" + #line 669 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel AutoUpdateTimePeriodBlock; @@ -123,7 +123,7 @@ namespace Ink_Canvas { #line hidden - #line 327 "..\..\..\MainWindow.xaml" + #line 678 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox AutoUpdateWithSilenceStartTimeComboBox; @@ -131,7 +131,7 @@ namespace Ink_Canvas { #line hidden - #line 335 "..\..\..\MainWindow.xaml" + #line 686 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox AutoUpdateWithSilenceEndTimeComboBox; @@ -139,7 +139,7 @@ namespace Ink_Canvas { #line hidden - #line 350 "..\..\..\MainWindow.xaml" + #line 701 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchRunAtStartup; @@ -147,7 +147,7 @@ namespace Ink_Canvas { #line hidden - #line 357 "..\..\..\MainWindow.xaml" + #line 708 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchFoldAtStartup; @@ -155,7 +155,7 @@ namespace Ink_Canvas { #line hidden - #line 376 "..\..\..\MainWindow.xaml" + #line 727 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowCursor; @@ -163,7 +163,7 @@ namespace Ink_Canvas { #line hidden - #line 383 "..\..\..\MainWindow.xaml" + #line 734 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnablePressureTouchMode; @@ -171,7 +171,7 @@ namespace Ink_Canvas { #line hidden - #line 391 "..\..\..\MainWindow.xaml" + #line 742 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDisablePressure; @@ -179,7 +179,7 @@ namespace Ink_Canvas { #line hidden - #line 400 "..\..\..\MainWindow.xaml" + #line 751 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxEraserSize; @@ -187,7 +187,7 @@ namespace Ink_Canvas { #line hidden - #line 417 "..\..\..\MainWindow.xaml" + #line 768 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchHideStrokeWhenSelecting; @@ -195,7 +195,7 @@ namespace Ink_Canvas { #line hidden - #line 427 "..\..\..\MainWindow.xaml" + #line 778 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchClearCanvasAndClearTimeMachine; @@ -203,7 +203,7 @@ namespace Ink_Canvas { #line hidden - #line 436 "..\..\..\MainWindow.xaml" + #line 787 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxHyperbolaAsymptoteOption; @@ -211,7 +211,7 @@ namespace Ink_Canvas { #line hidden - #line 449 "..\..\..\MainWindow.xaml" + #line 800 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchFitToCurve; @@ -219,7 +219,7 @@ namespace Ink_Canvas { #line hidden - #line 464 "..\..\..\MainWindow.xaml" + #line 815 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton RadioCrashSilentRestart; @@ -227,7 +227,7 @@ namespace Ink_Canvas { #line hidden - #line 467 "..\..\..\MainWindow.xaml" + #line 818 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton RadioCrashNoAction; @@ -235,7 +235,7 @@ namespace Ink_Canvas { #line hidden - #line 484 "..\..\..\MainWindow.xaml" + #line 835 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSwitchTwoFingerGesture; @@ -243,7 +243,7 @@ namespace Ink_Canvas { #line hidden - #line 496 "..\..\..\MainWindow.xaml" + #line 847 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerRotationOnSelection; @@ -251,7 +251,7 @@ namespace Ink_Canvas { #line hidden - #line 504 "..\..\..\MainWindow.xaml" + #line 855 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxInkRecognition; @@ -259,7 +259,7 @@ namespace Ink_Canvas { #line hidden - #line 513 "..\..\..\MainWindow.xaml" + #line 864 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShape; @@ -267,7 +267,7 @@ namespace Ink_Canvas { #line hidden - #line 523 "..\..\..\MainWindow.xaml" + #line 874 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShapeNoFakePressureRectangle; @@ -275,7 +275,7 @@ namespace Ink_Canvas { #line hidden - #line 532 "..\..\..\MainWindow.xaml" + #line 883 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShapeNoFakePressureTriangle; @@ -283,7 +283,7 @@ namespace Ink_Canvas { #line hidden - #line 540 "..\..\..\MainWindow.xaml" + #line 891 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeTriangle; @@ -291,7 +291,7 @@ namespace Ink_Canvas { #line hidden - #line 551 "..\..\..\MainWindow.xaml" + #line 902 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeRectangle; @@ -299,7 +299,7 @@ namespace Ink_Canvas { #line hidden - #line 562 "..\..\..\MainWindow.xaml" + #line 913 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeRounded; @@ -307,7 +307,7 @@ namespace Ink_Canvas { #line hidden - #line 578 "..\..\..\MainWindow.xaml" + #line 929 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoStraightenLine; @@ -315,7 +315,7 @@ namespace Ink_Canvas { #line hidden - #line 586 "..\..\..\MainWindow.xaml" + #line 937 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider AutoStraightenLineThresholdSlider; @@ -323,7 +323,7 @@ namespace Ink_Canvas { #line hidden - #line 598 "..\..\..\MainWindow.xaml" + #line 949 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchLineEndpointSnapping; @@ -331,7 +331,7 @@ namespace Ink_Canvas { #line hidden - #line 606 "..\..\..\MainWindow.xaml" + #line 957 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider LineEndpointSnappingThresholdSlider; @@ -339,7 +339,7 @@ namespace Ink_Canvas { #line hidden - #line 615 "..\..\..\MainWindow.xaml" + #line 966 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxAppearanceNewUI; @@ -347,7 +347,7 @@ namespace Ink_Canvas { #line hidden - #line 624 "..\..\..\MainWindow.xaml" + #line 975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxFloatingBarImg; @@ -355,7 +355,7 @@ namespace Ink_Canvas { #line hidden - #line 640 "..\..\..\MainWindow.xaml" + #line 991 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarScaleTransformValueSlider; @@ -363,7 +363,7 @@ namespace Ink_Canvas { #line hidden - #line 653 "..\..\..\MainWindow.xaml" + #line 1004 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarOpacityValueSlider; @@ -371,7 +371,7 @@ namespace Ink_Canvas { #line hidden - #line 666 "..\..\..\MainWindow.xaml" + #line 1017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarOpacityInPPTValueSlider; @@ -379,7 +379,7 @@ namespace Ink_Canvas { #line hidden - #line 684 "..\..\..\MainWindow.xaml" + #line 1035 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableDisPlayNibModeToggle; @@ -387,7 +387,7 @@ namespace Ink_Canvas { #line hidden - #line 699 "..\..\..\MainWindow.xaml" + #line 1050 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableViewboxBlackBoardScaleTransform; @@ -395,7 +395,7 @@ namespace Ink_Canvas { #line hidden - #line 707 "..\..\..\MainWindow.xaml" + #line 1058 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTimeDisplayInWhiteboardMode; @@ -403,7 +403,7 @@ namespace Ink_Canvas { #line hidden - #line 716 "..\..\..\MainWindow.xaml" + #line 1067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableChickenSoupInWhiteboardMode; @@ -411,7 +411,7 @@ namespace Ink_Canvas { #line hidden - #line 723 "..\..\..\MainWindow.xaml" + #line 1074 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxChickenSoupSource; @@ -419,7 +419,7 @@ namespace Ink_Canvas { #line hidden - #line 736 "..\..\..\MainWindow.xaml" + #line 1087 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableQuickPanel; @@ -427,7 +427,7 @@ namespace Ink_Canvas { #line hidden - #line 743 "..\..\..\MainWindow.xaml" + #line 1094 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxUnFoldBtnImg; @@ -435,7 +435,7 @@ namespace Ink_Canvas { #line hidden - #line 779 "..\..\..\MainWindow.xaml" + #line 1130 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCTrayIconExampleImage; @@ -443,7 +443,7 @@ namespace Ink_Canvas { #line hidden - #line 790 "..\..\..\MainWindow.xaml" + #line 1141 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTrayIcon; @@ -451,7 +451,7 @@ namespace Ink_Canvas { #line hidden - #line 809 "..\..\..\MainWindow.xaml" + #line 1160 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSupportPowerPoint; @@ -459,7 +459,7 @@ namespace Ink_Canvas { #line hidden - #line 818 "..\..\..\MainWindow.xaml" + #line 1169 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSupportWPS; @@ -467,7 +467,7 @@ namespace Ink_Canvas { #line hidden - #line 854 "..\..\..\MainWindow.xaml" + #line 1205 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewLS; @@ -475,7 +475,7 @@ namespace Ink_Canvas { #line hidden - #line 858 "..\..\..\MainWindow.xaml" + #line 1209 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.TranslateTransform PPTBtnPreviewLSTransform; @@ -483,7 +483,7 @@ namespace Ink_Canvas { #line hidden - #line 862 "..\..\..\MainWindow.xaml" + #line 1213 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewRS; @@ -491,7 +491,7 @@ namespace Ink_Canvas { #line hidden - #line 866 "..\..\..\MainWindow.xaml" + #line 1217 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.TranslateTransform PPTBtnPreviewRSTransform; @@ -499,7 +499,7 @@ namespace Ink_Canvas { #line hidden - #line 870 "..\..\..\MainWindow.xaml" + #line 1221 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewLB; @@ -507,7 +507,7 @@ namespace Ink_Canvas { #line hidden - #line 872 "..\..\..\MainWindow.xaml" + #line 1223 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewRB; @@ -515,7 +515,7 @@ namespace Ink_Canvas { #line hidden - #line 880 "..\..\..\MainWindow.xaml" + #line 1231 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowPPTButton; @@ -523,7 +523,7 @@ namespace Ink_Canvas { #line hidden - #line 884 "..\..\..\MainWindow.xaml" + #line 1235 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel PPTButtonSettingsPanel; @@ -531,7 +531,7 @@ namespace Ink_Canvas { #line hidden - #line 888 "..\..\..\MainWindow.xaml" + #line 1239 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableLBPPTButton; @@ -539,7 +539,7 @@ namespace Ink_Canvas { #line hidden - #line 893 "..\..\..\MainWindow.xaml" + #line 1244 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableRBPPTButton; @@ -547,7 +547,7 @@ namespace Ink_Canvas { #line hidden - #line 898 "..\..\..\MainWindow.xaml" + #line 1249 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableLSPPTButton; @@ -555,7 +555,7 @@ namespace Ink_Canvas { #line hidden - #line 903 "..\..\..\MainWindow.xaml" + #line 1254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableRSPPTButton; @@ -563,7 +563,7 @@ namespace Ink_Canvas { #line hidden - #line 912 "..\..\..\MainWindow.xaml" + #line 1263 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider PPTButtonLeftPositionValueSlider; @@ -571,7 +571,7 @@ namespace Ink_Canvas { #line hidden - #line 918 "..\..\..\MainWindow.xaml" + #line 1269 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSPlusBtn; @@ -579,7 +579,7 @@ namespace Ink_Canvas { #line hidden - #line 933 "..\..\..\MainWindow.xaml" + #line 1284 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSMinusBtn; @@ -587,7 +587,7 @@ namespace Ink_Canvas { #line hidden - #line 948 "..\..\..\MainWindow.xaml" + #line 1299 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSSyncBtn; @@ -595,7 +595,7 @@ namespace Ink_Canvas { #line hidden - #line 963 "..\..\..\MainWindow.xaml" + #line 1314 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSResetBtn; @@ -603,7 +603,7 @@ namespace Ink_Canvas { #line hidden - #line 986 "..\..\..\MainWindow.xaml" + #line 1337 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider PPTButtonRightPositionValueSlider; @@ -611,7 +611,7 @@ namespace Ink_Canvas { #line hidden - #line 992 "..\..\..\MainWindow.xaml" + #line 1343 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSPlusBtn; @@ -619,7 +619,7 @@ namespace Ink_Canvas { #line hidden - #line 1007 "..\..\..\MainWindow.xaml" + #line 1358 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSMinusBtn; @@ -627,7 +627,7 @@ namespace Ink_Canvas { #line hidden - #line 1022 "..\..\..\MainWindow.xaml" + #line 1373 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSSyncBtn; @@ -635,7 +635,7 @@ namespace Ink_Canvas { #line hidden - #line 1037 "..\..\..\MainWindow.xaml" + #line 1388 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSResetBtn; @@ -643,7 +643,7 @@ namespace Ink_Canvas { #line hidden - #line 1064 "..\..\..\MainWindow.xaml" + #line 1415 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTDisplayPage; @@ -651,7 +651,7 @@ namespace Ink_Canvas { #line hidden - #line 1069 "..\..\..\MainWindow.xaml" + #line 1420 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTHalfOpacity; @@ -659,7 +659,7 @@ namespace Ink_Canvas { #line hidden - #line 1076 "..\..\..\MainWindow.xaml" + #line 1427 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTBlackBackground; @@ -667,7 +667,7 @@ namespace Ink_Canvas { #line hidden - #line 1086 "..\..\..\MainWindow.xaml" + #line 1437 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTDisplayPage; @@ -675,7 +675,7 @@ namespace Ink_Canvas { #line hidden - #line 1091 "..\..\..\MainWindow.xaml" + #line 1442 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTHalfOpacity; @@ -683,7 +683,7 @@ namespace Ink_Canvas { #line hidden - #line 1097 "..\..\..\MainWindow.xaml" + #line 1448 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTBlackBackground; @@ -691,7 +691,7 @@ namespace Ink_Canvas { #line hidden - #line 1109 "..\..\..\MainWindow.xaml" + #line 1460 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnablePPTButtonPageClickable; @@ -699,7 +699,7 @@ namespace Ink_Canvas { #line hidden - #line 1120 "..\..\..\MainWindow.xaml" + #line 1471 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SettingsShowCanvasAtNewSlideShowStackPanel; @@ -707,7 +707,7 @@ namespace Ink_Canvas { #line hidden - #line 1125 "..\..\..\MainWindow.xaml" + #line 1476 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowCanvasAtNewSlideShow; @@ -715,7 +715,7 @@ namespace Ink_Canvas { #line hidden - #line 1129 "..\..\..\MainWindow.xaml" + #line 1480 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border SettingsPPTInkingAndAutoFoldExplictBorder; @@ -723,7 +723,7 @@ namespace Ink_Canvas { #line hidden - #line 1153 "..\..\..\MainWindow.xaml" + #line 1504 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerGestureInPresentationMode; @@ -731,7 +731,7 @@ namespace Ink_Canvas { #line hidden - #line 1161 "..\..\..\MainWindow.xaml" + #line 1512 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableFingerGestureSlideShowControl; @@ -739,7 +739,7 @@ namespace Ink_Canvas { #line hidden - #line 1174 "..\..\..\MainWindow.xaml" + #line 1525 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveScreenShotInPowerPoint; @@ -747,7 +747,7 @@ namespace Ink_Canvas { #line hidden - #line 1184 "..\..\..\MainWindow.xaml" + #line 1535 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesInPowerPoint; @@ -755,7 +755,7 @@ namespace Ink_Canvas { #line hidden - #line 1196 "..\..\..\MainWindow.xaml" + #line 1547 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyPreviousPage; @@ -763,7 +763,7 @@ namespace Ink_Canvas { #line hidden - #line 1203 "..\..\..\MainWindow.xaml" + #line 1554 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyHiddenPage; @@ -771,7 +771,7 @@ namespace Ink_Canvas { #line hidden - #line 1211 "..\..\..\MainWindow.xaml" + #line 1562 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyAutoPlayPresentation; @@ -779,7 +779,7 @@ namespace Ink_Canvas { #line hidden - #line 1229 "..\..\..\MainWindow.xaml" + #line 1580 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsSpecialScreen; @@ -787,7 +787,7 @@ namespace Ink_Canvas { #line hidden - #line 1238 "..\..\..\MainWindow.xaml" + #line 1589 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider TouchMultiplierSlider; @@ -795,7 +795,7 @@ namespace Ink_Canvas { #line hidden - #line 1259 "..\..\..\MainWindow.xaml" + #line 1610 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockShowCalculatedMultiplier; @@ -803,7 +803,7 @@ namespace Ink_Canvas { #line hidden - #line 1267 "..\..\..\MainWindow.xaml" + #line 1618 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEraserBindTouchMultiplier; @@ -811,7 +811,7 @@ namespace Ink_Canvas { #line hidden - #line 1277 "..\..\..\MainWindow.xaml" + #line 1628 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider NibModeBoundsWidthSlider; @@ -819,7 +819,7 @@ namespace Ink_Canvas { #line hidden - #line 1289 "..\..\..\MainWindow.xaml" + #line 1640 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider FingerModeBoundsWidthSlider; @@ -827,7 +827,7 @@ namespace Ink_Canvas { #line hidden - #line 1302 "..\..\..\MainWindow.xaml" + #line 1653 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsQuadIR; @@ -835,7 +835,7 @@ namespace Ink_Canvas { #line hidden - #line 1311 "..\..\..\MainWindow.xaml" + #line 1662 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsLogEnabled; @@ -843,7 +843,7 @@ namespace Ink_Canvas { #line hidden - #line 1320 "..\..\..\MainWindow.xaml" + #line 1671 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsSecondConfimeWhenShutdownApp; @@ -851,7 +851,7 @@ namespace Ink_Canvas { #line hidden - #line 1352 "..\..\..\MainWindow.xaml" + #line 1703 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableFullScreenHelper; @@ -859,7 +859,7 @@ namespace Ink_Canvas { #line hidden - #line 1385 "..\..\..\MainWindow.xaml" + #line 1736 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableAvoidFullScreenHelper; @@ -867,7 +867,7 @@ namespace Ink_Canvas { #line hidden - #line 1419 "..\..\..\MainWindow.xaml" + #line 1770 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableEdgeGestureUtil; @@ -875,7 +875,7 @@ namespace Ink_Canvas { #line hidden - #line 1456 "..\..\..\MainWindow.xaml" + #line 1807 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableForceFullScreen; @@ -883,7 +883,7 @@ namespace Ink_Canvas { #line hidden - #line 1488 "..\..\..\MainWindow.xaml" + #line 1839 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableDPIChangeDetection; @@ -891,7 +891,7 @@ namespace Ink_Canvas { #line hidden - #line 1520 "..\..\..\MainWindow.xaml" + #line 1871 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableResolutionChangeDetection; @@ -899,7 +899,7 @@ namespace Ink_Canvas { #line hidden - #line 1557 "..\..\..\MainWindow.xaml" + #line 1908 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote; @@ -907,7 +907,7 @@ namespace Ink_Canvas { #line hidden - #line 1570 "..\..\..\MainWindow.xaml" + #line 1921 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiCamera; @@ -915,7 +915,7 @@ namespace Ink_Canvas { #line hidden - #line 1583 "..\..\..\MainWindow.xaml" + #line 1934 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote3; @@ -923,7 +923,7 @@ namespace Ink_Canvas { #line hidden - #line 1596 "..\..\..\MainWindow.xaml" + #line 1947 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote3C; @@ -931,7 +931,7 @@ namespace Ink_Canvas { #line hidden - #line 1610 "..\..\..\MainWindow.xaml" + #line 1961 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote5C; @@ -939,7 +939,7 @@ namespace Ink_Canvas { #line hidden - #line 1624 "..\..\..\MainWindow.xaml" + #line 1975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInSeewoPincoTeacher; @@ -947,7 +947,7 @@ namespace Ink_Canvas { #line hidden - #line 1638 "..\..\..\MainWindow.xaml" + #line 1989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteTouchPro; @@ -955,7 +955,7 @@ namespace Ink_Canvas { #line hidden - #line 1652 "..\..\..\MainWindow.xaml" + #line 2003 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteCamera; @@ -963,7 +963,7 @@ namespace Ink_Canvas { #line hidden - #line 1666 "..\..\..\MainWindow.xaml" + #line 2017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteLightBoard; @@ -971,7 +971,7 @@ namespace Ink_Canvas { #line hidden - #line 1680 "..\..\..\MainWindow.xaml" + #line 2031 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInWxBoardMain; @@ -979,7 +979,7 @@ namespace Ink_Canvas { #line hidden - #line 1694 "..\..\..\MainWindow.xaml" + #line 2045 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInMSWhiteboard; @@ -987,7 +987,7 @@ namespace Ink_Canvas { #line hidden - #line 1708 "..\..\..\MainWindow.xaml" + #line 2059 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInAdmoxWhiteboard; @@ -995,7 +995,7 @@ namespace Ink_Canvas { #line hidden - #line 1722 "..\..\..\MainWindow.xaml" + #line 2073 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInAdmoxBooth; @@ -1003,7 +1003,7 @@ namespace Ink_Canvas { #line hidden - #line 1736 "..\..\..\MainWindow.xaml" + #line 2087 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInQPoint; @@ -1011,7 +1011,7 @@ namespace Ink_Canvas { #line hidden - #line 1749 "..\..\..\MainWindow.xaml" + #line 2100 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInYiYunVisualPresenter; @@ -1019,7 +1019,7 @@ namespace Ink_Canvas { #line hidden - #line 1765 "..\..\..\MainWindow.xaml" + #line 2116 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInMaxHubWhiteboard; @@ -1027,7 +1027,7 @@ namespace Ink_Canvas { #line hidden - #line 1778 "..\..\..\MainWindow.xaml" + #line 2129 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno; @@ -1035,7 +1035,7 @@ namespace Ink_Canvas { #line hidden - #line 1788 "..\..\..\MainWindow.xaml" + #line 2139 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInOldZyBoard; @@ -1043,7 +1043,7 @@ namespace Ink_Canvas { #line hidden - #line 1798 "..\..\..\MainWindow.xaml" + #line 2149 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInPPTSlideShow; @@ -1051,7 +1051,7 @@ namespace Ink_Canvas { #line hidden - #line 1813 "..\..\..\MainWindow.xaml" + #line 2164 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillPptService; @@ -1059,7 +1059,7 @@ namespace Ink_Canvas { #line hidden - #line 1825 "..\..\..\MainWindow.xaml" + #line 2176 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillEasiNote; @@ -1067,7 +1067,7 @@ namespace Ink_Canvas { #line hidden - #line 1836 "..\..\..\MainWindow.xaml" + #line 2187 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillHiteAnnotation; @@ -1075,7 +1075,7 @@ namespace Ink_Canvas { #line hidden - #line 1847 "..\..\..\MainWindow.xaml" + #line 2198 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillVComYouJiao; @@ -1083,7 +1083,7 @@ namespace Ink_Canvas { #line hidden - #line 1859 "..\..\..\MainWindow.xaml" + #line 2210 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation; @@ -1091,7 +1091,7 @@ namespace Ink_Canvas { #line hidden - #line 1880 "..\..\..\MainWindow.xaml" + #line 2231 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillInkCanvas; @@ -1099,7 +1099,7 @@ namespace Ink_Canvas { #line hidden - #line 1892 "..\..\..\MainWindow.xaml" + #line 2243 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillICA; @@ -1107,7 +1107,7 @@ namespace Ink_Canvas { #line hidden - #line 1903 "..\..\..\MainWindow.xaml" + #line 2254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillIDT; @@ -1115,7 +1115,7 @@ namespace Ink_Canvas { #line hidden - #line 1913 "..\..\..\MainWindow.xaml" + #line 2264 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesAtClear; @@ -1123,7 +1123,7 @@ namespace Ink_Canvas { #line hidden - #line 1921 "..\..\..\MainWindow.xaml" + #line 2272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSaveScreenshotsInDateFolders; @@ -1131,7 +1131,7 @@ namespace Ink_Canvas { #line hidden - #line 1929 "..\..\..\MainWindow.xaml" + #line 2280 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesAtScreenshot; @@ -1139,7 +1139,7 @@ namespace Ink_Canvas { #line hidden - #line 1938 "..\..\..\MainWindow.xaml" + #line 2289 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider SideControlMinimumAutomationSlider; @@ -1147,7 +1147,7 @@ namespace Ink_Canvas { #line hidden - #line 1954 "..\..\..\MainWindow.xaml" + #line 2305 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox AutoSavedStrokesLocation; @@ -1155,7 +1155,7 @@ namespace Ink_Canvas { #line hidden - #line 1958 "..\..\..\MainWindow.xaml" + #line 2309 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button AutoSavedStrokesLocationButton; @@ -1163,7 +1163,7 @@ namespace Ink_Canvas { #line hidden - #line 1962 "..\..\..\MainWindow.xaml" + #line 2313 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button SetAutoSavedStrokesLocationToDiskDButton; @@ -1171,7 +1171,7 @@ namespace Ink_Canvas { #line hidden - #line 1965 "..\..\..\MainWindow.xaml" + #line 2316 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button SetAutoSavedStrokesLocationToDocumentFolderButton; @@ -1179,7 +1179,7 @@ namespace Ink_Canvas { #line hidden - #line 1979 "..\..\..\MainWindow.xaml" + #line 2330 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoDelSavedFiles; @@ -1187,7 +1187,7 @@ namespace Ink_Canvas { #line hidden - #line 1990 "..\..\..\MainWindow.xaml" + #line 2341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxAutoDelSavedFilesDaysThreshold; @@ -1195,7 +1195,7 @@ namespace Ink_Canvas { #line hidden - #line 2009 "..\..\..\MainWindow.xaml" + #line 2360 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxRandWindow; @@ -1203,7 +1203,7 @@ namespace Ink_Canvas { #line hidden - #line 2019 "..\..\..\MainWindow.xaml" + #line 2370 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDisplayRandWindowNamesInputBtn; @@ -1211,7 +1211,7 @@ namespace Ink_Canvas { #line hidden - #line 2028 "..\..\..\MainWindow.xaml" + #line 2379 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowRandomAndSingleDraw; @@ -1219,7 +1219,7 @@ namespace Ink_Canvas { #line hidden - #line 2038 "..\..\..\MainWindow.xaml" + #line 2389 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider RandWindowOnceCloseLatencySlider; @@ -1227,7 +1227,7 @@ namespace Ink_Canvas { #line hidden - #line 2054 "..\..\..\MainWindow.xaml" + #line 2405 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider RandWindowOnceMaxStudentsSlider; @@ -1235,7 +1235,7 @@ namespace Ink_Canvas { #line hidden - #line 2073 "..\..\..\MainWindow.xaml" + #line 2424 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock AppVersionTextBlock; @@ -1243,7 +1243,7 @@ namespace Ink_Canvas { #line hidden - #line 2438 "..\..\..\MainWindow.xaml" + #line 2775 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridBackgroundCoverHolder; @@ -1251,7 +1251,7 @@ namespace Ink_Canvas { #line hidden - #line 2439 "..\..\..\MainWindow.xaml" + #line 2776 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridBackgroundCover; @@ -1259,7 +1259,7 @@ namespace Ink_Canvas { #line hidden - #line 2440 "..\..\..\MainWindow.xaml" + #line 2777 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCWaterMarkWhite; @@ -1267,7 +1267,7 @@ namespace Ink_Canvas { #line hidden - #line 2442 "..\..\..\MainWindow.xaml" + #line 2779 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCWaterMarkDark; @@ -1275,7 +1275,7 @@ namespace Ink_Canvas { #line hidden - #line 2446 "..\..\..\MainWindow.xaml" + #line 2783 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridTransparencyFakeBackground; @@ -1283,7 +1283,7 @@ namespace Ink_Canvas { #line hidden - #line 2447 "..\..\..\MainWindow.xaml" + #line 2784 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label Label; @@ -1291,7 +1291,7 @@ namespace Ink_Canvas { #line hidden - #line 2448 "..\..\..\MainWindow.xaml" + #line 2785 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid InkCanvasGridForInkReplay; @@ -1299,7 +1299,7 @@ namespace Ink_Canvas { #line hidden - #line 2449 "..\..\..\MainWindow.xaml" + #line 2786 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.InkCanvas inkCanvas; @@ -1307,7 +1307,7 @@ namespace Ink_Canvas { #line hidden - #line 2469 "..\..\..\MainWindow.xaml" + #line 2806 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WaterMarkTime; @@ -1315,7 +1315,7 @@ namespace Ink_Canvas { #line hidden - #line 2471 "..\..\..\MainWindow.xaml" + #line 2808 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WaterMarkDate; @@ -1323,7 +1323,7 @@ namespace Ink_Canvas { #line hidden - #line 2474 "..\..\..\MainWindow.xaml" + #line 2811 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BlackBoardWaterMark; @@ -1331,7 +1331,7 @@ namespace Ink_Canvas { #line hidden - #line 2478 "..\..\..\MainWindow.xaml" + #line 2815 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridInkCanvasSelectionCover; @@ -1339,7 +1339,7 @@ namespace Ink_Canvas { #line hidden - #line 2490 "..\..\..\MainWindow.xaml" + #line 2827 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionControl; @@ -1347,7 +1347,7 @@ namespace Ink_Canvas { #line hidden - #line 2498 "..\..\..\MainWindow.xaml" + #line 2835 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionClone; @@ -1355,7 +1355,7 @@ namespace Ink_Canvas { #line hidden - #line 2508 "..\..\..\MainWindow.xaml" + #line 2845 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionCloneToNewBoard; @@ -1363,7 +1363,7 @@ namespace Ink_Canvas { #line hidden - #line 2637 "..\..\..\MainWindow.xaml" + #line 2974 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardUIGridForInkReplay; @@ -1371,7 +1371,7 @@ namespace Ink_Canvas { #line hidden - #line 2640 "..\..\..\MainWindow.xaml" + #line 2977 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBlackboardLeftSide; @@ -1379,7 +1379,7 @@ namespace Ink_Canvas { #line hidden - #line 2642 "..\..\..\MainWindow.xaml" + #line 2979 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardLeftSide; @@ -1387,7 +1387,7 @@ namespace Ink_Canvas { #line hidden - #line 2661 "..\..\..\MainWindow.xaml" + #line 2998 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnLeftWhiteBoardSwitchPreviousGeometry; @@ -1395,7 +1395,7 @@ namespace Ink_Canvas { #line hidden - #line 2670 "..\..\..\MainWindow.xaml" + #line 3007 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnLeftWhiteBoardSwitchPreviousLabel; @@ -1403,7 +1403,7 @@ namespace Ink_Canvas { #line hidden - #line 2674 "..\..\..\MainWindow.xaml" + #line 3011 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BtnLeftPageListWB; @@ -1411,7 +1411,7 @@ namespace Ink_Canvas { #line hidden - #line 2687 "..\..\..\MainWindow.xaml" + #line 3024 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderLeftPageListView; @@ -1419,7 +1419,7 @@ namespace Ink_Canvas { #line hidden - #line 2692 "..\..\..\MainWindow.xaml" + #line 3029 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx BlackBoardLeftSidePageListScrollViewer; @@ -1427,7 +1427,7 @@ namespace Ink_Canvas { #line hidden - #line 2699 "..\..\..\MainWindow.xaml" + #line 3036 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ListView BlackBoardLeftSidePageListView; @@ -1435,7 +1435,7 @@ namespace Ink_Canvas { #line hidden - #line 2749 "..\..\..\MainWindow.xaml" + #line 3086 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnLeftWhiteBoardSwitchNextGeometry; @@ -1443,7 +1443,7 @@ namespace Ink_Canvas { #line hidden - #line 2758 "..\..\..\MainWindow.xaml" + #line 3095 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnLeftWhiteBoardSwitchNextLabel; @@ -1451,7 +1451,7 @@ namespace Ink_Canvas { #line hidden - #line 2792 "..\..\..\MainWindow.xaml" + #line 3129 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.ScaleTransform ViewboxBlackboardCenterSideScaleTransform; @@ -1459,7 +1459,7 @@ namespace Ink_Canvas { #line hidden - #line 2794 "..\..\..\MainWindow.xaml" + #line 3131 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardCenterSide; @@ -1467,7 +1467,7 @@ namespace Ink_Canvas { #line hidden - #line 2799 "..\..\..\MainWindow.xaml" + #line 3136 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardGesture; @@ -1475,7 +1475,7 @@ namespace Ink_Canvas { #line hidden - #line 2810 "..\..\..\MainWindow.xaml" + #line 3147 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardGestureGeometry; @@ -1483,7 +1483,7 @@ namespace Ink_Canvas { #line hidden - #line 2813 "..\..\..\MainWindow.xaml" + #line 3150 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardGestureGeometry2; @@ -1491,7 +1491,7 @@ namespace Ink_Canvas { #line hidden - #line 2822 "..\..\..\MainWindow.xaml" + #line 3159 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardGestureLabel; @@ -1499,7 +1499,7 @@ namespace Ink_Canvas { #line hidden - #line 2827 "..\..\..\MainWindow.xaml" + #line 3164 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardTwoFingerGestureBorder; @@ -1507,7 +1507,7 @@ namespace Ink_Canvas { #line hidden - #line 2857 "..\..\..\MainWindow.xaml" + #line 3194 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableMultiTouchMode; @@ -1515,7 +1515,7 @@ namespace Ink_Canvas { #line hidden - #line 2888 "..\..\..\MainWindow.xaml" + #line 3225 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerTranslate; @@ -1523,7 +1523,7 @@ namespace Ink_Canvas { #line hidden - #line 2921 "..\..\..\MainWindow.xaml" + #line 3258 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerZoom; @@ -1531,7 +1531,7 @@ namespace Ink_Canvas { #line hidden - #line 2950 "..\..\..\MainWindow.xaml" + #line 3287 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerRotation; @@ -1539,7 +1539,7 @@ namespace Ink_Canvas { #line hidden - #line 2997 "..\..\..\MainWindow.xaml" + #line 3334 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardSelect; @@ -1547,7 +1547,7 @@ namespace Ink_Canvas { #line hidden - #line 3009 "..\..\..\MainWindow.xaml" + #line 3346 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardSelectGeometry; @@ -1555,7 +1555,7 @@ namespace Ink_Canvas { #line hidden - #line 3018 "..\..\..\MainWindow.xaml" + #line 3355 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardSelectLabel; @@ -1563,7 +1563,7 @@ namespace Ink_Canvas { #line hidden - #line 3022 "..\..\..\MainWindow.xaml" + #line 3359 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardPen; @@ -1571,7 +1571,7 @@ namespace Ink_Canvas { #line hidden - #line 3026 "..\..\..\MainWindow.xaml" + #line 3363 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image BoardPenIcon; @@ -1579,7 +1579,7 @@ namespace Ink_Canvas { #line hidden - #line 3032 "..\..\..\MainWindow.xaml" + #line 3369 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardPenGeometry; @@ -1587,7 +1587,7 @@ namespace Ink_Canvas { #line hidden - #line 3041 "..\..\..\MainWindow.xaml" + #line 3378 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardPenLabel; @@ -1595,7 +1595,7 @@ namespace Ink_Canvas { #line hidden - #line 3047 "..\..\..\MainWindow.xaml" + #line 3384 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BoardPenPaletteGrid; @@ -1603,7 +1603,7 @@ namespace Ink_Canvas { #line hidden - #line 3057 "..\..\..\MainWindow.xaml" + #line 3394 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardPenPalette; @@ -1611,7 +1611,7 @@ namespace Ink_Canvas { #line hidden - #line 3072 "..\..\..\MainWindow.xaml" + #line 3409 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardDefaultPenTabButton; @@ -1619,7 +1619,7 @@ namespace Ink_Canvas { #line hidden - #line 3079 "..\..\..\MainWindow.xaml" + #line 3416 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardDefaultPenTabButtonIndicator; @@ -1627,7 +1627,7 @@ namespace Ink_Canvas { #line hidden - #line 3100 "..\..\..\MainWindow.xaml" + #line 3437 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardDefaultPenTabButtonText; @@ -1635,7 +1635,7 @@ namespace Ink_Canvas { #line hidden - #line 3110 "..\..\..\MainWindow.xaml" + #line 3447 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlightPenTabButton; @@ -1643,7 +1643,7 @@ namespace Ink_Canvas { #line hidden - #line 3117 "..\..\..\MainWindow.xaml" + #line 3454 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardHighlightPenTabButtonIndicator; @@ -1651,7 +1651,7 @@ namespace Ink_Canvas { #line hidden - #line 3137 "..\..\..\MainWindow.xaml" + #line 3474 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardHighlightPenTabButtonText; @@ -1659,7 +1659,7 @@ namespace Ink_Canvas { #line hidden - #line 3157 "..\..\..\MainWindow.xaml" + #line 3494 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardDefaultPenPropsPanel; @@ -1667,7 +1667,7 @@ namespace Ink_Canvas { #line hidden - #line 3172 "..\..\..\MainWindow.xaml" + #line 3509 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BoardComboBoxPenStyle; @@ -1675,7 +1675,7 @@ namespace Ink_Canvas { #line hidden - #line 3187 "..\..\..\MainWindow.xaml" + #line 3524 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardNibModeSimpleStackPanel; @@ -1683,7 +1683,7 @@ namespace Ink_Canvas { #line hidden - #line 3192 "..\..\..\MainWindow.xaml" + #line 3529 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableNibMode; @@ -1691,7 +1691,7 @@ namespace Ink_Canvas { #line hidden - #line 3222 "..\..\..\MainWindow.xaml" + #line 3559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardInkWidthSlider; @@ -1699,7 +1699,7 @@ namespace Ink_Canvas { #line hidden - #line 3240 "..\..\..\MainWindow.xaml" + #line 3577 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardInkAlphaSlider; @@ -1707,7 +1707,7 @@ namespace Ink_Canvas { #line hidden - #line 3257 "..\..\..\MainWindow.xaml" + #line 3594 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenPropsPanel; @@ -1715,7 +1715,7 @@ namespace Ink_Canvas { #line hidden - #line 3268 "..\..\..\MainWindow.xaml" + #line 3605 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardHighlighterWidthSlider; @@ -1723,7 +1723,7 @@ namespace Ink_Canvas { #line hidden - #line 3284 "..\..\..\MainWindow.xaml" + #line 3621 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardDefaultPenColorsPanel; @@ -1731,7 +1731,7 @@ namespace Ink_Canvas { #line hidden - #line 3304 "..\..\..\MainWindow.xaml" + #line 3641 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image BoardColorThemeSwitchIcon; @@ -1739,7 +1739,7 @@ namespace Ink_Canvas { #line hidden - #line 3312 "..\..\..\MainWindow.xaml" + #line 3649 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardColorThemeSwitchTextBlock; @@ -1747,7 +1747,7 @@ namespace Ink_Canvas { #line hidden - #line 3321 "..\..\..\MainWindow.xaml" + #line 3658 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorBlack; @@ -1755,7 +1755,7 @@ namespace Ink_Canvas { #line hidden - #line 3329 "..\..\..\MainWindow.xaml" + #line 3666 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorBlackContent; @@ -1763,7 +1763,7 @@ namespace Ink_Canvas { #line hidden - #line 3342 "..\..\..\MainWindow.xaml" + #line 3679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorWhite; @@ -1771,7 +1771,7 @@ namespace Ink_Canvas { #line hidden - #line 3350 "..\..\..\MainWindow.xaml" + #line 3687 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorWhiteContent; @@ -1779,7 +1779,7 @@ namespace Ink_Canvas { #line hidden - #line 3362 "..\..\..\MainWindow.xaml" + #line 3699 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorRed; @@ -1787,7 +1787,7 @@ namespace Ink_Canvas { #line hidden - #line 3370 "..\..\..\MainWindow.xaml" + #line 3707 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorRedContent; @@ -1795,7 +1795,7 @@ namespace Ink_Canvas { #line hidden - #line 3383 "..\..\..\MainWindow.xaml" + #line 3720 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorYellow; @@ -1803,7 +1803,7 @@ namespace Ink_Canvas { #line hidden - #line 3391 "..\..\..\MainWindow.xaml" + #line 3728 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorYellowContent; @@ -1811,7 +1811,7 @@ namespace Ink_Canvas { #line hidden - #line 3412 "..\..\..\MainWindow.xaml" + #line 3749 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorGreen; @@ -1819,7 +1819,7 @@ namespace Ink_Canvas { #line hidden - #line 3420 "..\..\..\MainWindow.xaml" + #line 3757 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorGreenContent; @@ -1827,7 +1827,7 @@ namespace Ink_Canvas { #line hidden - #line 3433 "..\..\..\MainWindow.xaml" + #line 3770 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorBlue; @@ -1835,7 +1835,7 @@ namespace Ink_Canvas { #line hidden - #line 3441 "..\..\..\MainWindow.xaml" + #line 3778 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorBlueContent; @@ -1843,7 +1843,7 @@ namespace Ink_Canvas { #line hidden - #line 3454 "..\..\..\MainWindow.xaml" + #line 3791 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorPink; @@ -1851,7 +1851,7 @@ namespace Ink_Canvas { #line hidden - #line 3462 "..\..\..\MainWindow.xaml" + #line 3799 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorPinkContent; @@ -1859,7 +1859,7 @@ namespace Ink_Canvas { #line hidden - #line 3475 "..\..\..\MainWindow.xaml" + #line 3812 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorTeal; @@ -1867,7 +1867,7 @@ namespace Ink_Canvas { #line hidden - #line 3483 "..\..\..\MainWindow.xaml" + #line 3820 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorTealContent; @@ -1875,7 +1875,7 @@ namespace Ink_Canvas { #line hidden - #line 3496 "..\..\..\MainWindow.xaml" + #line 3833 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorOrange; @@ -1883,7 +1883,7 @@ namespace Ink_Canvas { #line hidden - #line 3504 "..\..\..\MainWindow.xaml" + #line 3841 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorOrangeContent; @@ -1891,7 +1891,7 @@ namespace Ink_Canvas { #line hidden - #line 3522 "..\..\..\MainWindow.xaml" + #line 3859 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenColorsPanel; @@ -1899,7 +1899,7 @@ namespace Ink_Canvas { #line hidden - #line 3536 "..\..\..\MainWindow.xaml" + #line 3873 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorBlack; @@ -1907,7 +1907,7 @@ namespace Ink_Canvas { #line hidden - #line 3558 "..\..\..\MainWindow.xaml" + #line 3895 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorBlackContent; @@ -1915,7 +1915,7 @@ namespace Ink_Canvas { #line hidden - #line 3572 "..\..\..\MainWindow.xaml" + #line 3909 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorWhite; @@ -1923,7 +1923,7 @@ namespace Ink_Canvas { #line hidden - #line 3596 "..\..\..\MainWindow.xaml" + #line 3933 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorWhiteContent; @@ -1931,7 +1931,7 @@ namespace Ink_Canvas { #line hidden - #line 3610 "..\..\..\MainWindow.xaml" + #line 3947 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorRed; @@ -1939,7 +1939,7 @@ namespace Ink_Canvas { #line hidden - #line 3632 "..\..\..\MainWindow.xaml" + #line 3969 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorRedContent; @@ -1947,7 +1947,7 @@ namespace Ink_Canvas { #line hidden - #line 3646 "..\..\..\MainWindow.xaml" + #line 3983 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorYellow; @@ -1955,7 +1955,7 @@ namespace Ink_Canvas { #line hidden - #line 3668 "..\..\..\MainWindow.xaml" + #line 4005 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorYellowContent; @@ -1963,7 +1963,7 @@ namespace Ink_Canvas { #line hidden - #line 3682 "..\..\..\MainWindow.xaml" + #line 4019 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorGreen; @@ -1971,7 +1971,7 @@ namespace Ink_Canvas { #line hidden - #line 3704 "..\..\..\MainWindow.xaml" + #line 4041 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorGreenContent; @@ -1979,7 +1979,7 @@ namespace Ink_Canvas { #line hidden - #line 3725 "..\..\..\MainWindow.xaml" + #line 4062 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorZinc; @@ -1987,7 +1987,7 @@ namespace Ink_Canvas { #line hidden - #line 3747 "..\..\..\MainWindow.xaml" + #line 4084 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorZincContent; @@ -1995,7 +1995,7 @@ namespace Ink_Canvas { #line hidden - #line 3761 "..\..\..\MainWindow.xaml" + #line 4098 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorBlue; @@ -2003,7 +2003,7 @@ namespace Ink_Canvas { #line hidden - #line 3783 "..\..\..\MainWindow.xaml" + #line 4120 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorBlueContent; @@ -2011,7 +2011,7 @@ namespace Ink_Canvas { #line hidden - #line 3797 "..\..\..\MainWindow.xaml" + #line 4134 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenPenColorPurple; @@ -2019,7 +2019,7 @@ namespace Ink_Canvas { #line hidden - #line 3819 "..\..\..\MainWindow.xaml" + #line 4156 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorPurpleContent; @@ -2027,7 +2027,7 @@ namespace Ink_Canvas { #line hidden - #line 3833 "..\..\..\MainWindow.xaml" + #line 4170 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorTeal; @@ -2035,7 +2035,7 @@ namespace Ink_Canvas { #line hidden - #line 3855 "..\..\..\MainWindow.xaml" + #line 4192 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorTealContent; @@ -2043,7 +2043,7 @@ namespace Ink_Canvas { #line hidden - #line 3869 "..\..\..\MainWindow.xaml" + #line 4206 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorOrange; @@ -2051,7 +2051,7 @@ namespace Ink_Canvas { #line hidden - #line 3891 "..\..\..\MainWindow.xaml" + #line 4228 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorOrangeContent; @@ -2059,7 +2059,7 @@ namespace Ink_Canvas { #line hidden - #line 3916 "..\..\..\MainWindow.xaml" + #line 4253 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraser; @@ -2067,7 +2067,7 @@ namespace Ink_Canvas { #line hidden - #line 3926 "..\..\..\MainWindow.xaml" + #line 4263 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardEraserGeometry; @@ -2075,7 +2075,7 @@ namespace Ink_Canvas { #line hidden - #line 3935 "..\..\..\MainWindow.xaml" + #line 4272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardEraserLabel; @@ -2083,7 +2083,7 @@ namespace Ink_Canvas { #line hidden - #line 3950 "..\..\..\MainWindow.xaml" + #line 4287 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraserSizePanel; @@ -2091,7 +2091,7 @@ namespace Ink_Canvas { #line hidden - #line 3974 "..\..\..\MainWindow.xaml" + #line 4311 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BoardComboBoxEraserSize; @@ -2099,7 +2099,7 @@ namespace Ink_Canvas { #line hidden - #line 3998 "..\..\..\MainWindow.xaml" + #line 4335 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardCircleEraserTabButton; @@ -2107,7 +2107,7 @@ namespace Ink_Canvas { #line hidden - #line 4004 "..\..\..\MainWindow.xaml" + #line 4341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardCircleEraserTabButtonIndicator; @@ -2115,7 +2115,7 @@ namespace Ink_Canvas { #line hidden - #line 4017 "..\..\..\MainWindow.xaml" + #line 4354 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardCircleEraserTabButtonText; @@ -2123,7 +2123,7 @@ namespace Ink_Canvas { #line hidden - #line 4026 "..\..\..\MainWindow.xaml" + #line 4363 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardRectangleEraserTabButton; @@ -2131,7 +2131,7 @@ namespace Ink_Canvas { #line hidden - #line 4032 "..\..\..\MainWindow.xaml" + #line 4369 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardRectangleEraserTabButtonIndicator; @@ -2139,7 +2139,7 @@ namespace Ink_Canvas { #line hidden - #line 4044 "..\..\..\MainWindow.xaml" + #line 4381 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardRectangleEraserTabButtonText; @@ -2147,7 +2147,7 @@ namespace Ink_Canvas { #line hidden - #line 4132 "..\..\..\MainWindow.xaml" + #line 4469 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraserByStrokes; @@ -2155,7 +2155,7 @@ namespace Ink_Canvas { #line hidden - #line 4145 "..\..\..\MainWindow.xaml" + #line 4482 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardGeometry; @@ -2163,7 +2163,7 @@ namespace Ink_Canvas { #line hidden - #line 4171 "..\..\..\MainWindow.xaml" + #line 4508 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderDrawShape; @@ -2171,7 +2171,7 @@ namespace Ink_Canvas { #line hidden - #line 4197 "..\..\..\MainWindow.xaml" + #line 4534 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDrawShapeBorderAutoHide; @@ -2179,7 +2179,7 @@ namespace Ink_Canvas { #line hidden - #line 4206 "..\..\..\MainWindow.xaml" + #line 4543 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawLine; @@ -2187,7 +2187,7 @@ namespace Ink_Canvas { #line hidden - #line 4210 "..\..\..\MainWindow.xaml" + #line 4547 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawDashedLine; @@ -2195,7 +2195,7 @@ namespace Ink_Canvas { #line hidden - #line 4214 "..\..\..\MainWindow.xaml" + #line 4551 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawDotLine; @@ -2203,7 +2203,7 @@ namespace Ink_Canvas { #line hidden - #line 4218 "..\..\..\MainWindow.xaml" + #line 4555 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawArrow; @@ -2211,7 +2211,7 @@ namespace Ink_Canvas { #line hidden - #line 4222 "..\..\..\MainWindow.xaml" + #line 4559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawParallelLine; @@ -2219,7 +2219,7 @@ namespace Ink_Canvas { #line hidden - #line 4318 "..\..\..\MainWindow.xaml" + #line 4655 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardUndo; @@ -2227,7 +2227,7 @@ namespace Ink_Canvas { #line hidden - #line 4343 "..\..\..\MainWindow.xaml" + #line 4680 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardRedo; @@ -2235,7 +2235,7 @@ namespace Ink_Canvas { #line hidden - #line 4406 "..\..\..\MainWindow.xaml" + #line 4743 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderTools; @@ -2243,7 +2243,7 @@ namespace Ink_Canvas { #line hidden - #line 4454 "..\..\..\MainWindow.xaml" + #line 4791 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel RandomDrawPanel; @@ -2251,7 +2251,7 @@ namespace Ink_Canvas { #line hidden - #line 4474 "..\..\..\MainWindow.xaml" + #line 4811 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SingleDrawPanel; @@ -2259,7 +2259,7 @@ namespace Ink_Canvas { #line hidden - #line 4656 "..\..\..\MainWindow.xaml" + #line 4993 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBlackboardRightSide; @@ -2267,7 +2267,7 @@ namespace Ink_Canvas { #line hidden - #line 4658 "..\..\..\MainWindow.xaml" + #line 4995 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardRightSide; @@ -2275,7 +2275,7 @@ namespace Ink_Canvas { #line hidden - #line 4699 "..\..\..\MainWindow.xaml" + #line 5036 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnRightWhiteBoardSwitchPreviousGeometry; @@ -2283,7 +2283,7 @@ namespace Ink_Canvas { #line hidden - #line 4708 "..\..\..\MainWindow.xaml" + #line 5045 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnRightWhiteBoardSwitchPreviousLabel; @@ -2291,7 +2291,7 @@ namespace Ink_Canvas { #line hidden - #line 4712 "..\..\..\MainWindow.xaml" + #line 5049 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BtnRightPageListWB; @@ -2299,7 +2299,7 @@ namespace Ink_Canvas { #line hidden - #line 4725 "..\..\..\MainWindow.xaml" + #line 5062 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderRightPageListView; @@ -2307,7 +2307,7 @@ namespace Ink_Canvas { #line hidden - #line 4730 "..\..\..\MainWindow.xaml" + #line 5067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx BlackBoardRightSidePageListScrollViewer; @@ -2315,7 +2315,7 @@ namespace Ink_Canvas { #line hidden - #line 4737 "..\..\..\MainWindow.xaml" + #line 5074 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ListView BlackBoardRightSidePageListView; @@ -2323,7 +2323,7 @@ namespace Ink_Canvas { #line hidden - #line 4787 "..\..\..\MainWindow.xaml" + #line 5124 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnRightWhiteBoardSwitchNextGeometry; @@ -2331,7 +2331,7 @@ namespace Ink_Canvas { #line hidden - #line 4796 "..\..\..\MainWindow.xaml" + #line 5133 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnRightWhiteBoardSwitchNextLabel; @@ -2339,7 +2339,7 @@ namespace Ink_Canvas { #line hidden - #line 4810 "..\..\..\MainWindow.xaml" + #line 5147 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardAdd; @@ -2347,7 +2347,7 @@ namespace Ink_Canvas { #line hidden - #line 4816 "..\..\..\MainWindow.xaml" + #line 5153 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardSwitchPrevious; @@ -2355,7 +2355,7 @@ namespace Ink_Canvas { #line hidden - #line 4846 "..\..\..\MainWindow.xaml" + #line 5183 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockWhiteBoardIndexInfo; @@ -2363,7 +2363,7 @@ namespace Ink_Canvas { #line hidden - #line 4853 "..\..\..\MainWindow.xaml" + #line 5190 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardSwitchNext; @@ -2371,7 +2371,7 @@ namespace Ink_Canvas { #line hidden - #line 4882 "..\..\..\MainWindow.xaml" + #line 5219 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardDelete; @@ -2379,7 +2379,7 @@ namespace Ink_Canvas { #line hidden - #line 4895 "..\..\..\MainWindow.xaml" + #line 5232 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridNotifications; @@ -2387,7 +2387,7 @@ namespace Ink_Canvas { #line hidden - #line 4899 "..\..\..\MainWindow.xaml" + #line 5236 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockNotice; @@ -2395,7 +2395,7 @@ namespace Ink_Canvas { #line hidden - #line 4904 "..\..\..\MainWindow.xaml" + #line 5241 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewBoxStackPanelMain; @@ -2403,7 +2403,7 @@ namespace Ink_Canvas { #line hidden - #line 4906 "..\..\..\MainWindow.xaml" + #line 5243 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelMain; @@ -2411,7 +2411,7 @@ namespace Ink_Canvas { #line hidden - #line 4907 "..\..\..\MainWindow.xaml" + #line 5244 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelControl; @@ -2419,7 +2419,7 @@ namespace Ink_Canvas { #line hidden - #line 4908 "..\..\..\MainWindow.xaml" + #line 5245 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnExit; @@ -2427,7 +2427,7 @@ namespace Ink_Canvas { #line hidden - #line 4912 "..\..\..\MainWindow.xaml" + #line 5249 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnThickness; @@ -2435,7 +2435,7 @@ namespace Ink_Canvas { #line hidden - #line 4917 "..\..\..\MainWindow.xaml" + #line 5254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitchTheme; @@ -2443,7 +2443,7 @@ namespace Ink_Canvas { #line hidden - #line 4923 "..\..\..\MainWindow.xaml" + #line 5260 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitch; @@ -2451,7 +2451,7 @@ namespace Ink_Canvas { #line hidden - #line 4927 "..\..\..\MainWindow.xaml" + #line 5264 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnHideInkCanvas; @@ -2459,7 +2459,7 @@ namespace Ink_Canvas { #line hidden - #line 4931 "..\..\..\MainWindow.xaml" + #line 5268 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnCheckPPT; @@ -2467,7 +2467,7 @@ namespace Ink_Canvas { #line hidden - #line 4935 "..\..\..\MainWindow.xaml" + #line 5272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelPPTButtons; @@ -2475,7 +2475,7 @@ namespace Ink_Canvas { #line hidden - #line 4936 "..\..\..\MainWindow.xaml" + #line 5273 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlideShow; @@ -2483,7 +2483,7 @@ namespace Ink_Canvas { #line hidden - #line 4942 "..\..\..\MainWindow.xaml" + #line 5279 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlideShowEnd; @@ -2491,7 +2491,7 @@ namespace Ink_Canvas { #line hidden - #line 4948 "..\..\..\MainWindow.xaml" + #line 5285 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelPPTControls; @@ -2499,7 +2499,7 @@ namespace Ink_Canvas { #line hidden - #line 4949 "..\..\..\MainWindow.xaml" + #line 5286 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlidesUp; @@ -2507,7 +2507,7 @@ namespace Ink_Canvas { #line hidden - #line 4954 "..\..\..\MainWindow.xaml" + #line 5291 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlidesDown; @@ -2515,7 +2515,7 @@ namespace Ink_Canvas { #line hidden - #line 4961 "..\..\..\MainWindow.xaml" + #line 5298 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitchSide; @@ -2523,7 +2523,7 @@ namespace Ink_Canvas { #line hidden - #line 4966 "..\..\..\MainWindow.xaml" + #line 5303 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnHideControl; @@ -2531,7 +2531,7 @@ namespace Ink_Canvas { #line hidden - #line 4972 "..\..\..\MainWindow.xaml" + #line 5309 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewBoxStackPanelShapes; @@ -2539,7 +2539,7 @@ namespace Ink_Canvas { #line hidden - #line 4974 "..\..\..\MainWindow.xaml" + #line 5311 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelShapes; @@ -2547,7 +2547,7 @@ namespace Ink_Canvas { #line hidden - #line 4975 "..\..\..\MainWindow.xaml" + #line 5312 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnFingerDragMode; @@ -2555,7 +2555,7 @@ namespace Ink_Canvas { #line hidden - #line 4995 "..\..\..\MainWindow.xaml" + #line 5332 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnUndo; @@ -2563,7 +2563,7 @@ namespace Ink_Canvas { #line hidden - #line 5005 "..\..\..\MainWindow.xaml" + #line 5342 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnRedo; @@ -2571,7 +2571,7 @@ namespace Ink_Canvas { #line hidden - #line 5015 "..\..\..\MainWindow.xaml" + #line 5352 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnClearAndHideCanvas; @@ -2579,7 +2579,7 @@ namespace Ink_Canvas { #line hidden - #line 5021 "..\..\..\MainWindow.xaml" + #line 5358 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridForLeftSideReservedSpace; @@ -2587,7 +2587,7 @@ namespace Ink_Canvas { #line hidden - #line 5029 "..\..\..\MainWindow.xaml" + #line 5366 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftBottomPanelForPPTNavigation; @@ -2595,7 +2595,7 @@ namespace Ink_Canvas { #line hidden - #line 5031 "..\..\..\MainWindow.xaml" + #line 5368 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnLBBorder; @@ -2603,7 +2603,7 @@ namespace Ink_Canvas { #line hidden - #line 5035 "..\..\..\MainWindow.xaml" + #line 5372 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPreviousButtonBorder; @@ -2611,7 +2611,7 @@ namespace Ink_Canvas { #line hidden - #line 5040 "..\..\..\MainWindow.xaml" + #line 5377 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPreviousButtonFeedbackBorder; @@ -2619,7 +2619,7 @@ namespace Ink_Canvas { #line hidden - #line 5048 "..\..\..\MainWindow.xaml" + #line 5385 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLBPreviousButtonGeometry; @@ -2627,7 +2627,7 @@ namespace Ink_Canvas { #line hidden - #line 5057 "..\..\..\MainWindow.xaml" + #line 5394 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPageButton; @@ -2635,7 +2635,7 @@ namespace Ink_Canvas { #line hidden - #line 5062 "..\..\..\MainWindow.xaml" + #line 5399 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPageButtonFeedbackBorder; @@ -2643,7 +2643,7 @@ namespace Ink_Canvas { #line hidden - #line 5078 "..\..\..\MainWindow.xaml" + #line 5415 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBNextButtonBorder; @@ -2651,7 +2651,7 @@ namespace Ink_Canvas { #line hidden - #line 5080 "..\..\..\MainWindow.xaml" + #line 5417 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBNextButtonFeedbackBorder; @@ -2659,7 +2659,7 @@ namespace Ink_Canvas { #line hidden - #line 5089 "..\..\..\MainWindow.xaml" + #line 5426 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLBNextButtonGeometry; @@ -2667,7 +2667,7 @@ namespace Ink_Canvas { #line hidden - #line 5101 "..\..\..\MainWindow.xaml" + #line 5438 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightBottomPanelForPPTNavigation; @@ -2675,7 +2675,7 @@ namespace Ink_Canvas { #line hidden - #line 5103 "..\..\..\MainWindow.xaml" + #line 5440 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnRBBorder; @@ -2683,7 +2683,7 @@ namespace Ink_Canvas { #line hidden - #line 5107 "..\..\..\MainWindow.xaml" + #line 5444 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPreviousButtonBorder; @@ -2691,7 +2691,7 @@ namespace Ink_Canvas { #line hidden - #line 5112 "..\..\..\MainWindow.xaml" + #line 5449 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPreviousButtonFeedbackBorder; @@ -2699,7 +2699,7 @@ namespace Ink_Canvas { #line hidden - #line 5120 "..\..\..\MainWindow.xaml" + #line 5457 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRBPreviousButtonGeometry; @@ -2707,7 +2707,7 @@ namespace Ink_Canvas { #line hidden - #line 5129 "..\..\..\MainWindow.xaml" + #line 5466 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPageButton; @@ -2715,7 +2715,7 @@ namespace Ink_Canvas { #line hidden - #line 5134 "..\..\..\MainWindow.xaml" + #line 5471 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPageButtonFeedbackBorder; @@ -2723,7 +2723,7 @@ namespace Ink_Canvas { #line hidden - #line 5150 "..\..\..\MainWindow.xaml" + #line 5487 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBNextButtonBorder; @@ -2731,7 +2731,7 @@ namespace Ink_Canvas { #line hidden - #line 5152 "..\..\..\MainWindow.xaml" + #line 5489 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBNextButtonFeedbackBorder; @@ -2739,7 +2739,7 @@ namespace Ink_Canvas { #line hidden - #line 5161 "..\..\..\MainWindow.xaml" + #line 5498 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRBNextButtonGeometry; @@ -2747,7 +2747,7 @@ namespace Ink_Canvas { #line hidden - #line 5177 "..\..\..\MainWindow.xaml" + #line 5514 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftSidePanelForPPTNavigation; @@ -2755,7 +2755,7 @@ namespace Ink_Canvas { #line hidden - #line 5179 "..\..\..\MainWindow.xaml" + #line 5516 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnLSBorder; @@ -2763,7 +2763,7 @@ namespace Ink_Canvas { #line hidden - #line 5183 "..\..\..\MainWindow.xaml" + #line 5520 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPreviousButtonBorder; @@ -2771,7 +2771,7 @@ namespace Ink_Canvas { #line hidden - #line 5187 "..\..\..\MainWindow.xaml" + #line 5524 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPreviousButtonFeedbackBorder; @@ -2779,7 +2779,7 @@ namespace Ink_Canvas { #line hidden - #line 5194 "..\..\..\MainWindow.xaml" + #line 5531 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLSPreviousButtonGeometry; @@ -2787,7 +2787,7 @@ namespace Ink_Canvas { #line hidden - #line 5203 "..\..\..\MainWindow.xaml" + #line 5540 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPageButton; @@ -2795,7 +2795,7 @@ namespace Ink_Canvas { #line hidden - #line 5208 "..\..\..\MainWindow.xaml" + #line 5545 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPageButtonFeedbackBorder; @@ -2803,7 +2803,7 @@ namespace Ink_Canvas { #line hidden - #line 5213 "..\..\..\MainWindow.xaml" + #line 5550 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PPTBtnPageNow; @@ -2811,7 +2811,7 @@ namespace Ink_Canvas { #line hidden - #line 5215 "..\..\..\MainWindow.xaml" + #line 5552 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PPTBtnPageTotal; @@ -2819,7 +2819,7 @@ namespace Ink_Canvas { #line hidden - #line 5222 "..\..\..\MainWindow.xaml" + #line 5559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSNextButtonBorder; @@ -2827,7 +2827,7 @@ namespace Ink_Canvas { #line hidden - #line 5224 "..\..\..\MainWindow.xaml" + #line 5561 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSNextButtonFeedbackBorder; @@ -2835,7 +2835,7 @@ namespace Ink_Canvas { #line hidden - #line 5231 "..\..\..\MainWindow.xaml" + #line 5568 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLSNextButtonGeometry; @@ -2843,7 +2843,7 @@ namespace Ink_Canvas { #line hidden - #line 5243 "..\..\..\MainWindow.xaml" + #line 5580 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightSidePanelForPPTNavigation; @@ -2851,7 +2851,7 @@ namespace Ink_Canvas { #line hidden - #line 5245 "..\..\..\MainWindow.xaml" + #line 5582 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnRSBorder; @@ -2859,7 +2859,7 @@ namespace Ink_Canvas { #line hidden - #line 5249 "..\..\..\MainWindow.xaml" + #line 5586 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPreviousButtonBorder; @@ -2867,7 +2867,7 @@ namespace Ink_Canvas { #line hidden - #line 5253 "..\..\..\MainWindow.xaml" + #line 5590 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPreviousButtonFeedbackBorder; @@ -2875,7 +2875,7 @@ namespace Ink_Canvas { #line hidden - #line 5260 "..\..\..\MainWindow.xaml" + #line 5597 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRSPreviousButtonGeometry; @@ -2883,7 +2883,7 @@ namespace Ink_Canvas { #line hidden - #line 5269 "..\..\..\MainWindow.xaml" + #line 5606 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPageButton; @@ -2891,7 +2891,7 @@ namespace Ink_Canvas { #line hidden - #line 5274 "..\..\..\MainWindow.xaml" + #line 5611 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPageButtonFeedbackBorder; @@ -2899,7 +2899,7 @@ namespace Ink_Canvas { #line hidden - #line 5288 "..\..\..\MainWindow.xaml" + #line 5625 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSNextButtonBorder; @@ -2907,7 +2907,7 @@ namespace Ink_Canvas { #line hidden - #line 5290 "..\..\..\MainWindow.xaml" + #line 5627 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSNextButtonFeedbackBorder; @@ -2915,7 +2915,7 @@ namespace Ink_Canvas { #line hidden - #line 5297 "..\..\..\MainWindow.xaml" + #line 5634 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRSNextButtonGeometry; @@ -2923,7 +2923,7 @@ namespace Ink_Canvas { #line hidden - #line 5310 "..\..\..\MainWindow.xaml" + #line 5647 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid FloatingbarUIForInkReplay; @@ -2931,7 +2931,7 @@ namespace Ink_Canvas { #line hidden - #line 5311 "..\..\..\MainWindow.xaml" + #line 5648 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxFloatingBar; @@ -2939,7 +2939,7 @@ namespace Ink_Canvas { #line hidden - #line 5315 "..\..\..\MainWindow.xaml" + #line 5652 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.ScaleTransform ViewboxFloatingBarScaleTransform; @@ -2947,7 +2947,7 @@ namespace Ink_Canvas { #line hidden - #line 5318 "..\..\..\MainWindow.xaml" + #line 5655 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarMoveControls; @@ -2955,7 +2955,7 @@ namespace Ink_Canvas { #line hidden - #line 5323 "..\..\..\MainWindow.xaml" + #line 5660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image FloatingbarHeadIconImg; @@ -2963,7 +2963,7 @@ namespace Ink_Canvas { #line hidden - #line 5327 "..\..\..\MainWindow.xaml" + #line 5664 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarMainControls; @@ -2971,7 +2971,7 @@ namespace Ink_Canvas { #line hidden - #line 5331 "..\..\..\MainWindow.xaml" + #line 5668 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Canvas FloatingbarSelectionBGCanvas; @@ -2979,7 +2979,7 @@ namespace Ink_Canvas { #line hidden - #line 5332 "..\..\..\MainWindow.xaml" + #line 5669 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border FloatingbarSelectionBG; @@ -2987,7 +2987,7 @@ namespace Ink_Canvas { #line hidden - #line 5340 "..\..\..\MainWindow.xaml" + #line 5677 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel StackPanelFloatingBar; @@ -2995,7 +2995,7 @@ namespace Ink_Canvas { #line hidden - #line 5342 "..\..\..\MainWindow.xaml" + #line 5679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Cursor_Icon; @@ -3003,7 +3003,7 @@ namespace Ink_Canvas { #line hidden - #line 5349 "..\..\..\MainWindow.xaml" + #line 5686 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image CursorToolbarIconImage; @@ -3011,7 +3011,7 @@ namespace Ink_Canvas { #line hidden - #line 5354 "..\..\..\MainWindow.xaml" + #line 5691 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing CursorIconGeometry; @@ -3019,7 +3019,7 @@ namespace Ink_Canvas { #line hidden - #line 5360 "..\..\..\MainWindow.xaml" + #line 5697 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock SelectionToolBarTextBlock; @@ -3027,7 +3027,7 @@ namespace Ink_Canvas { #line hidden - #line 5364 "..\..\..\MainWindow.xaml" + #line 5701 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Pen_Icon; @@ -3035,7 +3035,7 @@ namespace Ink_Canvas { #line hidden - #line 5370 "..\..\..\MainWindow.xaml" + #line 5707 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PenIcon; @@ -3043,7 +3043,7 @@ namespace Ink_Canvas { #line hidden - #line 5376 "..\..\..\MainWindow.xaml" + #line 5713 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PenIconGeometry; @@ -3051,7 +3051,7 @@ namespace Ink_Canvas { #line hidden - #line 5383 "..\..\..\MainWindow.xaml" + #line 5720 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PenToolbarTextBlock; @@ -3059,7 +3059,7 @@ namespace Ink_Canvas { #line hidden - #line 5386 "..\..\..\MainWindow.xaml" + #line 5723 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconDelete; @@ -3067,7 +3067,7 @@ namespace Ink_Canvas { #line hidden - #line 5397 "..\..\..\MainWindow.xaml" + #line 5734 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing ClearIconGeometry; @@ -3075,7 +3075,7 @@ namespace Ink_Canvas { #line hidden - #line 5404 "..\..\..\MainWindow.xaml" + #line 5741 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TrashBinToolbarTextBlock; @@ -3083,7 +3083,7 @@ namespace Ink_Canvas { #line hidden - #line 5407 "..\..\..\MainWindow.xaml" + #line 5744 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel StackPanelCanvasControls; @@ -3091,7 +3091,7 @@ namespace Ink_Canvas { #line hidden - #line 5412 "..\..\..\MainWindow.xaml" + #line 5749 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PenPalette; @@ -3099,7 +3099,7 @@ namespace Ink_Canvas { #line hidden - #line 5425 "..\..\..\MainWindow.xaml" + #line 5762 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border DefaultPenTabButton; @@ -3107,7 +3107,7 @@ namespace Ink_Canvas { #line hidden - #line 5431 "..\..\..\MainWindow.xaml" + #line 5768 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel DefaultPenTabButtonIndicator; @@ -3115,7 +3115,7 @@ namespace Ink_Canvas { #line hidden - #line 5451 "..\..\..\MainWindow.xaml" + #line 5788 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock DefaultPenTabButtonText; @@ -3123,7 +3123,7 @@ namespace Ink_Canvas { #line hidden - #line 5460 "..\..\..\MainWindow.xaml" + #line 5797 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlightPenTabButton; @@ -3131,7 +3131,7 @@ namespace Ink_Canvas { #line hidden - #line 5466 "..\..\..\MainWindow.xaml" + #line 5803 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel HighlightPenTabButtonIndicator; @@ -3139,7 +3139,7 @@ namespace Ink_Canvas { #line hidden - #line 5484 "..\..\..\MainWindow.xaml" + #line 5821 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock HighlightPenTabButtonText; @@ -3147,7 +3147,7 @@ namespace Ink_Canvas { #line hidden - #line 5503 "..\..\..\MainWindow.xaml" + #line 5840 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox DefaultPenPropsPanel; @@ -3155,7 +3155,7 @@ namespace Ink_Canvas { #line hidden - #line 5515 "..\..\..\MainWindow.xaml" + #line 5852 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxPenStyle; @@ -3163,7 +3163,7 @@ namespace Ink_Canvas { #line hidden - #line 5530 "..\..\..\MainWindow.xaml" + #line 5867 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel NibModeSimpleStackPanel; @@ -3171,7 +3171,7 @@ namespace Ink_Canvas { #line hidden - #line 5535 "..\..\..\MainWindow.xaml" + #line 5872 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableNibMode; @@ -3179,7 +3179,7 @@ namespace Ink_Canvas { #line hidden - #line 5562 "..\..\..\MainWindow.xaml" + #line 5899 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider InkWidthSlider; @@ -3187,7 +3187,7 @@ namespace Ink_Canvas { #line hidden - #line 5578 "..\..\..\MainWindow.xaml" + #line 5915 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider InkAlphaSlider; @@ -3195,7 +3195,7 @@ namespace Ink_Canvas { #line hidden - #line 5592 "..\..\..\MainWindow.xaml" + #line 5929 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenPropsPanel; @@ -3203,7 +3203,7 @@ namespace Ink_Canvas { #line hidden - #line 5600 "..\..\..\MainWindow.xaml" + #line 5937 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider HighlighterWidthSlider; @@ -3211,7 +3211,7 @@ namespace Ink_Canvas { #line hidden - #line 5613 "..\..\..\MainWindow.xaml" + #line 5950 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox DefaultPenColorsPanel; @@ -3219,7 +3219,7 @@ namespace Ink_Canvas { #line hidden - #line 5631 "..\..\..\MainWindow.xaml" + #line 5968 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ColorThemeSwitchIcon; @@ -3227,7 +3227,7 @@ namespace Ink_Canvas { #line hidden - #line 5638 "..\..\..\MainWindow.xaml" + #line 5975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ColorThemeSwitchTextBlock; @@ -3235,7 +3235,7 @@ namespace Ink_Canvas { #line hidden - #line 5645 "..\..\..\MainWindow.xaml" + #line 5982 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorBlack; @@ -3243,7 +3243,7 @@ namespace Ink_Canvas { #line hidden - #line 5652 "..\..\..\MainWindow.xaml" + #line 5989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorBlackContent; @@ -3251,7 +3251,7 @@ namespace Ink_Canvas { #line hidden - #line 5662 "..\..\..\MainWindow.xaml" + #line 5999 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorWhite; @@ -3259,7 +3259,7 @@ namespace Ink_Canvas { #line hidden - #line 5670 "..\..\..\MainWindow.xaml" + #line 6007 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorWhiteContent; @@ -3267,7 +3267,7 @@ namespace Ink_Canvas { #line hidden - #line 5680 "..\..\..\MainWindow.xaml" + #line 6017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorRed; @@ -3275,7 +3275,7 @@ namespace Ink_Canvas { #line hidden - #line 5687 "..\..\..\MainWindow.xaml" + #line 6024 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorRedContent; @@ -3283,7 +3283,7 @@ namespace Ink_Canvas { #line hidden - #line 5697 "..\..\..\MainWindow.xaml" + #line 6034 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorYellow; @@ -3291,7 +3291,7 @@ namespace Ink_Canvas { #line hidden - #line 5705 "..\..\..\MainWindow.xaml" + #line 6042 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorYellowContent; @@ -3299,7 +3299,7 @@ namespace Ink_Canvas { #line hidden - #line 5722 "..\..\..\MainWindow.xaml" + #line 6059 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorGreen; @@ -3307,7 +3307,7 @@ namespace Ink_Canvas { #line hidden - #line 5730 "..\..\..\MainWindow.xaml" + #line 6067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorGreenContent; @@ -3315,7 +3315,7 @@ namespace Ink_Canvas { #line hidden - #line 5740 "..\..\..\MainWindow.xaml" + #line 6077 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorBlue; @@ -3323,7 +3323,7 @@ namespace Ink_Canvas { #line hidden - #line 5747 "..\..\..\MainWindow.xaml" + #line 6084 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorBlueContent; @@ -3331,7 +3331,7 @@ namespace Ink_Canvas { #line hidden - #line 5757 "..\..\..\MainWindow.xaml" + #line 6094 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorPink; @@ -3339,7 +3339,7 @@ namespace Ink_Canvas { #line hidden - #line 5764 "..\..\..\MainWindow.xaml" + #line 6101 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorPinkContent; @@ -3347,7 +3347,7 @@ namespace Ink_Canvas { #line hidden - #line 5774 "..\..\..\MainWindow.xaml" + #line 6111 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorTeal; @@ -3355,7 +3355,7 @@ namespace Ink_Canvas { #line hidden - #line 5781 "..\..\..\MainWindow.xaml" + #line 6118 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorTealContent; @@ -3363,7 +3363,7 @@ namespace Ink_Canvas { #line hidden - #line 5791 "..\..\..\MainWindow.xaml" + #line 6128 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorOrange; @@ -3371,7 +3371,7 @@ namespace Ink_Canvas { #line hidden - #line 5799 "..\..\..\MainWindow.xaml" + #line 6136 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorOrangeContent; @@ -3379,7 +3379,7 @@ namespace Ink_Canvas { #line hidden - #line 5815 "..\..\..\MainWindow.xaml" + #line 6152 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenColorsPanel; @@ -3387,7 +3387,7 @@ namespace Ink_Canvas { #line hidden - #line 5826 "..\..\..\MainWindow.xaml" + #line 6163 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorBlack; @@ -3395,7 +3395,7 @@ namespace Ink_Canvas { #line hidden - #line 5847 "..\..\..\MainWindow.xaml" + #line 6184 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorBlackContent; @@ -3403,7 +3403,7 @@ namespace Ink_Canvas { #line hidden - #line 5860 "..\..\..\MainWindow.xaml" + #line 6197 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorWhite; @@ -3411,7 +3411,7 @@ namespace Ink_Canvas { #line hidden - #line 5883 "..\..\..\MainWindow.xaml" + #line 6220 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorWhiteContent; @@ -3419,7 +3419,7 @@ namespace Ink_Canvas { #line hidden - #line 5896 "..\..\..\MainWindow.xaml" + #line 6233 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorRed; @@ -3427,7 +3427,7 @@ namespace Ink_Canvas { #line hidden - #line 5917 "..\..\..\MainWindow.xaml" + #line 6254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorRedContent; @@ -3435,7 +3435,7 @@ namespace Ink_Canvas { #line hidden - #line 5930 "..\..\..\MainWindow.xaml" + #line 6267 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorYellow; @@ -3443,7 +3443,7 @@ namespace Ink_Canvas { #line hidden - #line 5951 "..\..\..\MainWindow.xaml" + #line 6288 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorYellowContent; @@ -3451,7 +3451,7 @@ namespace Ink_Canvas { #line hidden - #line 5964 "..\..\..\MainWindow.xaml" + #line 6301 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorGreen; @@ -3459,7 +3459,7 @@ namespace Ink_Canvas { #line hidden - #line 5985 "..\..\..\MainWindow.xaml" + #line 6322 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorGreenContent; @@ -3467,7 +3467,7 @@ namespace Ink_Canvas { #line hidden - #line 6004 "..\..\..\MainWindow.xaml" + #line 6341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorZinc; @@ -3475,7 +3475,7 @@ namespace Ink_Canvas { #line hidden - #line 6025 "..\..\..\MainWindow.xaml" + #line 6362 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorZincContent; @@ -3483,7 +3483,7 @@ namespace Ink_Canvas { #line hidden - #line 6038 "..\..\..\MainWindow.xaml" + #line 6375 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorBlue; @@ -3491,7 +3491,7 @@ namespace Ink_Canvas { #line hidden - #line 6059 "..\..\..\MainWindow.xaml" + #line 6396 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorBlueContent; @@ -3499,7 +3499,7 @@ namespace Ink_Canvas { #line hidden - #line 6073 "..\..\..\MainWindow.xaml" + #line 6410 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenPenColorPurple; @@ -3507,7 +3507,7 @@ namespace Ink_Canvas { #line hidden - #line 6094 "..\..\..\MainWindow.xaml" + #line 6431 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorPurpleContent; @@ -3515,7 +3515,7 @@ namespace Ink_Canvas { #line hidden - #line 6107 "..\..\..\MainWindow.xaml" + #line 6444 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorTeal; @@ -3523,7 +3523,7 @@ namespace Ink_Canvas { #line hidden - #line 6128 "..\..\..\MainWindow.xaml" + #line 6465 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorTealContent; @@ -3531,7 +3531,7 @@ namespace Ink_Canvas { #line hidden - #line 6141 "..\..\..\MainWindow.xaml" + #line 6478 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorOrange; @@ -3539,7 +3539,7 @@ namespace Ink_Canvas { #line hidden - #line 6162 "..\..\..\MainWindow.xaml" + #line 6499 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorOrangeContent; @@ -3547,7 +3547,7 @@ namespace Ink_Canvas { #line hidden - #line 6186 "..\..\..\MainWindow.xaml" + #line 6523 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Eraser_Icon; @@ -3555,7 +3555,7 @@ namespace Ink_Canvas { #line hidden - #line 6192 "..\..\..\MainWindow.xaml" + #line 6529 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image CircleEraserToolbarIconImage; @@ -3563,7 +3563,7 @@ namespace Ink_Canvas { #line hidden - #line 6199 "..\..\..\MainWindow.xaml" + #line 6536 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing CircleEraserIconGeometry; @@ -3571,7 +3571,7 @@ namespace Ink_Canvas { #line hidden - #line 6206 "..\..\..\MainWindow.xaml" + #line 6543 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock CircleEraserToolbarTextBlock; @@ -3579,7 +3579,7 @@ namespace Ink_Canvas { #line hidden - #line 6209 "..\..\..\MainWindow.xaml" + #line 6546 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel EraserByStrokes_Icon; @@ -3587,7 +3587,7 @@ namespace Ink_Canvas { #line hidden - #line 6215 "..\..\..\MainWindow.xaml" + #line 6552 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image StrokeEraserToolbarIconImage; @@ -3595,7 +3595,7 @@ namespace Ink_Canvas { #line hidden - #line 6222 "..\..\..\MainWindow.xaml" + #line 6559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing StrokeEraserIconGeometry; @@ -3603,7 +3603,7 @@ namespace Ink_Canvas { #line hidden - #line 6229 "..\..\..\MainWindow.xaml" + #line 6566 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkEraserToolbarTextBlock; @@ -3611,7 +3611,7 @@ namespace Ink_Canvas { #line hidden - #line 6232 "..\..\..\MainWindow.xaml" + #line 6569 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconSelect; @@ -3619,7 +3619,7 @@ namespace Ink_Canvas { #line hidden - #line 6238 "..\..\..\MainWindow.xaml" + #line 6575 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image LassoSelect; @@ -3627,7 +3627,7 @@ namespace Ink_Canvas { #line hidden - #line 6244 "..\..\..\MainWindow.xaml" + #line 6581 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing LassoSelectIconGeometry; @@ -3635,7 +3635,7 @@ namespace Ink_Canvas { #line hidden - #line 6251 "..\..\..\MainWindow.xaml" + #line 6588 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock LassoToolToolbarTextBlock; @@ -3643,7 +3643,7 @@ namespace Ink_Canvas { #line hidden - #line 6255 "..\..\..\MainWindow.xaml" + #line 6592 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel ShapeDrawFloatingBarBtn; @@ -3651,7 +3651,7 @@ namespace Ink_Canvas { #line hidden - #line 6267 "..\..\..\MainWindow.xaml" + #line 6604 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing ShapesIconGeometry; @@ -3659,7 +3659,7 @@ namespace Ink_Canvas { #line hidden - #line 6275 "..\..\..\MainWindow.xaml" + #line 6612 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ShapesToolbarTextBlock; @@ -3667,7 +3667,7 @@ namespace Ink_Canvas { #line hidden - #line 6280 "..\..\..\MainWindow.xaml" + #line 6617 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderDrawShape; @@ -3675,7 +3675,7 @@ namespace Ink_Canvas { #line hidden - #line 6304 "..\..\..\MainWindow.xaml" + #line 6641 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawLine; @@ -3683,7 +3683,7 @@ namespace Ink_Canvas { #line hidden - #line 6313 "..\..\..\MainWindow.xaml" + #line 6650 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawDashedLine; @@ -3691,7 +3691,7 @@ namespace Ink_Canvas { #line hidden - #line 6323 "..\..\..\MainWindow.xaml" + #line 6660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawDotLine; @@ -3699,7 +3699,7 @@ namespace Ink_Canvas { #line hidden - #line 6333 "..\..\..\MainWindow.xaml" + #line 6670 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawArrow; @@ -3707,7 +3707,7 @@ namespace Ink_Canvas { #line hidden - #line 6342 "..\..\..\MainWindow.xaml" + #line 6679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawParallelLine; @@ -3715,7 +3715,7 @@ namespace Ink_Canvas { #line hidden - #line 6519 "..\..\..\MainWindow.xaml" + #line 6856 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconUndo; @@ -3723,7 +3723,7 @@ namespace Ink_Canvas { #line hidden - #line 6534 "..\..\..\MainWindow.xaml" + #line 6871 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing UndoIconGeometry; @@ -3731,7 +3731,7 @@ namespace Ink_Canvas { #line hidden - #line 6541 "..\..\..\MainWindow.xaml" + #line 6878 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock UndoToolbarTextBlock; @@ -3739,7 +3739,7 @@ namespace Ink_Canvas { #line hidden - #line 6547 "..\..\..\MainWindow.xaml" + #line 6884 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconRedo; @@ -3747,7 +3747,7 @@ namespace Ink_Canvas { #line hidden - #line 6562 "..\..\..\MainWindow.xaml" + #line 6899 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing RedoIconGeometry; @@ -3755,7 +3755,7 @@ namespace Ink_Canvas { #line hidden - #line 6569 "..\..\..\MainWindow.xaml" + #line 6906 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock RedoToolbarTextBlock; @@ -3763,7 +3763,7 @@ namespace Ink_Canvas { #line hidden - #line 6575 "..\..\..\MainWindow.xaml" + #line 6912 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel CursorWithDelFloatingBarBtn; @@ -3771,7 +3771,7 @@ namespace Ink_Canvas { #line hidden - #line 6594 "..\..\..\MainWindow.xaml" + #line 6931 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ClearAndMouseToolbarTextBlock; @@ -3779,7 +3779,7 @@ namespace Ink_Canvas { #line hidden - #line 6599 "..\..\..\MainWindow.xaml" + #line 6936 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border EraserSizePanel; @@ -3787,7 +3787,7 @@ namespace Ink_Canvas { #line hidden - #line 6619 "..\..\..\MainWindow.xaml" + #line 6956 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxEraserSizeFloatingBar; @@ -3795,7 +3795,7 @@ namespace Ink_Canvas { #line hidden - #line 6636 "..\..\..\MainWindow.xaml" + #line 6973 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border CircleEraserTabButton; @@ -3803,7 +3803,7 @@ namespace Ink_Canvas { #line hidden - #line 6639 "..\..\..\MainWindow.xaml" + #line 6976 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel CircleEraserTabButtonIndicator; @@ -3811,7 +3811,7 @@ namespace Ink_Canvas { #line hidden - #line 6652 "..\..\..\MainWindow.xaml" + #line 6989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock CircleEraserTabButtonText; @@ -3819,7 +3819,7 @@ namespace Ink_Canvas { #line hidden - #line 6661 "..\..\..\MainWindow.xaml" + #line 6998 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border RectangleEraserTabButton; @@ -3827,7 +3827,7 @@ namespace Ink_Canvas { #line hidden - #line 6666 "..\..\..\MainWindow.xaml" + #line 7003 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel RectangleEraserTabButtonIndicator; @@ -3835,7 +3835,7 @@ namespace Ink_Canvas { #line hidden - #line 6677 "..\..\..\MainWindow.xaml" + #line 7014 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock RectangleEraserTabButtonText; @@ -3843,7 +3843,7 @@ namespace Ink_Canvas { #line hidden - #line 6694 "..\..\..\MainWindow.xaml" + #line 7031 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel WhiteboardFloatingBarBtn; @@ -3851,7 +3851,7 @@ namespace Ink_Canvas { #line hidden - #line 6713 "..\..\..\MainWindow.xaml" + #line 7050 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WhiteboardToolbarTextBlock; @@ -3859,7 +3859,7 @@ namespace Ink_Canvas { #line hidden - #line 6717 "..\..\..\MainWindow.xaml" + #line 7054 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel ToolsFloatingBarBtn; @@ -3867,7 +3867,7 @@ namespace Ink_Canvas { #line hidden - #line 6736 "..\..\..\MainWindow.xaml" + #line 7073 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ToolsToolbarTextBlock; @@ -3875,7 +3875,7 @@ namespace Ink_Canvas { #line hidden - #line 6741 "..\..\..\MainWindow.xaml" + #line 7078 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Fold_Icon; @@ -3883,7 +3883,7 @@ namespace Ink_Canvas { #line hidden - #line 6760 "..\..\..\MainWindow.xaml" + #line 7097 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock HideToolbarTextBlock; @@ -3891,7 +3891,7 @@ namespace Ink_Canvas { #line hidden - #line 6765 "..\..\..\MainWindow.xaml" + #line 7102 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderTools; @@ -3899,7 +3899,7 @@ namespace Ink_Canvas { #line hidden - #line 6987 "..\..\..\MainWindow.xaml" + #line 7324 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border EnableTwoFingerGestureBorder; @@ -3907,7 +3907,7 @@ namespace Ink_Canvas { #line hidden - #line 6994 "..\..\..\MainWindow.xaml" + #line 7331 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image EnableTwoFingerGestureBtn; @@ -3915,7 +3915,7 @@ namespace Ink_Canvas { #line hidden - #line 6997 "..\..\..\MainWindow.xaml" + #line 7334 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock gestureiconText; @@ -3923,7 +3923,7 @@ namespace Ink_Canvas { #line hidden - #line 7003 "..\..\..\MainWindow.xaml" + #line 7340 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border TwoFingerGestureBorder; @@ -3931,7 +3931,7 @@ namespace Ink_Canvas { #line hidden - #line 7022 "..\..\..\MainWindow.xaml" + #line 7359 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableMultiTouchMode; @@ -3939,7 +3939,7 @@ namespace Ink_Canvas { #line hidden - #line 7038 "..\..\..\MainWindow.xaml" + #line 7375 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel TwoFingerGestureSimpleStackPanel; @@ -3947,7 +3947,7 @@ namespace Ink_Canvas { #line hidden - #line 7046 "..\..\..\MainWindow.xaml" + #line 7383 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerTranslate; @@ -3955,7 +3955,7 @@ namespace Ink_Canvas { #line hidden - #line 7073 "..\..\..\MainWindow.xaml" + #line 7410 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerZoom; @@ -3963,7 +3963,7 @@ namespace Ink_Canvas { #line hidden - #line 7098 "..\..\..\MainWindow.xaml" + #line 7435 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerRotation; @@ -3971,7 +3971,7 @@ namespace Ink_Canvas { #line hidden - #line 7117 "..\..\..\MainWindow.xaml" + #line 7454 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarExitPPTBtn; @@ -3979,7 +3979,7 @@ namespace Ink_Canvas { #line hidden - #line 7136 "..\..\..\MainWindow.xaml" + #line 7473 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridForFloatingBarDraging; @@ -3987,7 +3987,7 @@ namespace Ink_Canvas { #line hidden - #line 7140 "..\..\..\MainWindow.xaml" + #line 7477 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.InkCanvas InkCanvasForInkReplay; @@ -3995,7 +3995,7 @@ namespace Ink_Canvas { #line hidden - #line 7142 "..\..\..\MainWindow.xaml" + #line 7479 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderInkReplayToolBox; @@ -4003,7 +4003,7 @@ namespace Ink_Canvas { #line hidden - #line 7164 "..\..\..\MainWindow.xaml" + #line 7501 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkReplayPanelStatusText; @@ -4011,7 +4011,7 @@ namespace Ink_Canvas { #line hidden - #line 7169 "..\..\..\MainWindow.xaml" + #line 7506 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayPlayPauseBorder; @@ -4019,7 +4019,7 @@ namespace Ink_Canvas { #line hidden - #line 7172 "..\..\..\MainWindow.xaml" + #line 7509 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image InkReplayPlayButtonImage; @@ -4027,7 +4027,7 @@ namespace Ink_Canvas { #line hidden - #line 7190 "..\..\..\MainWindow.xaml" + #line 7527 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image InkReplayPauseButtonImage; @@ -4035,7 +4035,7 @@ namespace Ink_Canvas { #line hidden - #line 7222 "..\..\..\MainWindow.xaml" + #line 7559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayStopButtonBorder; @@ -4043,7 +4043,7 @@ namespace Ink_Canvas { #line hidden - #line 7245 "..\..\..\MainWindow.xaml" + #line 7582 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayReplayButtonBorder; @@ -4051,7 +4051,7 @@ namespace Ink_Canvas { #line hidden - #line 7265 "..\..\..\MainWindow.xaml" + #line 7602 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplaySpeedButtonBorder; @@ -4059,7 +4059,7 @@ namespace Ink_Canvas { #line hidden - #line 7287 "..\..\..\MainWindow.xaml" + #line 7624 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkReplaySpeedTextBlock; @@ -4067,7 +4067,7 @@ namespace Ink_Canvas { #line hidden - #line 7298 "..\..\..\MainWindow.xaml" + #line 7635 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftSidePanel; @@ -4075,7 +4075,7 @@ namespace Ink_Canvas { #line hidden - #line 7302 "..\..\..\MainWindow.xaml" + #line 7639 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image LeftUnFoldBtnImgChevron; @@ -4083,7 +4083,7 @@ namespace Ink_Canvas { #line hidden - #line 7308 "..\..\..\MainWindow.xaml" + #line 7645 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftUnFoldButtonQuickPanel; @@ -4091,7 +4091,7 @@ namespace Ink_Canvas { #line hidden - #line 7363 "..\..\..\MainWindow.xaml" + #line 7700 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightSidePanel; @@ -4099,7 +4099,7 @@ namespace Ink_Canvas { #line hidden - #line 7368 "..\..\..\MainWindow.xaml" + #line 7705 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image RightUnFoldBtnImgChevron; @@ -4107,7 +4107,7 @@ namespace Ink_Canvas { #line hidden - #line 7381 "..\..\..\MainWindow.xaml" + #line 7718 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightUnFoldButtonQuickPanel; @@ -4203,13 +4203,13 @@ namespace Ink_Canvas { return; case 2: - #line 82 "..\..\..\MainWindow.xaml" + #line 145 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 82 "..\..\..\MainWindow.xaml" + #line 145 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyExit); #line default @@ -4217,13 +4217,13 @@ namespace Ink_Canvas { return; case 3: - #line 83 "..\..\..\MainWindow.xaml" + #line 146 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 84 "..\..\..\MainWindow.xaml" + #line 147 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Undo); #line default @@ -4231,13 +4231,13 @@ namespace Ink_Canvas { return; case 4: - #line 85 "..\..\..\MainWindow.xaml" + #line 148 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 86 "..\..\..\MainWindow.xaml" + #line 149 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Redo); #line default @@ -4245,13 +4245,13 @@ namespace Ink_Canvas { return; case 5: - #line 87 "..\..\..\MainWindow.xaml" + #line 150 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 88 "..\..\..\MainWindow.xaml" + #line 151 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Clear); #line default @@ -4259,13 +4259,13 @@ namespace Ink_Canvas { return; case 6: - #line 89 "..\..\..\MainWindow.xaml" + #line 152 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 90 "..\..\..\MainWindow.xaml" + #line 153 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToDrawTool); #line default @@ -4273,13 +4273,13 @@ namespace Ink_Canvas { return; case 7: - #line 91 "..\..\..\MainWindow.xaml" + #line 154 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 92 "..\..\..\MainWindow.xaml" + #line 155 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToQuitDrawTool); #line default @@ -4287,13 +4287,13 @@ namespace Ink_Canvas { return; case 8: - #line 93 "..\..\..\MainWindow.xaml" + #line 156 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 94 "..\..\..\MainWindow.xaml" + #line 157 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToSelect); #line default @@ -4301,13 +4301,13 @@ namespace Ink_Canvas { return; case 9: - #line 95 "..\..\..\MainWindow.xaml" + #line 158 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 96 "..\..\..\MainWindow.xaml" + #line 159 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToEraser); #line default @@ -4315,13 +4315,13 @@ namespace Ink_Canvas { return; case 10: - #line 97 "..\..\..\MainWindow.xaml" + #line 160 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 98 "..\..\..\MainWindow.xaml" + #line 161 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToBoard); #line default @@ -4329,13 +4329,13 @@ namespace Ink_Canvas { return; case 11: - #line 99 "..\..\..\MainWindow.xaml" + #line 162 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 100 "..\..\..\MainWindow.xaml" + #line 163 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyCapture); #line default @@ -4343,13 +4343,13 @@ namespace Ink_Canvas { return; case 12: - #line 101 "..\..\..\MainWindow.xaml" + #line 164 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 102 "..\..\..\MainWindow.xaml" + #line 165 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyHide); #line default @@ -4357,13 +4357,13 @@ namespace Ink_Canvas { return; case 13: - #line 103 "..\..\..\MainWindow.xaml" + #line 166 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 104 "..\..\..\MainWindow.xaml" + #line 167 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyDrawLine); #line default @@ -4375,7 +4375,7 @@ namespace Ink_Canvas { case 15: this.BorderSettingsMask = ((System.Windows.Controls.Grid)(target)); - #line 110 "..\..\..\MainWindow.xaml" + #line 173 "..\..\..\MainWindow.xaml" this.BorderSettingsMask.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SettingsOverlayClick); #line default @@ -4385,5049 +4385,5161 @@ namespace Ink_Canvas { this.BorderSettings = ((System.Windows.Controls.Border)(target)); return; case 17: - this.SettingsPanelScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - #line 117 "..\..\..\MainWindow.xaml" - this.SettingsPanelScrollViewer.ManipulationBoundaryFeedback += new System.EventHandler(this.SCManipulationBoundaryFeedback); + #line 202 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavStartup_Click); #line default #line hidden return; case 18: - #line 131 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); + #line 217 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavCanvas_Click); #line default #line hidden return; case 19: - #line 160 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); + #line 232 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavGesture_Click); #line default #line hidden return; case 20: - #line 192 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); + #line 247 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavInkRecognition_Click); #line default #line hidden return; case 21: - #line 234 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); + #line 262 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavCrashAction_Click); #line default #line hidden return; case 22: - #line 263 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); + #line 277 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavPPT_Click); #line default #line hidden return; case 23: - this.ToggleSwitchIsAutoUpdate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 307 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsAutoUpdate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdate_Toggled); + #line 292 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAdvanced_Click); #line default #line hidden return; case 24: - this.ToggleSwitchIsAutoUpdateWithSilence = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 311 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsAutoUpdateWithSilence.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdateWithSilence_Toggled); + #line 307 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAutomation_Click); #line default #line hidden return; case 25: - this.AutoUpdateTimePeriodBlock = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 322 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavRandomWindow_Click); + + #line default + #line hidden return; case 26: - this.AutoUpdateWithSilenceStartTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 329 "..\..\..\MainWindow.xaml" - this.AutoUpdateWithSilenceStartTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceStartTimeComboBox_SelectionChanged); + #line 337 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavTheme_Click); #line default #line hidden return; case 27: - this.AutoUpdateWithSilenceEndTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 337 "..\..\..\MainWindow.xaml" - this.AutoUpdateWithSilenceEndTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceEndTimeComboBox_SelectionChanged); + #line 352 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavShortcuts_Click); #line default #line hidden return; case 28: - this.ToggleSwitchRunAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 352 "..\..\..\MainWindow.xaml" - this.ToggleSwitchRunAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchRunAtStartup_Toggled); + #line 367 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAbout_Click); #line default #line hidden return; case 29: - this.ToggleSwitchFoldAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 359 "..\..\..\MainWindow.xaml" - this.ToggleSwitchFoldAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFoldAtStartup_Toggled); + #line 388 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CollapseNavSidebar_Click); #line default #line hidden return; case 30: - this.ToggleSwitchShowCursor = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 378 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowCursor.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCursor_Toggled); + #line 418 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ShowNavSidebar_Click); #line default #line hidden return; case 31: - this.ToggleSwitchEnablePressureTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.SettingsPanelScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - #line 385 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnablePressureTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePressureTouchMode_Toggled); + #line 468 "..\..\..\MainWindow.xaml" + this.SettingsPanelScrollViewer.ManipulationBoundaryFeedback += new System.EventHandler(this.SCManipulationBoundaryFeedback); #line default #line hidden return; case 32: - this.ToggleSwitchDisablePressure = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 393 "..\..\..\MainWindow.xaml" - this.ToggleSwitchDisablePressure.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisablePressure_Toggled); + #line 482 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); #line default #line hidden return; case 33: - this.ComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 402 "..\..\..\MainWindow.xaml" - this.ComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSize_SelectionChanged); + #line 511 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); #line default #line hidden return; case 34: - this.ToggleSwitchHideStrokeWhenSelecting = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 419 "..\..\..\MainWindow.xaml" - this.ToggleSwitchHideStrokeWhenSelecting.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchHideStrokeWhenSelecting_Toggled); + #line 543 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); #line default #line hidden return; case 35: - this.ToggleSwitchClearCanvasAndClearTimeMachine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 429 "..\..\..\MainWindow.xaml" - this.ToggleSwitchClearCanvasAndClearTimeMachine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchClearCanvasAndClearTimeMachine_Toggled); + #line 585 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); #line default #line hidden return; case 36: - this.ComboBoxHyperbolaAsymptoteOption = ((System.Windows.Controls.ComboBox)(target)); - #line 438 "..\..\..\MainWindow.xaml" - this.ComboBoxHyperbolaAsymptoteOption.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxHyperbolaAsymptoteOption_SelectionChanged); + #line 614 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); #line default #line hidden return; case 37: - this.ToggleSwitchFitToCurve = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsAutoUpdate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 451 "..\..\..\MainWindow.xaml" - this.ToggleSwitchFitToCurve.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFitToCurve_Toggled); + #line 658 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsAutoUpdate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdate_Toggled); #line default #line hidden return; case 38: - this.RadioCrashSilentRestart = ((System.Windows.Controls.RadioButton)(target)); + this.ToggleSwitchIsAutoUpdateWithSilence = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 466 "..\..\..\MainWindow.xaml" - this.RadioCrashSilentRestart.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); + #line 662 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsAutoUpdateWithSilence.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdateWithSilence_Toggled); #line default #line hidden return; case 39: - this.RadioCrashNoAction = ((System.Windows.Controls.RadioButton)(target)); - - #line 469 "..\..\..\MainWindow.xaml" - this.RadioCrashNoAction.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); - - #line default - #line hidden + this.AutoUpdateTimePeriodBlock = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 40: - this.ToggleSwitchAutoSwitchTwoFingerGesture = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.AutoUpdateWithSilenceStartTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 486 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSwitchTwoFingerGesture.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSwitchTwoFingerGesture_Toggled); + #line 680 "..\..\..\MainWindow.xaml" + this.AutoUpdateWithSilenceStartTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceStartTimeComboBox_SelectionChanged); #line default #line hidden return; case 41: - this.ToggleSwitchEnableTwoFingerRotationOnSelection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.AutoUpdateWithSilenceEndTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 498 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerRotationOnSelection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + #line 688 "..\..\..\MainWindow.xaml" + this.AutoUpdateWithSilenceEndTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceEndTimeComboBox_SelectionChanged); #line default #line hidden return; case 42: - this.GroupBoxInkRecognition = ((System.Windows.Controls.GroupBox)(target)); + this.ToggleSwitchRunAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 703 "..\..\..\MainWindow.xaml" + this.ToggleSwitchRunAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchRunAtStartup_Toggled); + + #line default + #line hidden return; case 43: - this.ToggleSwitchEnableInkToShape = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchFoldAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 515 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShape.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + #line 710 "..\..\..\MainWindow.xaml" + this.ToggleSwitchFoldAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFoldAtStartup_Toggled); #line default #line hidden return; case 44: - this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchShowCursor = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 526 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle_Toggled); + #line 729 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowCursor.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCursor_Toggled); #line default #line hidden return; case 45: - this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnablePressureTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 535 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle_Toggled); + #line 736 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnablePressureTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePressureTouchMode_Toggled); #line default #line hidden return; case 46: - this.ToggleCheckboxEnableInkToShapeTriangle = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchDisablePressure = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 541 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeTriangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); - - #line default - #line hidden - - #line 542 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeTriangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); + #line 744 "..\..\..\MainWindow.xaml" + this.ToggleSwitchDisablePressure.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisablePressure_Toggled); #line default #line hidden return; case 47: - this.ToggleCheckboxEnableInkToShapeRectangle = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 552 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRectangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); - - #line default - #line hidden - - #line 553 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRectangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); + #line 753 "..\..\..\MainWindow.xaml" + this.ComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSize_SelectionChanged); #line default #line hidden return; case 48: - this.ToggleCheckboxEnableInkToShapeRounded = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchHideStrokeWhenSelecting = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 563 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRounded.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); - - #line default - #line hidden - - #line 564 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRounded.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); + #line 770 "..\..\..\MainWindow.xaml" + this.ToggleSwitchHideStrokeWhenSelecting.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchHideStrokeWhenSelecting_Toggled); #line default #line hidden return; case 49: - this.ToggleSwitchAutoStraightenLine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchClearCanvasAndClearTimeMachine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 580 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoStraightenLine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoStraightenLine_Toggled); + #line 780 "..\..\..\MainWindow.xaml" + this.ToggleSwitchClearCanvasAndClearTimeMachine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchClearCanvasAndClearTimeMachine_Toggled); #line default #line hidden return; case 50: - this.AutoStraightenLineThresholdSlider = ((System.Windows.Controls.Slider)(target)); + this.ComboBoxHyperbolaAsymptoteOption = ((System.Windows.Controls.ComboBox)(target)); - #line 588 "..\..\..\MainWindow.xaml" - this.AutoStraightenLineThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.AutoStraightenLineThresholdSlider_ValueChanged); + #line 789 "..\..\..\MainWindow.xaml" + this.ComboBoxHyperbolaAsymptoteOption.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxHyperbolaAsymptoteOption_SelectionChanged); #line default #line hidden return; case 51: - this.ToggleSwitchLineEndpointSnapping = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchFitToCurve = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 600 "..\..\..\MainWindow.xaml" - this.ToggleSwitchLineEndpointSnapping.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchLineEndpointSnapping_Toggled); + #line 802 "..\..\..\MainWindow.xaml" + this.ToggleSwitchFitToCurve.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFitToCurve_Toggled); #line default #line hidden return; case 52: - this.LineEndpointSnappingThresholdSlider = ((System.Windows.Controls.Slider)(target)); + this.RadioCrashSilentRestart = ((System.Windows.Controls.RadioButton)(target)); - #line 608 "..\..\..\MainWindow.xaml" - this.LineEndpointSnappingThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.LineEndpointSnappingThresholdSlider_ValueChanged); + #line 817 "..\..\..\MainWindow.xaml" + this.RadioCrashSilentRestart.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); #line default #line hidden return; case 53: - this.GroupBoxAppearanceNewUI = ((System.Windows.Controls.GroupBox)(target)); + this.RadioCrashNoAction = ((System.Windows.Controls.RadioButton)(target)); + + #line 820 "..\..\..\MainWindow.xaml" + this.RadioCrashNoAction.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); + + #line default + #line hidden return; case 54: - this.ComboBoxFloatingBarImg = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleSwitchAutoSwitchTwoFingerGesture = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 626 "..\..\..\MainWindow.xaml" - this.ComboBoxFloatingBarImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxFloatingBarImg_SelectionChanged); + #line 837 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSwitchTwoFingerGesture.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSwitchTwoFingerGesture_Toggled); #line default #line hidden return; case 55: - this.ViewboxFloatingBarScaleTransformValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchEnableTwoFingerRotationOnSelection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 644 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarScaleTransformValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarScaleTransformValueSlider_ValueChanged); + #line 849 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerRotationOnSelection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); #line default #line hidden return; case 56: - this.ViewboxFloatingBarOpacityValueSlider = ((System.Windows.Controls.Slider)(target)); - - #line 657 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarOpacityValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityValueSlider_ValueChanged); - - #line default - #line hidden + this.GroupBoxInkRecognition = ((System.Windows.Controls.GroupBox)(target)); return; case 57: - this.ViewboxFloatingBarOpacityInPPTValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchEnableInkToShape = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 670 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarOpacityInPPTValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityInPPTValueSlider_ValueChanged); + #line 866 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShape.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); #line default #line hidden return; case 58: - this.ToggleSwitchEnableDisPlayNibModeToggle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 686 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableDisPlayNibModeToggle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableDisPlayNibModeToggle_Toggled); + #line 877 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle_Toggled); #line default #line hidden return; case 59: - this.ToggleSwitchEnableViewboxBlackBoardScaleTransform = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 701 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableViewboxBlackBoardScaleTransform.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableViewboxBlackBoardScaleTransform_Toggled); + #line 886 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle_Toggled); #line default #line hidden return; case 60: - this.ToggleSwitchEnableTimeDisplayInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleCheckboxEnableInkToShapeTriangle = ((System.Windows.Controls.CheckBox)(target)); - #line 709 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTimeDisplayInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTimeDisplayInWhiteboardMode_Toggled); + #line 892 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeTriangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); + + #line default + #line hidden + + #line 893 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeTriangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); #line default #line hidden return; case 61: - this.ToggleSwitchEnableChickenSoupInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleCheckboxEnableInkToShapeRectangle = ((System.Windows.Controls.CheckBox)(target)); - #line 718 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableChickenSoupInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableChickenSoupInWhiteboardMode_Toggled); + #line 903 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRectangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); + + #line default + #line hidden + + #line 904 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRectangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); #line default #line hidden return; case 62: - this.ComboBoxChickenSoupSource = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleCheckboxEnableInkToShapeRounded = ((System.Windows.Controls.CheckBox)(target)); - #line 725 "..\..\..\MainWindow.xaml" - this.ComboBoxChickenSoupSource.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxChickenSoupSource_SelectionChanged); + #line 914 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRounded.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); + + #line default + #line hidden + + #line 915 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRounded.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); #line default #line hidden return; case 63: - this.ToggleSwitchEnableQuickPanel = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoStraightenLine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 738 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableQuickPanel.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableQuickPanel_Toggled); + #line 931 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoStraightenLine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoStraightenLine_Toggled); #line default #line hidden return; case 64: - this.ComboBoxUnFoldBtnImg = ((System.Windows.Controls.ComboBox)(target)); + this.AutoStraightenLineThresholdSlider = ((System.Windows.Controls.Slider)(target)); - #line 745 "..\..\..\MainWindow.xaml" - this.ComboBoxUnFoldBtnImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxUnFoldBtnImg_SelectionChanged); + #line 939 "..\..\..\MainWindow.xaml" + this.AutoStraightenLineThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.AutoStraightenLineThresholdSlider_ValueChanged); #line default #line hidden return; case 65: - this.ICCTrayIconExampleImage = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchLineEndpointSnapping = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 951 "..\..\..\MainWindow.xaml" + this.ToggleSwitchLineEndpointSnapping.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchLineEndpointSnapping_Toggled); + + #line default + #line hidden return; case 66: - this.ToggleSwitchEnableTrayIcon = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.LineEndpointSnappingThresholdSlider = ((System.Windows.Controls.Slider)(target)); - #line 792 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTrayIcon.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTrayIcon_Toggled); + #line 959 "..\..\..\MainWindow.xaml" + this.LineEndpointSnappingThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.LineEndpointSnappingThresholdSlider_ValueChanged); #line default #line hidden return; case 67: - this.ToggleSwitchSupportPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 811 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSupportPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportPowerPoint_Toggled); - - #line default - #line hidden + this.GroupBoxAppearanceNewUI = ((System.Windows.Controls.GroupBox)(target)); return; case 68: - this.ToggleSwitchSupportWPS = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ComboBoxFloatingBarImg = ((System.Windows.Controls.ComboBox)(target)); - #line 820 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSupportWPS.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportWPS_Toggled); + #line 977 "..\..\..\MainWindow.xaml" + this.ComboBoxFloatingBarImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxFloatingBarImg_SelectionChanged); #line default #line hidden return; case 69: - this.PPTBtnPreviewLS = ((System.Windows.Controls.Image)(target)); + this.ViewboxFloatingBarScaleTransformValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 995 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarScaleTransformValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarScaleTransformValueSlider_ValueChanged); + + #line default + #line hidden return; case 70: - this.PPTBtnPreviewLSTransform = ((System.Windows.Media.TranslateTransform)(target)); + this.ViewboxFloatingBarOpacityValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1008 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarOpacityValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityValueSlider_ValueChanged); + + #line default + #line hidden return; case 71: - this.PPTBtnPreviewRS = ((System.Windows.Controls.Image)(target)); + this.ViewboxFloatingBarOpacityInPPTValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1021 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarOpacityInPPTValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityInPPTValueSlider_ValueChanged); + + #line default + #line hidden return; case 72: - this.PPTBtnPreviewRSTransform = ((System.Windows.Media.TranslateTransform)(target)); + this.ToggleSwitchEnableDisPlayNibModeToggle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1037 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableDisPlayNibModeToggle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableDisPlayNibModeToggle_Toggled); + + #line default + #line hidden return; case 73: - this.PPTBtnPreviewLB = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableViewboxBlackBoardScaleTransform = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1052 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableViewboxBlackBoardScaleTransform.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableViewboxBlackBoardScaleTransform_Toggled); + + #line default + #line hidden return; case 74: - this.PPTBtnPreviewRB = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableTimeDisplayInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1060 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTimeDisplayInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTimeDisplayInWhiteboardMode_Toggled); + + #line default + #line hidden return; case 75: - this.ToggleSwitchShowPPTButton = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableChickenSoupInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 882 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowPPTButton.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowPPTButton_OnToggled); + #line 1069 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableChickenSoupInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableChickenSoupInWhiteboardMode_Toggled); #line default #line hidden return; case 76: - this.PPTButtonSettingsPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 77: - this.CheckboxEnableLBPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxChickenSoupSource = ((System.Windows.Controls.ComboBox)(target)); - #line 889 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); + #line 1076 "..\..\..\MainWindow.xaml" + this.ComboBoxChickenSoupSource.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxChickenSoupSource_SelectionChanged); #line default #line hidden + return; + case 77: + this.ToggleSwitchEnableQuickPanel = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 890 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); + #line 1089 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableQuickPanel.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableQuickPanel_Toggled); #line default #line hidden return; case 78: - this.CheckboxEnableRBPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxUnFoldBtnImg = ((System.Windows.Controls.ComboBox)(target)); - #line 894 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 895 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); + #line 1096 "..\..\..\MainWindow.xaml" + this.ComboBoxUnFoldBtnImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxUnFoldBtnImg_SelectionChanged); #line default #line hidden return; case 79: - this.CheckboxEnableLSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - - #line 899 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 900 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); - - #line default - #line hidden + this.ICCTrayIconExampleImage = ((System.Windows.Controls.Image)(target)); return; case 80: - this.CheckboxEnableRSPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchEnableTrayIcon = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 904 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 905 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); + #line 1143 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTrayIcon.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTrayIcon_Toggled); #line default #line hidden return; case 81: - this.PPTButtonLeftPositionValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchSupportPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 917 "..\..\..\MainWindow.xaml" - this.PPTButtonLeftPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonLeftPositionValueSlider_ValueChanged); + #line 1162 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSupportPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportPowerPoint_Toggled); #line default #line hidden return; case 82: - this.PPTBtnLSPlusBtn = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchSupportWPS = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 919 "..\..\..\MainWindow.xaml" - this.PPTBtnLSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSPlusBtn_Clicked); + #line 1171 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSupportWPS.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportWPS_Toggled); #line default #line hidden return; case 83: - this.PPTBtnLSMinusBtn = ((System.Windows.Controls.Button)(target)); - - #line 934 "..\..\..\MainWindow.xaml" - this.PPTBtnLSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSMinusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLS = ((System.Windows.Controls.Image)(target)); return; case 84: - this.PPTBtnLSSyncBtn = ((System.Windows.Controls.Button)(target)); - - #line 949 "..\..\..\MainWindow.xaml" - this.PPTBtnLSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSSyncBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLSTransform = ((System.Windows.Media.TranslateTransform)(target)); return; case 85: - this.PPTBtnLSResetBtn = ((System.Windows.Controls.Button)(target)); - - #line 964 "..\..\..\MainWindow.xaml" - this.PPTBtnLSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSResetBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewRS = ((System.Windows.Controls.Image)(target)); return; case 86: - this.PPTButtonRightPositionValueSlider = ((System.Windows.Controls.Slider)(target)); - - #line 991 "..\..\..\MainWindow.xaml" - this.PPTButtonRightPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonRightPositionValueSlider_ValueChanged); - - #line default - #line hidden + this.PPTBtnPreviewRSTransform = ((System.Windows.Media.TranslateTransform)(target)); return; case 87: - this.PPTBtnRSPlusBtn = ((System.Windows.Controls.Button)(target)); - - #line 993 "..\..\..\MainWindow.xaml" - this.PPTBtnRSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSPlusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLB = ((System.Windows.Controls.Image)(target)); return; case 88: - this.PPTBtnRSMinusBtn = ((System.Windows.Controls.Button)(target)); - - #line 1008 "..\..\..\MainWindow.xaml" - this.PPTBtnRSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSMinusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewRB = ((System.Windows.Controls.Image)(target)); return; case 89: - this.PPTBtnRSSyncBtn = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchShowPPTButton = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1023 "..\..\..\MainWindow.xaml" - this.PPTBtnRSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSSyncBtn_Clicked); + #line 1233 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowPPTButton.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowPPTButton_OnToggled); #line default #line hidden return; case 90: - this.PPTBtnRSResetBtn = ((System.Windows.Controls.Button)(target)); - - #line 1038 "..\..\..\MainWindow.xaml" - this.PPTBtnRSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSResetBtn_Clicked); - - #line default - #line hidden + this.PPTButtonSettingsPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 91: - this.CheckboxSPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableLBPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1065 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + #line 1240 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); #line default #line hidden - #line 1066 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + #line 1241 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); #line default #line hidden return; case 92: - this.CheckboxSPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableRBPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1070 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + #line 1245 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); #line default #line hidden - #line 1071 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + #line 1246 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); #line default #line hidden return; case 93: - this.CheckboxSPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableLSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1077 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + #line 1250 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); #line default #line hidden - #line 1078 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + #line 1251 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); #line default #line hidden return; case 94: - this.CheckboxBPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableRSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1087 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + #line 1255 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); #line default #line hidden - #line 1088 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + #line 1256 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); #line default #line hidden return; case 95: - this.CheckboxBPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); + this.PPTButtonLeftPositionValueSlider = ((System.Windows.Controls.Slider)(target)); - #line 1092 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); - - #line default - #line hidden - - #line 1093 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); + #line 1268 "..\..\..\MainWindow.xaml" + this.PPTButtonLeftPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonLeftPositionValueSlider_ValueChanged); #line default #line hidden return; case 96: - this.CheckboxBPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); + this.PPTBtnLSPlusBtn = ((System.Windows.Controls.Button)(target)); - #line 1098 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); - - #line default - #line hidden - - #line 1099 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); + #line 1270 "..\..\..\MainWindow.xaml" + this.PPTBtnLSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSPlusBtn_Clicked); #line default #line hidden return; case 97: - this.ToggleSwitchEnablePPTButtonPageClickable = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnLSMinusBtn = ((System.Windows.Controls.Button)(target)); - #line 1112 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnablePPTButtonPageClickable.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePPTButtonPageClickable_OnToggled); + #line 1285 "..\..\..\MainWindow.xaml" + this.PPTBtnLSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSMinusBtn_Clicked); #line default #line hidden return; case 98: - this.SettingsShowCanvasAtNewSlideShowStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.PPTBtnLSSyncBtn = ((System.Windows.Controls.Button)(target)); + + #line 1300 "..\..\..\MainWindow.xaml" + this.PPTBtnLSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSSyncBtn_Clicked); + + #line default + #line hidden return; case 99: - this.ToggleSwitchShowCanvasAtNewSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnLSResetBtn = ((System.Windows.Controls.Button)(target)); - #line 1127 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowCanvasAtNewSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCanvasAtNewSlideShow_Toggled); + #line 1315 "..\..\..\MainWindow.xaml" + this.PPTBtnLSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSResetBtn_Clicked); #line default #line hidden return; case 100: - this.SettingsPPTInkingAndAutoFoldExplictBorder = ((System.Windows.Controls.Border)(target)); + this.PPTButtonRightPositionValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1342 "..\..\..\MainWindow.xaml" + this.PPTButtonRightPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonRightPositionValueSlider_ValueChanged); + + #line default + #line hidden return; case 101: - this.ToggleSwitchEnableTwoFingerGestureInPresentationMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSPlusBtn = ((System.Windows.Controls.Button)(target)); - #line 1155 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerGestureInPresentationMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerGestureInPresentationMode_Toggled); + #line 1344 "..\..\..\MainWindow.xaml" + this.PPTBtnRSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSPlusBtn_Clicked); #line default #line hidden return; case 102: - this.ToggleSwitchEnableFingerGestureSlideShowControl = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSMinusBtn = ((System.Windows.Controls.Button)(target)); - #line 1163 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableFingerGestureSlideShowControl.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableFingerGestureSlideShowControl_Toggled); + #line 1359 "..\..\..\MainWindow.xaml" + this.PPTBtnRSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSMinusBtn_Clicked); #line default #line hidden return; case 103: - this.ToggleSwitchAutoSaveScreenShotInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSSyncBtn = ((System.Windows.Controls.Button)(target)); - #line 1176 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveScreenShotInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveScreenShotInPowerPoint_Toggled); + #line 1374 "..\..\..\MainWindow.xaml" + this.PPTBtnRSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSSyncBtn_Clicked); #line default #line hidden return; case 104: - this.ToggleSwitchAutoSaveStrokesInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSResetBtn = ((System.Windows.Controls.Button)(target)); - #line 1186 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesInPowerPoint_Toggled); + #line 1389 "..\..\..\MainWindow.xaml" + this.PPTBtnRSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSResetBtn_Clicked); #line default #line hidden return; case 105: - this.ToggleSwitchNotifyPreviousPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); - #line 1198 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyPreviousPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyPreviousPage_Toggled); + #line 1416 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + + #line default + #line hidden + + #line 1417 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); #line default #line hidden return; case 106: - this.ToggleSwitchNotifyHiddenPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); - #line 1205 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyHiddenPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyHiddenPage_Toggled); + #line 1421 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + + #line default + #line hidden + + #line 1422 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); #line default #line hidden return; case 107: - this.ToggleSwitchNotifyAutoPlayPresentation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); - #line 1213 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyAutoPlayPresentation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyAutoPlayPresentation_Toggled); + #line 1428 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + + #line default + #line hidden + + #line 1429 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); #line default #line hidden return; case 108: - this.ToggleSwitchIsSpecialScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxBPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); - #line 1231 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsSpecialScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSpecialScreen_OnToggled); + #line 1438 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + + #line default + #line hidden + + #line 1439 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); #line default #line hidden return; case 109: - this.TouchMultiplierSlider = ((System.Windows.Controls.Slider)(target)); + this.CheckboxBPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); - #line 1243 "..\..\..\MainWindow.xaml" - this.TouchMultiplierSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.TouchMultiplierSlider_ValueChanged); + #line 1443 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); + + #line default + #line hidden + + #line 1444 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); #line default #line hidden return; case 110: + this.CheckboxBPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); - #line 1258 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).TouchDown += new System.EventHandler(this.BorderCalculateMultiplier_TouchDown); + #line 1449 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); + + #line default + #line hidden + + #line 1450 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); #line default #line hidden return; case 111: - this.TextBlockShowCalculatedMultiplier = ((System.Windows.Controls.TextBlock)(target)); - return; - case 112: - this.ToggleSwitchEraserBindTouchMultiplier = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnablePPTButtonPageClickable = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1269 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEraserBindTouchMultiplier.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEraserBindTouchMultiplier_Toggled); + #line 1463 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnablePPTButtonPageClickable.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePPTButtonPageClickable_OnToggled); #line default #line hidden return; + case 112: + this.SettingsShowCanvasAtNewSlideShowStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; case 113: - this.NibModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchShowCanvasAtNewSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1282 "..\..\..\MainWindow.xaml" - this.NibModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.NibModeBoundsWidthSlider_ValueChanged); + #line 1478 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowCanvasAtNewSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCanvasAtNewSlideShow_Toggled); #line default #line hidden return; case 114: - this.FingerModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 1294 "..\..\..\MainWindow.xaml" - this.FingerModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.FingerModeBoundsWidthSlider_ValueChanged); - - #line default - #line hidden + this.SettingsPPTInkingAndAutoFoldExplictBorder = ((System.Windows.Controls.Border)(target)); return; case 115: - this.ToggleSwitchIsQuadIR = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableTwoFingerGestureInPresentationMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1304 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsQuadIR.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsQuadIR_Toggled); + #line 1506 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerGestureInPresentationMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerGestureInPresentationMode_Toggled); #line default #line hidden return; case 116: - this.ToggleSwitchIsLogEnabled = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableFingerGestureSlideShowControl = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1313 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsLogEnabled.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsLogEnabled_Toggled); + #line 1514 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableFingerGestureSlideShowControl.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableFingerGestureSlideShowControl_Toggled); #line default #line hidden return; case 117: - this.ToggleSwitchIsSecondConfimeWhenShutdownApp = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoSaveScreenShotInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1322 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsSecondConfimeWhenShutdownApp.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSecondConfimeWhenShutdownApp_Toggled); + #line 1527 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveScreenShotInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveScreenShotInPowerPoint_Toggled); #line default #line hidden return; case 118: - this.ToggleSwitchIsEnableFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoSaveStrokesInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1353 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableFullScreenHelper_Toggled); + #line 1537 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesInPowerPoint_Toggled); #line default #line hidden return; case 119: - this.ToggleSwitchIsEnableAvoidFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyPreviousPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1386 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableAvoidFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableAvoidFullScreenHelper_OnToggled); + #line 1549 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyPreviousPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyPreviousPage_Toggled); #line default #line hidden return; case 120: - this.ToggleSwitchIsEnableEdgeGestureUtil = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyHiddenPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1418 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableEdgeGestureUtil.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableEdgeGestureUtil_Toggled); + #line 1556 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyHiddenPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyHiddenPage_Toggled); #line default #line hidden return; case 121: - this.ToggleSwitchIsEnableForceFullScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyAutoPlayPresentation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1455 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableForceFullScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableForceFullScreen_Toggled); + #line 1564 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyAutoPlayPresentation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyAutoPlayPresentation_Toggled); #line default #line hidden return; case 122: - this.ToggleSwitchIsEnableDPIChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsSpecialScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1487 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableDPIChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableDPIChangeDetection_Toggled); + #line 1582 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsSpecialScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSpecialScreen_OnToggled); #line default #line hidden return; case 123: - this.ToggleSwitchIsEnableResolutionChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.TouchMultiplierSlider = ((System.Windows.Controls.Slider)(target)); - #line 1519 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableResolutionChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableResolutionChangeDetection_Toggled); + #line 1594 "..\..\..\MainWindow.xaml" + this.TouchMultiplierSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.TouchMultiplierSlider_ValueChanged); #line default #line hidden return; case 124: - this.ToggleSwitchAutoFoldInEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1559 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote_Toggled); + #line 1609 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).TouchDown += new System.EventHandler(this.BorderCalculateMultiplier_TouchDown); #line default #line hidden return; case 125: - this.ToggleSwitchAutoFoldInEasiCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 1572 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiCamera_Toggled); - - #line default - #line hidden + this.TextBlockShowCalculatedMultiplier = ((System.Windows.Controls.TextBlock)(target)); return; case 126: - this.ToggleSwitchAutoFoldInEasiNote3 = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEraserBindTouchMultiplier = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1585 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote3.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3_Toggled); + #line 1620 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEraserBindTouchMultiplier.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEraserBindTouchMultiplier_Toggled); #line default #line hidden return; case 127: - this.ToggleSwitchAutoFoldInEasiNote3C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.NibModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 1598 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote3C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3C_Toggled); + #line 1633 "..\..\..\MainWindow.xaml" + this.NibModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.NibModeBoundsWidthSlider_ValueChanged); #line default #line hidden return; case 128: - this.ToggleSwitchAutoFoldInEasiNote5C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.FingerModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 1612 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote5C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote5C_Toggled); + #line 1645 "..\..\..\MainWindow.xaml" + this.FingerModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.FingerModeBoundsWidthSlider_ValueChanged); #line default #line hidden return; case 129: - this.ToggleSwitchAutoFoldInSeewoPincoTeacher = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsQuadIR = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1626 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInSeewoPincoTeacher.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInSeewoPincoTeacher_Toggled); + #line 1655 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsQuadIR.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsQuadIR_Toggled); #line default #line hidden return; case 130: - this.ToggleSwitchAutoFoldInHiteTouchPro = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsLogEnabled = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1640 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteTouchPro.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteTouchPro_Toggled); + #line 1664 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsLogEnabled.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsLogEnabled_Toggled); #line default #line hidden return; case 131: - this.ToggleSwitchAutoFoldInHiteCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsSecondConfimeWhenShutdownApp = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1654 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteCamera_Toggled); + #line 1673 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsSecondConfimeWhenShutdownApp.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSecondConfimeWhenShutdownApp_Toggled); #line default #line hidden return; case 132: - this.ToggleSwitchAutoFoldInHiteLightBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1668 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteLightBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteLightBoard_Toggled); + #line 1704 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableFullScreenHelper_Toggled); #line default #line hidden return; case 133: - this.ToggleSwitchAutoFoldInWxBoardMain = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableAvoidFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1682 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInWxBoardMain.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInWxBoardMain_Toggled); + #line 1737 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableAvoidFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableAvoidFullScreenHelper_OnToggled); #line default #line hidden return; case 134: - this.ToggleSwitchAutoFoldInMSWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableEdgeGestureUtil = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1696 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInMSWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMSWhiteboard_Toggled); + #line 1769 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableEdgeGestureUtil.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableEdgeGestureUtil_Toggled); #line default #line hidden return; case 135: - this.ToggleSwitchAutoFoldInAdmoxWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableForceFullScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1710 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInAdmoxWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxWhiteboard_Toggled); + #line 1806 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableForceFullScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableForceFullScreen_Toggled); #line default #line hidden return; case 136: - this.ToggleSwitchAutoFoldInAdmoxBooth = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableDPIChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1724 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInAdmoxBooth.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxBooth_Toggled); + #line 1838 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableDPIChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableDPIChangeDetection_Toggled); #line default #line hidden return; case 137: - this.ToggleSwitchAutoFoldInQPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableResolutionChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1738 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInQPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInQPoint_Toggled); + #line 1870 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableResolutionChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableResolutionChangeDetection_Toggled); #line default #line hidden return; case 138: - this.ToggleSwitchAutoFoldInYiYunVisualPresenter = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1752 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInYiYunVisualPresenter.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInYiYunVisualPresenter_Toggled); + #line 1910 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote_Toggled); #line default #line hidden return; case 139: - this.ToggleSwitchAutoFoldInMaxHubWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1767 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInMaxHubWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMaxHubWhiteboard_Toggled); + #line 1923 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiCamera_Toggled); #line default #line hidden return; case 140: - this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote3 = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1780 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno_Toggled); + #line 1936 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote3.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3_Toggled); #line default #line hidden return; case 141: - this.ToggleSwitchAutoFoldInOldZyBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote3C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1790 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInOldZyBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInOldZyBoard_Toggled); + #line 1949 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote3C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3C_Toggled); #line default #line hidden return; case 142: - this.ToggleSwitchAutoFoldInPPTSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote5C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1800 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInPPTSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInPPTSlideShow_Toggled); + #line 1963 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote5C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote5C_Toggled); #line default #line hidden return; case 143: - this.ToggleSwitchAutoKillPptService = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInSeewoPincoTeacher = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1815 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillPptService.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillPptService_Toggled); + #line 1977 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInSeewoPincoTeacher.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInSeewoPincoTeacher_Toggled); #line default #line hidden return; case 144: - this.ToggleSwitchAutoKillEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteTouchPro = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1827 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillEasiNote_Toggled); + #line 1991 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteTouchPro.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteTouchPro_Toggled); #line default #line hidden return; case 145: - this.ToggleSwitchAutoKillHiteAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1838 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillHiteAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillHiteAnnotation_Toggled); + #line 2005 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteCamera_Toggled); #line default #line hidden return; case 146: - this.ToggleSwitchAutoKillVComYouJiao = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteLightBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1849 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillVComYouJiao.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillVComYouJiao_Toggled); + #line 2019 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteLightBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteLightBoard_Toggled); #line default #line hidden return; case 147: - this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInWxBoardMain = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1861 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation_Toggled); + #line 2033 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInWxBoardMain.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInWxBoardMain_Toggled); #line default #line hidden return; case 148: - this.ToggleSwitchAutoKillInkCanvas = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInMSWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1882 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillInkCanvas.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillInkCanvas_Toggled); + #line 2047 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInMSWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMSWhiteboard_Toggled); #line default #line hidden return; case 149: - this.ToggleSwitchAutoKillICA = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInAdmoxWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1894 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillICA.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillICA_Toggled); + #line 2061 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInAdmoxWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxWhiteboard_Toggled); #line default #line hidden return; case 150: - this.ToggleSwitchAutoKillIDT = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInAdmoxBooth = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1905 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillIDT.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillIDT_Toggled); + #line 2075 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInAdmoxBooth.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxBooth_Toggled); #line default #line hidden return; case 151: - this.ToggleSwitchAutoSaveStrokesAtClear = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInQPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1915 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesAtClear.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtClear_Toggled); + #line 2089 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInQPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInQPoint_Toggled); #line default #line hidden return; case 152: - this.ToggleSwitchSaveScreenshotsInDateFolders = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInYiYunVisualPresenter = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1923 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSaveScreenshotsInDateFolders.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSaveScreenshotsInDateFolders_Toggled); + #line 2103 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInYiYunVisualPresenter.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInYiYunVisualPresenter_Toggled); #line default #line hidden return; case 153: - this.ToggleSwitchAutoSaveStrokesAtScreenshot = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInMaxHubWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1931 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesAtScreenshot.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtScreenshot_Toggled); + #line 2118 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInMaxHubWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMaxHubWhiteboard_Toggled); #line default #line hidden return; case 154: - this.SideControlMinimumAutomationSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1942 "..\..\..\MainWindow.xaml" - this.SideControlMinimumAutomationSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.SideControlMinimumAutomationSlider_ValueChanged); + #line 2131 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno_Toggled); #line default #line hidden return; case 155: - this.AutoSavedStrokesLocation = ((System.Windows.Controls.TextBox)(target)); + this.ToggleSwitchAutoFoldInOldZyBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1957 "..\..\..\MainWindow.xaml" - this.AutoSavedStrokesLocation.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.AutoSavedStrokesLocationTextBox_TextChanged); + #line 2141 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInOldZyBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInOldZyBoard_Toggled); #line default #line hidden return; case 156: - this.AutoSavedStrokesLocationButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoFoldInPPTSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1959 "..\..\..\MainWindow.xaml" - this.AutoSavedStrokesLocationButton.Click += new System.Windows.RoutedEventHandler(this.AutoSavedStrokesLocationButton_Click); + #line 2151 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInPPTSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInPPTSlideShow_Toggled); #line default #line hidden return; case 157: - this.SetAutoSavedStrokesLocationToDiskDButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoKillPptService = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1964 "..\..\..\MainWindow.xaml" - this.SetAutoSavedStrokesLocationToDiskDButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDiskDButton_Click); + #line 2166 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillPptService.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillPptService_Toggled); #line default #line hidden return; case 158: - this.SetAutoSavedStrokesLocationToDocumentFolderButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoKillEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1967 "..\..\..\MainWindow.xaml" - this.SetAutoSavedStrokesLocationToDocumentFolderButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDocumentFolderButton_Click); + #line 2178 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillEasiNote_Toggled); #line default #line hidden return; case 159: - this.ToggleSwitchAutoDelSavedFiles = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillHiteAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1981 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoDelSavedFiles.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoDelSavedFiles_Toggled); + #line 2189 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillHiteAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillHiteAnnotation_Toggled); #line default #line hidden return; case 160: - this.ComboBoxAutoDelSavedFilesDaysThreshold = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleSwitchAutoKillVComYouJiao = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1993 "..\..\..\MainWindow.xaml" - this.ComboBoxAutoDelSavedFilesDaysThreshold.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxAutoDelSavedFilesDaysThreshold_SelectionChanged); + #line 2200 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillVComYouJiao.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillVComYouJiao_Toggled); #line default #line hidden return; case 161: - this.GroupBoxRandWindow = ((System.Windows.Controls.GroupBox)(target)); + this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2212 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation_Toggled); + + #line default + #line hidden return; case 162: - this.ToggleSwitchDisplayRandWindowNamesInputBtn = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillInkCanvas = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2022 "..\..\..\MainWindow.xaml" - this.ToggleSwitchDisplayRandWindowNamesInputBtn.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled); + #line 2233 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillInkCanvas.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillInkCanvas_Toggled); #line default #line hidden return; case 163: - this.ToggleSwitchShowRandomAndSingleDraw = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillICA = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2031 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowRandomAndSingleDraw.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowRandomAndSingleDraw_Toggled); + #line 2245 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillICA.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillICA_Toggled); #line default #line hidden return; case 164: - this.RandWindowOnceCloseLatencySlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoKillIDT = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2042 "..\..\..\MainWindow.xaml" - this.RandWindowOnceCloseLatencySlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceCloseLatencySlider_ValueChanged); + #line 2256 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillIDT.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillIDT_Toggled); #line default #line hidden return; case 165: - this.RandWindowOnceMaxStudentsSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoSaveStrokesAtClear = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2056 "..\..\..\MainWindow.xaml" - this.RandWindowOnceMaxStudentsSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceMaxStudentsSlider_ValueChanged); + #line 2266 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesAtClear.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtClear_Toggled); #line default #line hidden return; case 166: - this.AppVersionTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ToggleSwitchSaveScreenshotsInDateFolders = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2274 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSaveScreenshotsInDateFolders.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSaveScreenshotsInDateFolders_Toggled); + + #line default + #line hidden return; case 167: + this.ToggleSwitchAutoSaveStrokesAtScreenshot = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2178 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToICCRepository_Click); + #line 2282 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesAtScreenshot.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtScreenshot_Toggled); #line default #line hidden return; case 168: + this.SideControlMinimumAutomationSlider = ((System.Windows.Controls.Slider)(target)); - #line 2185 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToPresentRepository_Click); + #line 2293 "..\..\..\MainWindow.xaml" + this.SideControlMinimumAutomationSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.SideControlMinimumAutomationSlider_ValueChanged); #line default #line hidden return; case 169: + this.AutoSavedStrokesLocation = ((System.Windows.Controls.TextBox)(target)); - #line 2191 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToOringinalRepository_Click); + #line 2308 "..\..\..\MainWindow.xaml" + this.AutoSavedStrokesLocation.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.AutoSavedStrokesLocationTextBox_TextChanged); #line default #line hidden return; case 170: + this.AutoSavedStrokesLocationButton = ((System.Windows.Controls.Button)(target)); - #line 2430 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnSettings_Click); + #line 2310 "..\..\..\MainWindow.xaml" + this.AutoSavedStrokesLocationButton.Click += new System.Windows.RoutedEventHandler(this.AutoSavedStrokesLocationButton_Click); #line default #line hidden return; case 171: - this.GridBackgroundCoverHolder = ((System.Windows.Controls.Grid)(target)); + this.SetAutoSavedStrokesLocationToDiskDButton = ((System.Windows.Controls.Button)(target)); + + #line 2315 "..\..\..\MainWindow.xaml" + this.SetAutoSavedStrokesLocationToDiskDButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDiskDButton_Click); + + #line default + #line hidden return; case 172: - this.GridBackgroundCover = ((System.Windows.Controls.Grid)(target)); + this.SetAutoSavedStrokesLocationToDocumentFolderButton = ((System.Windows.Controls.Button)(target)); + + #line 2318 "..\..\..\MainWindow.xaml" + this.SetAutoSavedStrokesLocationToDocumentFolderButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDocumentFolderButton_Click); + + #line default + #line hidden return; case 173: - this.ICCWaterMarkWhite = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchAutoDelSavedFiles = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2332 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoDelSavedFiles.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoDelSavedFiles_Toggled); + + #line default + #line hidden return; case 174: - this.ICCWaterMarkDark = ((System.Windows.Controls.Image)(target)); + this.ComboBoxAutoDelSavedFilesDaysThreshold = ((System.Windows.Controls.ComboBox)(target)); + + #line 2344 "..\..\..\MainWindow.xaml" + this.ComboBoxAutoDelSavedFilesDaysThreshold.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxAutoDelSavedFilesDaysThreshold_SelectionChanged); + + #line default + #line hidden return; case 175: - this.GridTransparencyFakeBackground = ((System.Windows.Controls.Grid)(target)); + this.GroupBoxRandWindow = ((System.Windows.Controls.GroupBox)(target)); return; case 176: - this.Label = ((System.Windows.Controls.Label)(target)); + this.ToggleSwitchDisplayRandWindowNamesInputBtn = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2373 "..\..\..\MainWindow.xaml" + this.ToggleSwitchDisplayRandWindowNamesInputBtn.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled); + + #line default + #line hidden return; case 177: - this.InkCanvasGridForInkReplay = ((System.Windows.Controls.Grid)(target)); + this.ToggleSwitchShowRandomAndSingleDraw = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2382 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowRandomAndSingleDraw.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowRandomAndSingleDraw_Toggled); + + #line default + #line hidden return; case 178: - this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target)); + this.RandWindowOnceCloseLatencySlider = ((System.Windows.Controls.Slider)(target)); - #line 2450 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchUp += new System.EventHandler(this.Main_Grid_TouchUp); - - #line default - #line hidden - - #line 2450 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchDown += new System.EventHandler(this.Main_Grid_TouchDown); - - #line default - #line hidden - - #line 2451 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchMove += new System.EventHandler(this.inkCanvas_TouchMove); - - #line default - #line hidden - - #line 2452 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationDelta += new System.EventHandler(this.Main_Grid_ManipulationDelta); - - #line default - #line hidden - - #line 2453 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationCompleted += new System.EventHandler(this.Main_Grid_ManipulationCompleted); - - #line default - #line hidden - - #line 2454 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationInertiaStarting += new System.EventHandler(this.inkCanvas_ManipulationInertiaStarting); - - #line default - #line hidden - - #line 2456 "..\..\..\MainWindow.xaml" - this.inkCanvas.EditingModeChanged += new System.Windows.RoutedEventHandler(this.inkCanvas_EditingModeChanged); - - #line default - #line hidden - - #line 2457 "..\..\..\MainWindow.xaml" - this.inkCanvas.PreviewTouchDown += new System.EventHandler(this.inkCanvas_PreviewTouchDown); - - #line default - #line hidden - - #line 2458 "..\..\..\MainWindow.xaml" - this.inkCanvas.PreviewTouchUp += new System.EventHandler(this.inkCanvas_PreviewTouchUp); - - #line default - #line hidden - - #line 2459 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseDown); - - #line default - #line hidden - - #line 2460 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseMove += new System.Windows.Input.MouseEventHandler(this.inkCanvas_MouseMove); - - #line default - #line hidden - - #line 2461 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseUp); - - #line default - #line hidden - - #line 2462 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationStarting += new System.EventHandler(this.inkCanvas_ManipulationStarting); - - #line default - #line hidden - - #line 2463 "..\..\..\MainWindow.xaml" - this.inkCanvas.SelectionChanged += new System.EventHandler(this.inkCanvas_SelectionChanged); - - #line default - #line hidden - - #line 2464 "..\..\..\MainWindow.xaml" - this.inkCanvas.StrokeCollected += new System.Windows.Controls.InkCanvasStrokeCollectedEventHandler(this.inkCanvas_StrokeCollected); + #line 2393 "..\..\..\MainWindow.xaml" + this.RandWindowOnceCloseLatencySlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceCloseLatencySlider_ValueChanged); #line default #line hidden return; case 179: - this.WaterMarkTime = ((System.Windows.Controls.TextBlock)(target)); + this.RandWindowOnceMaxStudentsSlider = ((System.Windows.Controls.Slider)(target)); + + #line 2407 "..\..\..\MainWindow.xaml" + this.RandWindowOnceMaxStudentsSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceMaxStudentsSlider_ValueChanged); + + #line default + #line hidden return; case 180: - this.WaterMarkDate = ((System.Windows.Controls.TextBlock)(target)); + this.AppVersionTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 181: - this.BlackBoardWaterMark = ((System.Windows.Controls.TextBlock)(target)); + + #line 2529 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToICCRepository_Click); + + #line default + #line hidden return; case 182: - this.GridInkCanvasSelectionCover = ((System.Windows.Controls.Grid)(target)); - #line 2479 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseDown); - - #line default - #line hidden - - #line 2480 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseUp); - - #line default - #line hidden - - #line 2482 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationStarting += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationStarting); - - #line default - #line hidden - - #line 2483 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationCompleted += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationCompleted); - - #line default - #line hidden - - #line 2484 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationDelta += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationDelta); - - #line default - #line hidden - - #line 2485 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.PreviewTouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchDown); - - #line default - #line hidden - - #line 2486 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.PreviewTouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchUp); - - #line default - #line hidden - - #line 2487 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.TouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchDown); - - #line default - #line hidden - - #line 2488 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.TouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchUp); + #line 2536 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToPresentRepository_Click); #line default #line hidden return; case 183: - this.BorderStrokeSelectionControl = ((System.Windows.Controls.Border)(target)); - return; - case 184: - this.BorderStrokeSelectionClone = ((System.Windows.Controls.Border)(target)); - #line 2500 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionClone.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2542 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToOringinalRepository_Click); #line default #line hidden + return; + case 184: - #line 2500 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionClone.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionClone_MouseUp); + #line 2745 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnCloseSettings_Click); #line default #line hidden return; case 185: - this.BorderStrokeSelectionCloneToNewBoard = ((System.Windows.Controls.Border)(target)); - - #line 2510 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionCloneToNewBoard.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2511 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionCloneToNewBoard.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionCloneToNewBoard_MouseUp); - - #line default - #line hidden + this.GridBackgroundCoverHolder = ((System.Windows.Controls.Grid)(target)); return; case 186: - - #line 2527 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2527 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate45_MouseUp); - - #line default - #line hidden + this.GridBackgroundCover = ((System.Windows.Controls.Grid)(target)); return; case 187: - - #line 2529 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2529 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate90_MouseUp); - - #line default - #line hidden + this.ICCWaterMarkWhite = ((System.Windows.Controls.Image)(target)); return; case 188: - - #line 2541 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2541 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipHorizontal_MouseUp); - - #line default - #line hidden + this.ICCWaterMarkDark = ((System.Windows.Controls.Image)(target)); return; case 189: - - #line 2544 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2544 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipVertical_MouseUp); - - #line default - #line hidden + this.GridTransparencyFakeBackground = ((System.Windows.Controls.Grid)(target)); return; case 190: - - #line 2558 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2558 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthDecrease_MouseUp); - - #line default - #line hidden + this.Label = ((System.Windows.Controls.Label)(target)); return; case 191: - - #line 2565 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2565 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthIncrease_MouseUp); - - #line default - #line hidden + this.InkCanvasGridForInkReplay = ((System.Windows.Controls.Grid)(target)); return; case 192: + this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target)); - #line 2572 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2787 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchUp += new System.EventHandler(this.Main_Grid_TouchUp); #line default #line hidden - #line 2572 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthRestore_MouseUp); - - #line default - #line hidden - return; - case 193: - - #line 2588 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2787 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchDown += new System.EventHandler(this.Main_Grid_TouchDown); #line default #line hidden - #line 2588 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionDelete_MouseUp); + #line 2788 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchMove += new System.EventHandler(this.inkCanvas_TouchMove); #line default #line hidden - return; - case 194: - #line 2609 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + #line 2789 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationDelta += new System.EventHandler(this.Main_Grid_ManipulationDelta); #line default #line hidden - return; - case 195: - #line 2617 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + #line 2790 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationCompleted += new System.EventHandler(this.Main_Grid_ManipulationCompleted); #line default #line hidden - return; - case 196: - #line 2627 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + #line 2791 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationInertiaStarting += new System.EventHandler(this.inkCanvas_ManipulationInertiaStarting); #line default #line hidden - return; - case 197: - this.BlackboardUIGridForInkReplay = ((System.Windows.Controls.Grid)(target)); - return; - case 198: - this.ViewboxBlackboardLeftSide = ((System.Windows.Controls.Viewbox)(target)); - return; - case 199: - this.BlackboardLeftSide = ((System.Windows.Controls.Grid)(target)); - return; - case 200: - #line 2650 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + #line 2793 "..\..\..\MainWindow.xaml" + this.inkCanvas.EditingModeChanged += new System.Windows.RoutedEventHandler(this.inkCanvas_EditingModeChanged); #line default #line hidden - return; - case 201: - this.BtnLeftWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 202: - this.BtnLeftWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 203: - this.BtnLeftPageListWB = ((System.Windows.Controls.Border)(target)); - #line 2673 "..\..\..\MainWindow.xaml" - this.BtnLeftPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + #line 2794 "..\..\..\MainWindow.xaml" + this.inkCanvas.PreviewTouchDown += new System.EventHandler(this.inkCanvas_PreviewTouchDown); #line default #line hidden - return; - case 204: - this.BoardBorderLeftPageListView = ((System.Windows.Controls.Border)(target)); - return; - case 205: - this.BlackBoardLeftSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - return; - case 206: - this.BlackBoardLeftSidePageListView = ((System.Windows.Controls.ListView)(target)); - return; - case 208: - #line 2736 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + #line 2795 "..\..\..\MainWindow.xaml" + this.inkCanvas.PreviewTouchUp += new System.EventHandler(this.inkCanvas_PreviewTouchUp); #line default #line hidden - return; - case 209: - this.BtnLeftWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 210: - this.BtnLeftWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 211: - #line 2765 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + #line 2796 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseDown); + + #line default + #line hidden + + #line 2797 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseMove += new System.Windows.Input.MouseEventHandler(this.inkCanvas_MouseMove); + + #line default + #line hidden + + #line 2798 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseUp); #line default #line hidden - return; - case 212: - this.ViewboxBlackboardCenterSideScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); - return; - case 213: - this.BlackboardCenterSide = ((System.Windows.Controls.Grid)(target)); - return; - case 214: - this.BoardGesture = ((System.Windows.Controls.Border)(target)); #line 2799 "..\..\..\MainWindow.xaml" - this.BoardGesture.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + this.inkCanvas.ManipulationStarting += new System.EventHandler(this.inkCanvas_ManipulationStarting); #line default #line hidden #line 2800 "..\..\..\MainWindow.xaml" - this.BoardGesture.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); - - #line default - #line hidden - return; - case 215: - this.BoardGestureGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 216: - this.BoardGestureGeometry2 = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 217: - this.BoardGestureLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 218: - this.BoardTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); - return; - case 219: - this.BoardToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2862 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); - - #line default - #line hidden - return; - case 220: - this.BoardToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2893 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); - - #line default - #line hidden - return; - case 221: - this.BoardToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2922 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); - - #line default - #line hidden - return; - case 222: - this.BoardToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2951 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); - - #line default - #line hidden - return; - case 223: - - #line 2970 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + this.inkCanvas.SelectionChanged += new System.EventHandler(this.inkCanvas_SelectionChanged); #line default #line hidden - #line 2971 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardChangeBackgroundColorBtn_MouseUp); + #line 2801 "..\..\..\MainWindow.xaml" + this.inkCanvas.StrokeCollected += new System.Windows.Controls.InkCanvasStrokeCollectedEventHandler(this.inkCanvas_StrokeCollected); #line default #line hidden return; - case 224: - this.BoardSelect = ((System.Windows.Controls.Border)(target)); + case 193: + this.WaterMarkTime = ((System.Windows.Controls.TextBlock)(target)); + return; + case 194: + this.WaterMarkDate = ((System.Windows.Controls.TextBlock)(target)); + return; + case 195: + this.BlackBoardWaterMark = ((System.Windows.Controls.TextBlock)(target)); + return; + case 196: + this.GridInkCanvasSelectionCover = ((System.Windows.Controls.Grid)(target)); - #line 2997 "..\..\..\MainWindow.xaml" - this.BoardSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2816 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseDown); #line default #line hidden - #line 2999 "..\..\..\MainWindow.xaml" - this.BoardSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); - - #line default - #line hidden - return; - case 225: - this.BoardSelectGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 226: - this.BoardSelectLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 227: - this.BoardPen = ((System.Windows.Controls.Border)(target)); - - #line 3022 "..\..\..\MainWindow.xaml" - this.BoardPen.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2817 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseUp); #line default #line hidden - #line 3024 "..\..\..\MainWindow.xaml" - this.BoardPen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + #line 2819 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationStarting += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationStarting); + + #line default + #line hidden + + #line 2820 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationCompleted += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationCompleted); + + #line default + #line hidden + + #line 2821 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationDelta += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationDelta); + + #line default + #line hidden + + #line 2822 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.PreviewTouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchDown); + + #line default + #line hidden + + #line 2823 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.PreviewTouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchUp); + + #line default + #line hidden + + #line 2824 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.TouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchDown); + + #line default + #line hidden + + #line 2825 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.TouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchUp); #line default #line hidden return; - case 228: - this.BoardPenIcon = ((System.Windows.Controls.Image)(target)); + case 197: + this.BorderStrokeSelectionControl = ((System.Windows.Controls.Border)(target)); return; - case 229: - this.BoardPenGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 230: - this.BoardPenLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 231: - this.BoardPenPaletteGrid = ((System.Windows.Controls.Grid)(target)); - return; - case 232: - this.BoardPenPalette = ((System.Windows.Controls.Border)(target)); - return; - case 233: - this.BoardDefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + case 198: + this.BorderStrokeSelectionClone = ((System.Windows.Controls.Border)(target)); - #line 3073 "..\..\..\MainWindow.xaml" - this.BoardDefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + #line 2837 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionClone.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2837 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionClone.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionClone_MouseUp); #line default #line hidden return; - case 234: - this.BoardDefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 235: - this.BoardDefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 236: - this.BoardHighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + case 199: + this.BorderStrokeSelectionCloneToNewBoard = ((System.Windows.Controls.Border)(target)); - #line 3111 "..\..\..\MainWindow.xaml" - this.BoardHighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); + #line 2847 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionCloneToNewBoard.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2848 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionCloneToNewBoard.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionCloneToNewBoard_MouseUp); #line default #line hidden return; - case 237: - this.BoardHighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 238: - this.BoardHighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 239: + case 200: - #line 3151 "..\..\..\MainWindow.xaml" + #line 2864 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3152 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 2864 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate45_MouseUp); #line default #line hidden return; - case 240: - this.BoardDefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 241: - this.BoardComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); + case 201: - #line 3175 "..\..\..\MainWindow.xaml" - this.BoardComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); + #line 2866 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2866 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate90_MouseUp); #line default #line hidden return; - case 242: - this.BoardNibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 243: - this.BoardToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + case 202: - #line 3196 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); + #line 2878 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2878 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipHorizontal_MouseUp); #line default #line hidden return; - case 244: + case 203: - #line 3209 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + #line 2881 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2881 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipVertical_MouseUp); #line default #line hidden return; - case 245: - this.BoardInkWidthSlider = ((System.Windows.Controls.Slider)(target)); + case 204: - #line 3228 "..\..\..\MainWindow.xaml" - this.BoardInkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); + #line 2895 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2895 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthDecrease_MouseUp); #line default #line hidden return; - case 246: - this.BoardInkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + case 205: - #line 3248 "..\..\..\MainWindow.xaml" - this.BoardInkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + #line 2902 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2902 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthIncrease_MouseUp); #line default #line hidden return; - case 247: - this.BoardHighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 248: - this.BoardHighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + case 206: - #line 3275 "..\..\..\MainWindow.xaml" - this.BoardHighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + #line 2909 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2909 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthRestore_MouseUp); #line default #line hidden return; - case 249: - this.BoardDefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 250: + case 207: - #line 3300 "..\..\..\MainWindow.xaml" + #line 2925 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3301 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); + #line 2925 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionDelete_MouseUp); + + #line default + #line hidden + return; + case 208: + + #line 2946 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + return; + case 209: + + #line 2954 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + return; + case 210: + + #line 2964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + return; + case 211: + this.BlackboardUIGridForInkReplay = ((System.Windows.Controls.Grid)(target)); + return; + case 212: + this.ViewboxBlackboardLeftSide = ((System.Windows.Controls.Viewbox)(target)); + return; + case 213: + this.BlackboardLeftSide = ((System.Windows.Controls.Grid)(target)); + return; + case 214: + + #line 2987 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + return; + case 215: + this.BtnLeftWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 216: + this.BtnLeftWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 217: + this.BtnLeftPageListWB = ((System.Windows.Controls.Border)(target)); + + #line 3010 "..\..\..\MainWindow.xaml" + this.BtnLeftPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + + #line default + #line hidden + return; + case 218: + this.BoardBorderLeftPageListView = ((System.Windows.Controls.Border)(target)); + return; + case 219: + this.BlackBoardLeftSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); + return; + case 220: + this.BlackBoardLeftSidePageListView = ((System.Windows.Controls.ListView)(target)); + return; + case 222: + + #line 3073 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + return; + case 223: + this.BtnLeftWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 224: + this.BtnLeftWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 225: + + #line 3102 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 226: + this.ViewboxBlackboardCenterSideScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); + return; + case 227: + this.BlackboardCenterSide = ((System.Windows.Controls.Grid)(target)); + return; + case 228: + this.BoardGesture = ((System.Windows.Controls.Border)(target)); + + #line 3136 "..\..\..\MainWindow.xaml" + this.BoardGesture.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3137 "..\..\..\MainWindow.xaml" + this.BoardGesture.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); + + #line default + #line hidden + return; + case 229: + this.BoardGestureGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 230: + this.BoardGestureGeometry2 = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 231: + this.BoardGestureLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 232: + this.BoardTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + return; + case 233: + this.BoardToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3199 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); + + #line default + #line hidden + return; + case 234: + this.BoardToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3230 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + + #line default + #line hidden + return; + case 235: + this.BoardToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3259 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); + + #line default + #line hidden + return; + case 236: + this.BoardToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3288 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + + #line default + #line hidden + return; + case 237: + + #line 3307 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3308 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardChangeBackgroundColorBtn_MouseUp); + + #line default + #line hidden + return; + case 238: + this.BoardSelect = ((System.Windows.Controls.Border)(target)); + + #line 3334 "..\..\..\MainWindow.xaml" + this.BoardSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3336 "..\..\..\MainWindow.xaml" + this.BoardSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); + + #line default + #line hidden + return; + case 239: + this.BoardSelectGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 240: + this.BoardSelectLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 241: + this.BoardPen = ((System.Windows.Controls.Border)(target)); + + #line 3359 "..\..\..\MainWindow.xaml" + this.BoardPen.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3361 "..\..\..\MainWindow.xaml" + this.BoardPen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + + #line default + #line hidden + return; + case 242: + this.BoardPenIcon = ((System.Windows.Controls.Image)(target)); + return; + case 243: + this.BoardPenGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 244: + this.BoardPenLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 245: + this.BoardPenPaletteGrid = ((System.Windows.Controls.Grid)(target)); + return; + case 246: + this.BoardPenPalette = ((System.Windows.Controls.Border)(target)); + return; + case 247: + this.BoardDefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 3410 "..\..\..\MainWindow.xaml" + this.BoardDefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + + #line default + #line hidden + return; + case 248: + this.BoardDefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 249: + this.BoardDefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 250: + this.BoardHighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 3448 "..\..\..\MainWindow.xaml" + this.BoardHighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); #line default #line hidden return; case 251: - this.BoardColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + this.BoardHighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 252: - this.BoardColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.BoardHighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 253: - this.BoardBorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3327 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); + #line 3488 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3489 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); #line default #line hidden return; case 254: - this.BoardViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardDefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 255: - this.BoardBorderPenColorWhite = ((System.Windows.Controls.Border)(target)); + this.BoardComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - #line 3348 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); + #line 3512 "..\..\..\MainWindow.xaml" + this.BoardComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); #line default #line hidden return; case 256: - this.BoardViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardNibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 257: - this.BoardBorderPenColorRed = ((System.Windows.Controls.Border)(target)); + this.BoardToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 3368 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + #line 3533 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); #line default #line hidden return; case 258: - this.BoardViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + + #line 3546 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + + #line default + #line hidden return; case 259: - this.BoardBorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + this.BoardInkWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 3389 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + #line 3565 "..\..\..\MainWindow.xaml" + this.BoardInkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); #line default #line hidden return; case 260: - this.BoardViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardInkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + + #line 3585 "..\..\..\MainWindow.xaml" + this.BoardInkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + + #line default + #line hidden return; case 261: - this.BoardBorderPenColorGreen = ((System.Windows.Controls.Border)(target)); - - #line 3418 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); - - #line default - #line hidden + this.BoardHighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 262: - this.BoardViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardHighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + + #line 3612 "..\..\..\MainWindow.xaml" + this.BoardHighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + + #line default + #line hidden return; case 263: - this.BoardBorderPenColorBlue = ((System.Windows.Controls.Border)(target)); - - #line 3439 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); - - #line default - #line hidden + this.BoardDefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 264: - this.BoardViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); - return; - case 265: - this.BoardBorderPenColorPink = ((System.Windows.Controls.Border)(target)); - #line 3460 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + #line 3637 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3638 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); #line default #line hidden return; + case 265: + this.BoardColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + return; case 266: - this.BoardViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 267: - this.BoardBorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + this.BoardBorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3481 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + #line 3664 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); #line default #line hidden return; case 268: - this.BoardViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; case 269: - this.BoardBorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + this.BoardBorderPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 3502 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + #line 3685 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); #line default #line hidden return; case 270: - this.BoardViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; case 271: - this.BoardHighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BoardBorderPenColorRed = ((System.Windows.Controls.Border)(target)); + + #line 3705 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + + #line default + #line hidden return; case 272: + this.BoardViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 273: + this.BoardBorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + + #line 3726 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + + #line default + #line hidden + return; + case 274: + this.BoardViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 275: + this.BoardBorderPenColorGreen = ((System.Windows.Controls.Border)(target)); + + #line 3755 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); + + #line default + #line hidden + return; + case 276: + this.BoardViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 277: + this.BoardBorderPenColorBlue = ((System.Windows.Controls.Border)(target)); + + #line 3776 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); + + #line default + #line hidden + return; + case 278: + this.BoardViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 279: + this.BoardBorderPenColorPink = ((System.Windows.Controls.Border)(target)); + + #line 3797 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + + #line default + #line hidden + return; + case 280: + this.BoardViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 281: + this.BoardBorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + + #line 3818 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + + #line default + #line hidden + return; + case 282: + this.BoardViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 283: + this.BoardBorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + + #line 3839 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + + #line default + #line hidden + return; + case 284: + this.BoardViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 285: + this.BoardHighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 286: this.BoardHighlighterPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3540 "..\..\..\MainWindow.xaml" + #line 3877 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlack_Click); #line default #line hidden return; - case 273: + case 287: this.BoardHighlighterPenViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 274: + case 288: this.BoardHighlighterPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 3578 "..\..\..\MainWindow.xaml" + #line 3915 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorWhite_Click); #line default #line hidden return; - case 275: + case 289: this.BoardHighlighterPenViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 276: + case 290: this.BoardHighlighterPenColorRed = ((System.Windows.Controls.Border)(target)); - #line 3614 "..\..\..\MainWindow.xaml" + #line 3951 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorRed_Click); #line default #line hidden return; - case 277: + case 291: this.BoardHighlighterPenViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 278: + case 292: this.BoardHighlighterPenColorYellow = ((System.Windows.Controls.Border)(target)); - #line 3650 "..\..\..\MainWindow.xaml" + #line 3987 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorYellow_Click); #line default #line hidden return; - case 279: + case 293: this.BoardHighlighterPenViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 280: + case 294: this.BoardHighlighterPenColorGreen = ((System.Windows.Controls.Border)(target)); - #line 3686 "..\..\..\MainWindow.xaml" + #line 4023 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorGreen_Click); #line default #line hidden return; - case 281: + case 295: this.BoardHighlighterPenViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 282: + case 296: this.BoardHighlighterPenColorZinc = ((System.Windows.Controls.Border)(target)); - #line 3729 "..\..\..\MainWindow.xaml" + #line 4066 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorZinc.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorZinc_Click); #line default #line hidden return; - case 283: + case 297: this.BoardHighlighterPenViewboxBtnColorZincContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 284: + case 298: this.BoardHighlighterPenColorBlue = ((System.Windows.Controls.Border)(target)); - #line 3765 "..\..\..\MainWindow.xaml" + #line 4102 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlue_Click); #line default #line hidden return; - case 285: + case 299: this.BoardHighlighterPenViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 286: + case 300: this.BoardHighlighterPenPenColorPurple = ((System.Windows.Controls.Border)(target)); - #line 3801 "..\..\..\MainWindow.xaml" + #line 4138 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenPenColorPurple.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorPurple_Click); #line default #line hidden return; - case 287: + case 301: this.BoardHighlighterPenViewboxBtnColorPurpleContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 288: + case 302: this.BoardHighlighterPenColorTeal = ((System.Windows.Controls.Border)(target)); - #line 3837 "..\..\..\MainWindow.xaml" + #line 4174 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorTeal_Click); #line default #line hidden return; - case 289: + case 303: this.BoardHighlighterPenViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 290: + case 304: this.BoardHighlighterPenColorOrange = ((System.Windows.Controls.Border)(target)); - #line 3873 "..\..\..\MainWindow.xaml" + #line 4210 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorOrange_Click); #line default #line hidden return; - case 291: + case 305: this.BoardHighlighterPenViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 292: + case 306: this.BoardEraser = ((System.Windows.Controls.Border)(target)); - #line 3916 "..\..\..\MainWindow.xaml" + #line 4253 "..\..\..\MainWindow.xaml" this.BoardEraser.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3918 "..\..\..\MainWindow.xaml" + #line 4255 "..\..\..\MainWindow.xaml" this.BoardEraser.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIcon_Click); #line default #line hidden return; - case 293: + case 307: this.BoardEraserGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 294: + case 308: this.BoardEraserLabel = ((System.Windows.Controls.TextBlock)(target)); return; - case 295: + case 309: this.BoardEraserSizePanel = ((System.Windows.Controls.Border)(target)); return; - case 296: + case 310: this.BoardComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 3976 "..\..\..\MainWindow.xaml" + #line 4313 "..\..\..\MainWindow.xaml" this.BoardComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); #line default #line hidden return; - case 297: + case 311: this.BoardCircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 3999 "..\..\..\MainWindow.xaml" + #line 4336 "..\..\..\MainWindow.xaml" this.BoardCircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); #line default #line hidden return; - case 298: + case 312: this.BoardCircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; - case 299: + case 313: this.BoardCircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; - case 300: + case 314: this.BoardRectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 4027 "..\..\..\MainWindow.xaml" + #line 4364 "..\..\..\MainWindow.xaml" this.BoardRectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); #line default #line hidden return; - case 301: + case 315: this.BoardRectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; - case 302: - this.BoardRectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 303: - - #line 4054 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDelete_MouseUp); - - #line default - #line hidden - return; - case 304: - - #line 4090 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDeleteInkAndHistories_MouseUp); - - #line default - #line hidden - return; - case 305: - this.BoardEraserByStrokes = ((System.Windows.Controls.Border)(target)); - - #line 4133 "..\..\..\MainWindow.xaml" - this.BoardEraserByStrokes.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4135 "..\..\..\MainWindow.xaml" - this.BoardEraserByStrokes.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIconByStrokes_Click); - - #line default - #line hidden - return; - case 306: - this.BoardGeometry = ((System.Windows.Controls.Border)(target)); - - #line 4145 "..\..\..\MainWindow.xaml" - this.BoardGeometry.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4147 "..\..\..\MainWindow.xaml" - this.BoardGeometry.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); - - #line default - #line hidden - return; - case 307: - this.BoardBorderDrawShape = ((System.Windows.Controls.Border)(target)); - return; - case 308: - - #line 4184 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4185 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconPinBorderDrawShape_MouseUp); - - #line default - #line hidden - return; - case 309: - this.ToggleSwitchDrawShapeBorderAutoHide = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - return; - case 310: - this.ImageDrawLine = ((System.Windows.Controls.Image)(target)); - - #line 4207 "..\..\..\MainWindow.xaml" - this.ImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4208 "..\..\..\MainWindow.xaml" - this.ImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); - - #line default - #line hidden - return; - case 311: - this.ImageDrawDashedLine = ((System.Windows.Controls.Image)(target)); - - #line 4211 "..\..\..\MainWindow.xaml" - this.ImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4212 "..\..\..\MainWindow.xaml" - this.ImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); - - #line default - #line hidden - return; - case 312: - this.ImageDrawDotLine = ((System.Windows.Controls.Image)(target)); - - #line 4215 "..\..\..\MainWindow.xaml" - this.ImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4216 "..\..\..\MainWindow.xaml" - this.ImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); - - #line default - #line hidden - return; - case 313: - this.ImageDrawArrow = ((System.Windows.Controls.Image)(target)); - - #line 4219 "..\..\..\MainWindow.xaml" - this.ImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4220 "..\..\..\MainWindow.xaml" - this.ImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); - - #line default - #line hidden - return; - case 314: - this.ImageDrawParallelLine = ((System.Windows.Controls.Image)(target)); - - #line 4223 "..\..\..\MainWindow.xaml" - this.ImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4224 "..\..\..\MainWindow.xaml" - this.ImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); - - #line default - #line hidden - return; - case 315: - - #line 4229 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); - - #line default - #line hidden - return; case 316: - - #line 4231 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); - - #line default - #line hidden + this.BoardRectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 317: - #line 4233 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); + #line 4391 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDelete_MouseUp); #line default #line hidden return; case 318: - #line 4235 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); + #line 4427 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDeleteInkAndHistories_MouseUp); #line default #line hidden return; case 319: + this.BoardEraserByStrokes = ((System.Windows.Controls.Border)(target)); - #line 4237 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); + #line 4470 "..\..\..\MainWindow.xaml" + this.BoardEraserByStrokes.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4472 "..\..\..\MainWindow.xaml" + this.BoardEraserByStrokes.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIconByStrokes_Click); #line default #line hidden return; case 320: + this.BoardGeometry = ((System.Windows.Controls.Border)(target)); - #line 4243 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); + #line 4482 "..\..\..\MainWindow.xaml" + this.BoardGeometry.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4484 "..\..\..\MainWindow.xaml" + this.BoardGeometry.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); #line default #line hidden return; case 321: - - #line 4246 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); - - #line default - #line hidden + this.BoardBorderDrawShape = ((System.Windows.Controls.Border)(target)); return; case 322: - #line 4248 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); + #line 4521 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4522 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconPinBorderDrawShape_MouseUp); #line default #line hidden return; case 323: + this.ToggleSwitchDrawShapeBorderAutoHide = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + return; + case 324: + this.ImageDrawLine = ((System.Windows.Controls.Image)(target)); - #line 4250 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + #line 4544 "..\..\..\MainWindow.xaml" + this.ImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - return; - case 324: - #line 4252 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + #line 4545 "..\..\..\MainWindow.xaml" + this.ImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); #line default #line hidden return; case 325: + this.ImageDrawDashedLine = ((System.Windows.Controls.Image)(target)); - #line 4256 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); + #line 4548 "..\..\..\MainWindow.xaml" + this.ImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4549 "..\..\..\MainWindow.xaml" + this.ImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); #line default #line hidden return; case 326: + this.ImageDrawDotLine = ((System.Windows.Controls.Image)(target)); - #line 4262 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + #line 4552 "..\..\..\MainWindow.xaml" + this.ImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4553 "..\..\..\MainWindow.xaml" + this.ImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); #line default #line hidden return; case 327: + this.ImageDrawArrow = ((System.Windows.Controls.Image)(target)); - #line 4266 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + #line 4556 "..\..\..\MainWindow.xaml" + this.ImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4557 "..\..\..\MainWindow.xaml" + this.ImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); #line default #line hidden return; case 328: + this.ImageDrawParallelLine = ((System.Windows.Controls.Image)(target)); - #line 4269 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); + #line 4560 "..\..\..\MainWindow.xaml" + this.ImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4561 "..\..\..\MainWindow.xaml" + this.ImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); #line default #line hidden return; case 329: - #line 4273 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + #line 4566 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); #line default #line hidden return; case 330: - #line 4286 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + #line 4568 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); #line default #line hidden return; case 331: - #line 4302 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); + #line 4570 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); #line default #line hidden return; case 332: - #line 4304 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); + #line 4572 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); #line default #line hidden return; case 333: - #line 4306 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + #line 4574 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); #line default #line hidden return; case 334: - #line 4308 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 4580 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 335: - #line 4311 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 4583 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); #line default #line hidden return; case 336: - this.BoardUndo = ((System.Windows.Controls.Border)(target)); - #line 4318 "..\..\..\MainWindow.xaml" - this.BoardUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4319 "..\..\..\MainWindow.xaml" - this.BoardUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); + #line 4585 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 337: - this.BoardRedo = ((System.Windows.Controls.Border)(target)); - #line 4344 "..\..\..\MainWindow.xaml" - this.BoardRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4344 "..\..\..\MainWindow.xaml" - this.BoardRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + #line 4587 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); #line default #line hidden return; case 338: - #line 4374 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4375 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); + #line 4589 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); #line default #line hidden return; case 339: - this.BoardBorderTools = ((System.Windows.Controls.Border)(target)); - return; - case 340: - #line 4426 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 4593 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); #line default #line hidden + return; + case 340: - #line 4427 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 4599 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); #line default #line hidden return; case 341: - #line 4434 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4435 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 4603 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); #line default #line hidden return; case 342: - this.RandomDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 4454 "..\..\..\MainWindow.xaml" - this.RandomDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4455 "..\..\..\MainWindow.xaml" - this.RandomDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + #line 4606 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); #line default #line hidden return; case 343: - this.SingleDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 4474 "..\..\..\MainWindow.xaml" - this.SingleDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4475 "..\..\..\MainWindow.xaml" - this.SingleDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 4610 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); #line default #line hidden return; case 344: - #line 4497 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4498 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + #line 4623 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); #line default #line hidden return; case 345: - #line 4517 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4518 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); + #line 4639 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 346: - #line 4537 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4538 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); + #line 4641 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 347: - #line 4560 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4561 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + #line 4643 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); #line default #line hidden return; case 348: - #line 4580 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4581 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); + #line 4645 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 349: - #line 4600 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4601 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + #line 4648 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 350: + this.BoardUndo = ((System.Windows.Controls.Border)(target)); - #line 4626 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 4655 "..\..\..\MainWindow.xaml" + this.BoardUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 4627 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + #line 4656 "..\..\..\MainWindow.xaml" + this.BoardUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); #line default #line hidden return; case 351: - this.ViewboxBlackboardRightSide = ((System.Windows.Controls.Viewbox)(target)); + this.BoardRedo = ((System.Windows.Controls.Border)(target)); + + #line 4681 "..\..\..\MainWindow.xaml" + this.BoardRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4681 "..\..\..\MainWindow.xaml" + this.BoardRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + + #line default + #line hidden return; case 352: - this.BlackboardRightSide = ((System.Windows.Controls.Grid)(target)); - return; - case 353: - - #line 4663 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); - - #line default - #line hidden - return; - case 354: - - #line 4688 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); - - #line default - #line hidden - return; - case 355: - this.BtnRightWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 356: - this.BtnRightWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 357: - this.BtnRightPageListWB = ((System.Windows.Controls.Border)(target)); #line 4711 "..\..\..\MainWindow.xaml" - this.BtnRightPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); - - #line default - #line hidden - return; - case 358: - this.BoardBorderRightPageListView = ((System.Windows.Controls.Border)(target)); - return; - case 359: - this.BlackBoardRightSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - return; - case 360: - this.BlackBoardRightSidePageListView = ((System.Windows.Controls.ListView)(target)); - return; - case 362: - - #line 4774 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); - - #line default - #line hidden - return; - case 363: - this.BtnRightWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 364: - this.BtnRightWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 365: - this.BtnWhiteBoardAdd = ((System.Windows.Controls.Button)(target)); - - #line 4811 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardAdd.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardAdd_Click); - - #line default - #line hidden - return; - case 366: - this.BtnWhiteBoardSwitchPrevious = ((System.Windows.Controls.Button)(target)); - - #line 4817 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchPrevious.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); - - #line default - #line hidden - - #line 4821 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchPrevious.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 367: - this.TextBlockWhiteBoardIndexInfo = ((System.Windows.Controls.TextBlock)(target)); - return; - case 368: - this.BtnWhiteBoardSwitchNext = ((System.Windows.Controls.Button)(target)); - - #line 4854 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchNext.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchNext_Click); - - #line default - #line hidden - - #line 4858 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchNext.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 369: - this.BtnWhiteBoardDelete = ((System.Windows.Controls.Button)(target)); - - #line 4882 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardDelete.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardDelete_Click); - - #line default - #line hidden - return; - case 370: - this.GridNotifications = ((System.Windows.Controls.Grid)(target)); - return; - case 371: - this.TextBlockNotice = ((System.Windows.Controls.TextBlock)(target)); - return; - case 372: - this.ViewBoxStackPanelMain = ((System.Windows.Controls.Viewbox)(target)); - return; - case 373: - this.StackPanelMain = ((System.Windows.Controls.StackPanel)(target)); - return; - case 374: - this.StackPanelControl = ((System.Windows.Controls.StackPanel)(target)); - return; - case 375: - this.BtnExit = ((System.Windows.Controls.Button)(target)); - - #line 4910 "..\..\..\MainWindow.xaml" - this.BtnExit.Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); - - #line default - #line hidden - return; - case 376: - this.BtnThickness = ((System.Windows.Controls.Button)(target)); - - #line 4914 "..\..\..\MainWindow.xaml" - this.BtnThickness.Click += new System.Windows.RoutedEventHandler(this.BtnThickness_Click); - - #line default - #line hidden - return; - case 377: - this.BtnSwitchTheme = ((System.Windows.Controls.Button)(target)); - return; - case 378: - this.BtnSwitch = ((System.Windows.Controls.Button)(target)); - - #line 4925 "..\..\..\MainWindow.xaml" - this.BtnSwitch.Click += new System.Windows.RoutedEventHandler(this.BtnSwitch_Click); - - #line default - #line hidden - return; - case 379: - this.BtnHideInkCanvas = ((System.Windows.Controls.Button)(target)); - - #line 4929 "..\..\..\MainWindow.xaml" - this.BtnHideInkCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnHideInkCanvas_Click); - - #line default - #line hidden - return; - case 380: - this.BtnCheckPPT = ((System.Windows.Controls.Button)(target)); - - #line 4933 "..\..\..\MainWindow.xaml" - this.BtnCheckPPT.Click += new System.Windows.RoutedEventHandler(this.BtnCheckPPT_Click); - - #line default - #line hidden - return; - case 381: - this.StackPanelPPTButtons = ((System.Windows.Controls.StackPanel)(target)); - return; - case 382: - this.BtnPPTSlideShow = ((System.Windows.Controls.Button)(target)); - - #line 4939 "..\..\..\MainWindow.xaml" - this.BtnPPTSlideShow.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShow_Click); - - #line default - #line hidden - return; - case 383: - this.BtnPPTSlideShowEnd = ((System.Windows.Controls.Button)(target)); - - #line 4945 "..\..\..\MainWindow.xaml" - this.BtnPPTSlideShowEnd.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShowEnd_Click); - - #line default - #line hidden - return; - case 384: - this.StackPanelPPTControls = ((System.Windows.Controls.StackPanel)(target)); - return; - case 385: - this.BtnPPTSlidesUp = ((System.Windows.Controls.Button)(target)); - - #line 4951 "..\..\..\MainWindow.xaml" - this.BtnPPTSlidesUp.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); - - #line default - #line hidden - return; - case 386: - this.BtnPPTSlidesDown = ((System.Windows.Controls.Button)(target)); - - #line 4956 "..\..\..\MainWindow.xaml" - this.BtnPPTSlidesDown.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); - - #line default - #line hidden - return; - case 387: - this.BtnSwitchSide = ((System.Windows.Controls.Button)(target)); - - #line 4963 "..\..\..\MainWindow.xaml" - this.BtnSwitchSide.Click += new System.Windows.RoutedEventHandler(this.BtnSwitchSide_Click); - - #line default - #line hidden - return; - case 388: - this.BtnHideControl = ((System.Windows.Controls.Button)(target)); - - #line 4968 "..\..\..\MainWindow.xaml" - this.BtnHideControl.Click += new System.Windows.RoutedEventHandler(this.BtnHideControl_Click); - - #line default - #line hidden - return; - case 389: - this.ViewBoxStackPanelShapes = ((System.Windows.Controls.Viewbox)(target)); - return; - case 390: - this.StackPanelShapes = ((System.Windows.Controls.StackPanel)(target)); - return; - case 391: - this.BtnFingerDragMode = ((System.Windows.Controls.Button)(target)); - - #line 4978 "..\..\..\MainWindow.xaml" - this.BtnFingerDragMode.Click += new System.Windows.RoutedEventHandler(this.BtnFingerDragMode_Click); - - #line default - #line hidden - return; - case 392: - - #line 4980 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.StackPanel)(target)).IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.StackPanel_IsVisibleChanged); - - #line default - #line hidden - return; - case 393: - - #line 4985 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); - - #line default - #line hidden - return; - case 394: - - #line 4990 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); - - #line default - #line hidden - return; - case 395: - this.BtnUndo = ((System.Windows.Controls.Button)(target)); - - #line 4997 "..\..\..\MainWindow.xaml" - this.BtnUndo.Click += new System.Windows.RoutedEventHandler(this.BtnUndo_Click); - - #line default - #line hidden - - #line 4999 "..\..\..\MainWindow.xaml" - this.BtnUndo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 396: - this.BtnRedo = ((System.Windows.Controls.Button)(target)); - - #line 5007 "..\..\..\MainWindow.xaml" - this.BtnRedo.Click += new System.Windows.RoutedEventHandler(this.BtnRedo_Click); - - #line default - #line hidden - - #line 5009 "..\..\..\MainWindow.xaml" - this.BtnRedo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 397: - this.BtnClearAndHideCanvas = ((System.Windows.Controls.Button)(target)); - - #line 5019 "..\..\..\MainWindow.xaml" - this.BtnClearAndHideCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnSelect_Click); - - #line default - #line hidden - return; - case 398: - this.GridForLeftSideReservedSpace = ((System.Windows.Controls.Grid)(target)); - return; - case 399: - this.LeftBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 400: - this.PPTBtnLBBorder = ((System.Windows.Controls.Border)(target)); - return; - case 401: - this.PPTLBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5034 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5036 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5037 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 402: - this.PPTLBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 403: - this.PPTLBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 404: - this.PPTLBPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5058 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5058 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5059 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 405: - this.PPTLBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 406: - this.PPTLBNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5076 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5077 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5077 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 407: - this.PPTLBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 408: - this.PPTLBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 409: - this.RightBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 410: - this.PPTBtnRBBorder = ((System.Windows.Controls.Border)(target)); - return; - case 411: - this.PPTRBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5106 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5108 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5109 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 412: - this.PPTRBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 413: - this.PPTRBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 414: - this.PPTRBPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5130 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5130 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5131 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 415: - this.PPTRBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 416: - this.PPTRBNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5148 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5149 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5149 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 417: - this.PPTRBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 418: - this.PPTRBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 419: - this.LeftSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 420: - this.PPTBtnLSBorder = ((System.Windows.Controls.Border)(target)); - return; - case 421: - this.PPTLSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5182 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5184 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5184 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 422: - this.PPTLSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 423: - this.PPTLSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 424: - this.PPTLSPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5204 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5204 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5205 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 425: - this.PPTLSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 426: - this.PPTBtnPageNow = ((System.Windows.Controls.TextBlock)(target)); - return; - case 427: - this.PPTBtnPageTotal = ((System.Windows.Controls.TextBlock)(target)); - return; - case 428: - this.PPTLSNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5220 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5221 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5221 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 429: - this.PPTLSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 430: - this.PPTLSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 431: - this.RightSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 432: - this.PPTBtnRSBorder = ((System.Windows.Controls.Border)(target)); - return; - case 433: - this.PPTRSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5248 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5250 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5250 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 434: - this.PPTRSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 435: - this.PPTRSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 436: - this.PPTRSPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5270 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5270 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5271 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 437: - this.PPTRSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 438: - this.PPTRSNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5286 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5287 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5287 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 439: - this.PPTRSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 440: - this.PPTRSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 441: - this.FloatingbarUIForInkReplay = ((System.Windows.Controls.Grid)(target)); - return; - case 442: - this.ViewboxFloatingBar = ((System.Windows.Controls.Viewbox)(target)); - return; - case 443: - this.ViewboxFloatingBarScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); - return; - case 444: - this.BorderFloatingBarMoveControls = ((System.Windows.Controls.Border)(target)); - - #line 5320 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarMoveControls.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseDown); - - #line default - #line hidden - - #line 5320 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarMoveControls.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); - - #line default - #line hidden - return; - case 445: - this.FloatingbarHeadIconImg = ((System.Windows.Controls.Image)(target)); - return; - case 446: - this.BorderFloatingBarMainControls = ((System.Windows.Controls.Border)(target)); - return; - case 447: - this.FloatingbarSelectionBGCanvas = ((System.Windows.Controls.Canvas)(target)); - return; - case 448: - this.FloatingbarSelectionBG = ((System.Windows.Controls.Border)(target)); - return; - case 449: - this.StackPanelFloatingBar = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 450: - this.Cursor_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5343 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5344 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5345 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorIcon_Click); - - #line default - #line hidden - return; - case 451: - this.CursorToolbarIconImage = ((System.Windows.Controls.Image)(target)); - return; - case 452: - this.CursorIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 453: - this.SelectionToolBarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 454: - this.Pen_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5365 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5366 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5367 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); - - #line default - #line hidden - return; - case 455: - this.PenIcon = ((System.Windows.Controls.Image)(target)); - return; - case 456: - this.PenIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 457: - this.PenToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 458: - this.SymbolIconDelete = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5387 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5388 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5389 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconDelete_MouseUp); - - #line default - #line hidden - return; - case 459: - this.ClearIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 460: - this.TrashBinToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 461: - this.StackPanelCanvasControls = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 462: - this.PenPalette = ((System.Windows.Controls.Border)(target)); - return; - case 463: - this.DefaultPenTabButton = ((System.Windows.Controls.Border)(target)); - - #line 5426 "..\..\..\MainWindow.xaml" - this.DefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); - - #line default - #line hidden - return; - case 464: - this.DefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 465: - this.DefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 466: - this.HighlightPenTabButton = ((System.Windows.Controls.Border)(target)); - - #line 5461 "..\..\..\MainWindow.xaml" - this.HighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); - - #line default - #line hidden - return; - case 467: - this.HighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 468: - this.HighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 469: - - #line 5497 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 5498 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); - - #line default - #line hidden - return; - case 470: - this.DefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 471: - this.ComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - - #line 5518 "..\..\..\MainWindow.xaml" - this.ComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); - - #line default - #line hidden - return; - case 472: - this.NibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 473: - this.ToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 5539 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); - - #line default - #line hidden - return; - case 474: - - #line 5550 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); - - #line default - #line hidden - return; - case 475: - this.InkWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5568 "..\..\..\MainWindow.xaml" - this.InkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); - - #line default - #line hidden - return; - case 476: - this.InkAlphaSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5584 "..\..\..\MainWindow.xaml" - this.InkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); - - #line default - #line hidden - return; - case 477: - this.HighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 478: - this.HighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5605 "..\..\..\MainWindow.xaml" - this.HighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); - - #line default - #line hidden - return; - case 479: - this.DefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 480: - - #line 5627 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 5628 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); + #line 4712 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); + + #line default + #line hidden + return; + case 353: + this.BoardBorderTools = ((System.Windows.Controls.Border)(target)); + return; + case 354: + + #line 4763 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4764 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + + #line default + #line hidden + return; + case 355: + + #line 4771 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4772 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 356: + this.RandomDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 4791 "..\..\..\MainWindow.xaml" + this.RandomDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4792 "..\..\..\MainWindow.xaml" + this.RandomDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 357: + this.SingleDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 4811 "..\..\..\MainWindow.xaml" + this.SingleDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4812 "..\..\..\MainWindow.xaml" + this.SingleDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 358: + + #line 4834 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4835 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + + #line default + #line hidden + return; + case 359: + + #line 4854 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4855 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); + + #line default + #line hidden + return; + case 360: + + #line 4874 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4875 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); + + #line default + #line hidden + return; + case 361: + + #line 4897 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4898 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + + #line default + #line hidden + return; + case 362: + + #line 4917 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4918 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); + + #line default + #line hidden + return; + case 363: + + #line 4937 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4938 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + + #line default + #line hidden + return; + case 364: + + #line 4963 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + + #line default + #line hidden + return; + case 365: + this.ViewboxBlackboardRightSide = ((System.Windows.Controls.Viewbox)(target)); + return; + case 366: + this.BlackboardRightSide = ((System.Windows.Controls.Grid)(target)); + return; + case 367: + + #line 5000 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 368: + + #line 5025 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + return; + case 369: + this.BtnRightWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 370: + this.BtnRightWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 371: + this.BtnRightPageListWB = ((System.Windows.Controls.Border)(target)); + + #line 5048 "..\..\..\MainWindow.xaml" + this.BtnRightPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + + #line default + #line hidden + return; + case 372: + this.BoardBorderRightPageListView = ((System.Windows.Controls.Border)(target)); + return; + case 373: + this.BlackBoardRightSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); + return; + case 374: + this.BlackBoardRightSidePageListView = ((System.Windows.Controls.ListView)(target)); + return; + case 376: + + #line 5111 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + return; + case 377: + this.BtnRightWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 378: + this.BtnRightWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 379: + this.BtnWhiteBoardAdd = ((System.Windows.Controls.Button)(target)); + + #line 5148 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardAdd.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 380: + this.BtnWhiteBoardSwitchPrevious = ((System.Windows.Controls.Button)(target)); + + #line 5154 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchPrevious.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + + #line 5158 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchPrevious.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 381: + this.TextBlockWhiteBoardIndexInfo = ((System.Windows.Controls.TextBlock)(target)); + return; + case 382: + this.BtnWhiteBoardSwitchNext = ((System.Windows.Controls.Button)(target)); + + #line 5191 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchNext.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + + #line 5195 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchNext.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 383: + this.BtnWhiteBoardDelete = ((System.Windows.Controls.Button)(target)); + + #line 5219 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardDelete.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardDelete_Click); + + #line default + #line hidden + return; + case 384: + this.GridNotifications = ((System.Windows.Controls.Grid)(target)); + return; + case 385: + this.TextBlockNotice = ((System.Windows.Controls.TextBlock)(target)); + return; + case 386: + this.ViewBoxStackPanelMain = ((System.Windows.Controls.Viewbox)(target)); + return; + case 387: + this.StackPanelMain = ((System.Windows.Controls.StackPanel)(target)); + return; + case 388: + this.StackPanelControl = ((System.Windows.Controls.StackPanel)(target)); + return; + case 389: + this.BtnExit = ((System.Windows.Controls.Button)(target)); + + #line 5247 "..\..\..\MainWindow.xaml" + this.BtnExit.Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); + + #line default + #line hidden + return; + case 390: + this.BtnThickness = ((System.Windows.Controls.Button)(target)); + + #line 5251 "..\..\..\MainWindow.xaml" + this.BtnThickness.Click += new System.Windows.RoutedEventHandler(this.BtnThickness_Click); + + #line default + #line hidden + return; + case 391: + this.BtnSwitchTheme = ((System.Windows.Controls.Button)(target)); + return; + case 392: + this.BtnSwitch = ((System.Windows.Controls.Button)(target)); + + #line 5262 "..\..\..\MainWindow.xaml" + this.BtnSwitch.Click += new System.Windows.RoutedEventHandler(this.BtnSwitch_Click); + + #line default + #line hidden + return; + case 393: + this.BtnHideInkCanvas = ((System.Windows.Controls.Button)(target)); + + #line 5266 "..\..\..\MainWindow.xaml" + this.BtnHideInkCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnHideInkCanvas_Click); + + #line default + #line hidden + return; + case 394: + this.BtnCheckPPT = ((System.Windows.Controls.Button)(target)); + + #line 5270 "..\..\..\MainWindow.xaml" + this.BtnCheckPPT.Click += new System.Windows.RoutedEventHandler(this.BtnCheckPPT_Click); + + #line default + #line hidden + return; + case 395: + this.StackPanelPPTButtons = ((System.Windows.Controls.StackPanel)(target)); + return; + case 396: + this.BtnPPTSlideShow = ((System.Windows.Controls.Button)(target)); + + #line 5276 "..\..\..\MainWindow.xaml" + this.BtnPPTSlideShow.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShow_Click); + + #line default + #line hidden + return; + case 397: + this.BtnPPTSlideShowEnd = ((System.Windows.Controls.Button)(target)); + + #line 5282 "..\..\..\MainWindow.xaml" + this.BtnPPTSlideShowEnd.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShowEnd_Click); + + #line default + #line hidden + return; + case 398: + this.StackPanelPPTControls = ((System.Windows.Controls.StackPanel)(target)); + return; + case 399: + this.BtnPPTSlidesUp = ((System.Windows.Controls.Button)(target)); + + #line 5288 "..\..\..\MainWindow.xaml" + this.BtnPPTSlidesUp.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); + + #line default + #line hidden + return; + case 400: + this.BtnPPTSlidesDown = ((System.Windows.Controls.Button)(target)); + + #line 5293 "..\..\..\MainWindow.xaml" + this.BtnPPTSlidesDown.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); + + #line default + #line hidden + return; + case 401: + this.BtnSwitchSide = ((System.Windows.Controls.Button)(target)); + + #line 5300 "..\..\..\MainWindow.xaml" + this.BtnSwitchSide.Click += new System.Windows.RoutedEventHandler(this.BtnSwitchSide_Click); + + #line default + #line hidden + return; + case 402: + this.BtnHideControl = ((System.Windows.Controls.Button)(target)); + + #line 5305 "..\..\..\MainWindow.xaml" + this.BtnHideControl.Click += new System.Windows.RoutedEventHandler(this.BtnHideControl_Click); + + #line default + #line hidden + return; + case 403: + this.ViewBoxStackPanelShapes = ((System.Windows.Controls.Viewbox)(target)); + return; + case 404: + this.StackPanelShapes = ((System.Windows.Controls.StackPanel)(target)); + return; + case 405: + this.BtnFingerDragMode = ((System.Windows.Controls.Button)(target)); + + #line 5315 "..\..\..\MainWindow.xaml" + this.BtnFingerDragMode.Click += new System.Windows.RoutedEventHandler(this.BtnFingerDragMode_Click); + + #line default + #line hidden + return; + case 406: + + #line 5317 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.StackPanel)(target)).IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.StackPanel_IsVisibleChanged); + + #line default + #line hidden + return; + case 407: + + #line 5322 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); + + #line default + #line hidden + return; + case 408: + + #line 5327 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); + + #line default + #line hidden + return; + case 409: + this.BtnUndo = ((System.Windows.Controls.Button)(target)); + + #line 5334 "..\..\..\MainWindow.xaml" + this.BtnUndo.Click += new System.Windows.RoutedEventHandler(this.BtnUndo_Click); + + #line default + #line hidden + + #line 5336 "..\..\..\MainWindow.xaml" + this.BtnUndo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 410: + this.BtnRedo = ((System.Windows.Controls.Button)(target)); + + #line 5344 "..\..\..\MainWindow.xaml" + this.BtnRedo.Click += new System.Windows.RoutedEventHandler(this.BtnRedo_Click); + + #line default + #line hidden + + #line 5346 "..\..\..\MainWindow.xaml" + this.BtnRedo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 411: + this.BtnClearAndHideCanvas = ((System.Windows.Controls.Button)(target)); + + #line 5356 "..\..\..\MainWindow.xaml" + this.BtnClearAndHideCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnSelect_Click); + + #line default + #line hidden + return; + case 412: + this.GridForLeftSideReservedSpace = ((System.Windows.Controls.Grid)(target)); + return; + case 413: + this.LeftBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 414: + this.PPTBtnLBBorder = ((System.Windows.Controls.Border)(target)); + return; + case 415: + this.PPTLBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5371 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5373 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5374 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 416: + this.PPTLBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 417: + this.PPTLBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 418: + this.PPTLBPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5395 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5395 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5396 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 419: + this.PPTLBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 420: + this.PPTLBNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5413 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5414 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5414 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 421: + this.PPTLBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 422: + this.PPTLBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 423: + this.RightBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 424: + this.PPTBtnRBBorder = ((System.Windows.Controls.Border)(target)); + return; + case 425: + this.PPTRBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5443 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5445 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5446 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 426: + this.PPTRBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 427: + this.PPTRBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 428: + this.PPTRBPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5467 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5467 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5468 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 429: + this.PPTRBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 430: + this.PPTRBNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5485 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5486 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5486 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 431: + this.PPTRBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 432: + this.PPTRBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 433: + this.LeftSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 434: + this.PPTBtnLSBorder = ((System.Windows.Controls.Border)(target)); + return; + case 435: + this.PPTLSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5519 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5521 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5521 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 436: + this.PPTLSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 437: + this.PPTLSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 438: + this.PPTLSPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5541 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5541 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5542 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 439: + this.PPTLSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 440: + this.PPTBtnPageNow = ((System.Windows.Controls.TextBlock)(target)); + return; + case 441: + this.PPTBtnPageTotal = ((System.Windows.Controls.TextBlock)(target)); + return; + case 442: + this.PPTLSNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5557 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5558 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5558 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 443: + this.PPTLSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 444: + this.PPTLSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 445: + this.RightSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 446: + this.PPTBtnRSBorder = ((System.Windows.Controls.Border)(target)); + return; + case 447: + this.PPTRSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5585 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5587 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5587 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 448: + this.PPTRSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 449: + this.PPTRSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 450: + this.PPTRSPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5607 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5607 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5608 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 451: + this.PPTRSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 452: + this.PPTRSNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5623 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5624 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5624 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 453: + this.PPTRSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 454: + this.PPTRSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 455: + this.FloatingbarUIForInkReplay = ((System.Windows.Controls.Grid)(target)); + return; + case 456: + this.ViewboxFloatingBar = ((System.Windows.Controls.Viewbox)(target)); + return; + case 457: + this.ViewboxFloatingBarScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); + return; + case 458: + this.BorderFloatingBarMoveControls = ((System.Windows.Controls.Border)(target)); + + #line 5657 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarMoveControls.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseDown); + + #line default + #line hidden + + #line 5657 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarMoveControls.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); + + #line default + #line hidden + return; + case 459: + this.FloatingbarHeadIconImg = ((System.Windows.Controls.Image)(target)); + return; + case 460: + this.BorderFloatingBarMainControls = ((System.Windows.Controls.Border)(target)); + return; + case 461: + this.FloatingbarSelectionBGCanvas = ((System.Windows.Controls.Canvas)(target)); + return; + case 462: + this.FloatingbarSelectionBG = ((System.Windows.Controls.Border)(target)); + return; + case 463: + this.StackPanelFloatingBar = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 464: + this.Cursor_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5680 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5681 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5682 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorIcon_Click); + + #line default + #line hidden + return; + case 465: + this.CursorToolbarIconImage = ((System.Windows.Controls.Image)(target)); + return; + case 466: + this.CursorIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 467: + this.SelectionToolBarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 468: + this.Pen_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5702 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5703 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5704 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + + #line default + #line hidden + return; + case 469: + this.PenIcon = ((System.Windows.Controls.Image)(target)); + return; + case 470: + this.PenIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 471: + this.PenToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 472: + this.SymbolIconDelete = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5724 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5725 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5726 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconDelete_MouseUp); + + #line default + #line hidden + return; + case 473: + this.ClearIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 474: + this.TrashBinToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 475: + this.StackPanelCanvasControls = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 476: + this.PenPalette = ((System.Windows.Controls.Border)(target)); + return; + case 477: + this.DefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 5763 "..\..\..\MainWindow.xaml" + this.DefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + + #line default + #line hidden + return; + case 478: + this.DefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 479: + this.DefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 480: + this.HighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 5798 "..\..\..\MainWindow.xaml" + this.HighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); #line default #line hidden return; case 481: - this.ColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + this.HighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 482: - this.ColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.HighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 483: - this.BorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5650 "..\..\..\MainWindow.xaml" - this.BorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); + #line 5834 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 5835 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); #line default #line hidden return; case 484: - this.ViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); + this.DefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 485: - this.BorderPenColorWhite = ((System.Windows.Controls.Border)(target)); + this.ComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - #line 5668 "..\..\..\MainWindow.xaml" - this.BorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); + #line 5855 "..\..\..\MainWindow.xaml" + this.ComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); #line default #line hidden return; case 486: - this.ViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); + this.NibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 487: - this.BorderPenColorRed = ((System.Windows.Controls.Border)(target)); + this.ToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 5685 "..\..\..\MainWindow.xaml" - this.BorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + #line 5876 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); #line default #line hidden return; case 488: - this.ViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + + #line 5887 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + + #line default + #line hidden return; case 489: - this.BorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + this.InkWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 5703 "..\..\..\MainWindow.xaml" - this.BorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + #line 5905 "..\..\..\MainWindow.xaml" + this.InkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); #line default #line hidden return; case 490: - this.ViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + this.InkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + + #line 5921 "..\..\..\MainWindow.xaml" + this.InkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + + #line default + #line hidden return; case 491: - this.BorderPenColorGreen = ((System.Windows.Controls.Border)(target)); - - #line 5728 "..\..\..\MainWindow.xaml" - this.BorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); - - #line default - #line hidden + this.HighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 492: - this.ViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + this.HighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + + #line 5942 "..\..\..\MainWindow.xaml" + this.HighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + + #line default + #line hidden return; case 493: - this.BorderPenColorBlue = ((System.Windows.Controls.Border)(target)); - - #line 5745 "..\..\..\MainWindow.xaml" - this.BorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); - - #line default - #line hidden + this.DefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 494: - this.ViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); - return; - case 495: - this.BorderPenColorPink = ((System.Windows.Controls.Border)(target)); - #line 5762 "..\..\..\MainWindow.xaml" - this.BorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + #line 5964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 5965 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); #line default #line hidden return; + case 495: + this.ColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + return; case 496: - this.ViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + this.ColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 497: - this.BorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + this.BorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5779 "..\..\..\MainWindow.xaml" - this.BorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + #line 5987 "..\..\..\MainWindow.xaml" + this.BorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); #line default #line hidden return; case 498: - this.ViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + this.ViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; case 499: - this.BorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + this.BorderPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 5797 "..\..\..\MainWindow.xaml" - this.BorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + #line 6005 "..\..\..\MainWindow.xaml" + this.BorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); #line default #line hidden return; case 500: - this.ViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + this.ViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; case 501: - this.HighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BorderPenColorRed = ((System.Windows.Controls.Border)(target)); + + #line 6022 "..\..\..\MainWindow.xaml" + this.BorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + + #line default + #line hidden return; case 502: + this.ViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 503: + this.BorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + + #line 6040 "..\..\..\MainWindow.xaml" + this.BorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + + #line default + #line hidden + return; + case 504: + this.ViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 505: + this.BorderPenColorGreen = ((System.Windows.Controls.Border)(target)); + + #line 6065 "..\..\..\MainWindow.xaml" + this.BorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); + + #line default + #line hidden + return; + case 506: + this.ViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 507: + this.BorderPenColorBlue = ((System.Windows.Controls.Border)(target)); + + #line 6082 "..\..\..\MainWindow.xaml" + this.BorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); + + #line default + #line hidden + return; + case 508: + this.ViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 509: + this.BorderPenColorPink = ((System.Windows.Controls.Border)(target)); + + #line 6099 "..\..\..\MainWindow.xaml" + this.BorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + + #line default + #line hidden + return; + case 510: + this.ViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 511: + this.BorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + + #line 6116 "..\..\..\MainWindow.xaml" + this.BorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + + #line default + #line hidden + return; + case 512: + this.ViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 513: + this.BorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + + #line 6134 "..\..\..\MainWindow.xaml" + this.BorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + + #line default + #line hidden + return; + case 514: + this.ViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 515: + this.HighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 516: this.HighlighterPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5830 "..\..\..\MainWindow.xaml" + #line 6167 "..\..\..\MainWindow.xaml" this.HighlighterPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlack_Click); #line default #line hidden return; - case 503: + case 517: this.HighlighterPenViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 504: + case 518: this.HighlighterPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 5866 "..\..\..\MainWindow.xaml" + #line 6203 "..\..\..\MainWindow.xaml" this.HighlighterPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorWhite_Click); #line default #line hidden return; - case 505: + case 519: this.HighlighterPenViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 506: + case 520: this.HighlighterPenColorRed = ((System.Windows.Controls.Border)(target)); - #line 5900 "..\..\..\MainWindow.xaml" + #line 6237 "..\..\..\MainWindow.xaml" this.HighlighterPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorRed_Click); #line default #line hidden return; - case 507: + case 521: this.HighlighterPenViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 508: + case 522: this.HighlighterPenColorYellow = ((System.Windows.Controls.Border)(target)); - #line 5934 "..\..\..\MainWindow.xaml" + #line 6271 "..\..\..\MainWindow.xaml" this.HighlighterPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorYellow_Click); #line default #line hidden return; - case 509: + case 523: this.HighlighterPenViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 510: + case 524: this.HighlighterPenColorGreen = ((System.Windows.Controls.Border)(target)); - #line 5968 "..\..\..\MainWindow.xaml" + #line 6305 "..\..\..\MainWindow.xaml" this.HighlighterPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorGreen_Click); #line default #line hidden return; - case 511: + case 525: this.HighlighterPenViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 512: + case 526: this.HighlighterPenColorZinc = ((System.Windows.Controls.Border)(target)); - #line 6008 "..\..\..\MainWindow.xaml" + #line 6345 "..\..\..\MainWindow.xaml" this.HighlighterPenColorZinc.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorZinc_Click); #line default #line hidden return; - case 513: + case 527: this.HighlighterPenViewboxBtnColorZincContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 514: + case 528: this.HighlighterPenColorBlue = ((System.Windows.Controls.Border)(target)); - #line 6042 "..\..\..\MainWindow.xaml" + #line 6379 "..\..\..\MainWindow.xaml" this.HighlighterPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlue_Click); #line default #line hidden return; - case 515: + case 529: this.HighlighterPenViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 516: + case 530: this.HighlighterPenPenColorPurple = ((System.Windows.Controls.Border)(target)); - #line 6077 "..\..\..\MainWindow.xaml" + #line 6414 "..\..\..\MainWindow.xaml" this.HighlighterPenPenColorPurple.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorPurple_Click); #line default #line hidden return; - case 517: + case 531: this.HighlighterPenViewboxBtnColorPurpleContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 518: + case 532: this.HighlighterPenColorTeal = ((System.Windows.Controls.Border)(target)); - #line 6111 "..\..\..\MainWindow.xaml" + #line 6448 "..\..\..\MainWindow.xaml" this.HighlighterPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorTeal_Click); #line default #line hidden return; - case 519: + case 533: this.HighlighterPenViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 520: + case 534: this.HighlighterPenColorOrange = ((System.Windows.Controls.Border)(target)); - #line 6145 "..\..\..\MainWindow.xaml" + #line 6482 "..\..\..\MainWindow.xaml" this.HighlighterPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorOrange_Click); #line default #line hidden return; - case 521: + case 535: this.HighlighterPenViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 522: + case 536: this.Eraser_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6187 "..\..\..\MainWindow.xaml" + #line 6524 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6188 "..\..\..\MainWindow.xaml" + #line 6525 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6189 "..\..\..\MainWindow.xaml" + #line 6526 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.EraserIcon_Click); #line default #line hidden return; - case 523: + case 537: this.CircleEraserToolbarIconImage = ((System.Windows.Controls.Image)(target)); return; - case 524: + case 538: this.CircleEraserIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 525: + case 539: this.CircleEraserToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 526: + case 540: this.EraserByStrokes_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6210 "..\..\..\MainWindow.xaml" + #line 6547 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6211 "..\..\..\MainWindow.xaml" + #line 6548 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6212 "..\..\..\MainWindow.xaml" + #line 6549 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.EraserIconByStrokes_Click); #line default #line hidden return; - case 527: + case 541: this.StrokeEraserToolbarIconImage = ((System.Windows.Controls.Image)(target)); return; - case 528: + case 542: this.StrokeEraserIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 529: + case 543: this.InkEraserToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 530: + case 544: this.SymbolIconSelect = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6233 "..\..\..\MainWindow.xaml" + #line 6570 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6234 "..\..\..\MainWindow.xaml" + #line 6571 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6235 "..\..\..\MainWindow.xaml" + #line 6572 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); #line default #line hidden return; - case 531: + case 545: this.LassoSelect = ((System.Windows.Controls.Image)(target)); return; - case 532: + case 546: this.LassoSelectIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 533: + case 547: this.LassoToolToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 534: + case 548: this.ShapeDrawFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6256 "..\..\..\MainWindow.xaml" + #line 6593 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6257 "..\..\..\MainWindow.xaml" + #line 6594 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6258 "..\..\..\MainWindow.xaml" + #line 6595 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); #line default #line hidden return; - case 535: + case 549: this.ShapesIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 536: + case 550: this.ShapesToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 537: + case 551: this.BorderDrawShape = ((System.Windows.Controls.Border)(target)); return; - case 538: + case 552: this.BoardImageDrawLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6305 "..\..\..\MainWindow.xaml" + #line 6642 "..\..\..\MainWindow.xaml" this.BoardImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6306 "..\..\..\MainWindow.xaml" + #line 6643 "..\..\..\MainWindow.xaml" this.BoardImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); #line default #line hidden return; - case 539: + case 553: this.BoardImageDrawDashedLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6314 "..\..\..\MainWindow.xaml" + #line 6651 "..\..\..\MainWindow.xaml" this.BoardImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6315 "..\..\..\MainWindow.xaml" + #line 6652 "..\..\..\MainWindow.xaml" this.BoardImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); #line default #line hidden return; - case 540: + case 554: this.BoardImageDrawDotLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6324 "..\..\..\MainWindow.xaml" + #line 6661 "..\..\..\MainWindow.xaml" this.BoardImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6325 "..\..\..\MainWindow.xaml" + #line 6662 "..\..\..\MainWindow.xaml" this.BoardImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); #line default #line hidden return; - case 541: + case 555: this.BoardImageDrawArrow = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6334 "..\..\..\MainWindow.xaml" + #line 6671 "..\..\..\MainWindow.xaml" this.BoardImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6335 "..\..\..\MainWindow.xaml" + #line 6672 "..\..\..\MainWindow.xaml" this.BoardImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); #line default #line hidden return; - case 542: + case 556: this.BoardImageDrawParallelLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6343 "..\..\..\MainWindow.xaml" + #line 6680 "..\..\..\MainWindow.xaml" this.BoardImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6344 "..\..\..\MainWindow.xaml" + #line 6681 "..\..\..\MainWindow.xaml" this.BoardImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); - #line default - #line hidden - return; - case 543: - - #line 6353 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); - - #line default - #line hidden - return; - case 544: - - #line 6362 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); - - #line default - #line hidden - return; - case 545: - - #line 6370 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); - - #line default - #line hidden - return; - case 546: - - #line 6380 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); - - #line default - #line hidden - return; - case 547: - - #line 6395 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); - - #line default - #line hidden - return; - case 548: - - #line 6398 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); - - #line default - #line hidden - return; - case 549: - - #line 6401 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); - - #line default - #line hidden - return; - case 550: - - #line 6404 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); - - #line default - #line hidden - return; - case 551: - - #line 6407 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); - - #line default - #line hidden - return; - case 552: - - #line 6412 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); - - #line default - #line hidden - return; - case 553: - - #line 6419 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); - - #line default - #line hidden - return; - case 554: - - #line 6427 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); - - #line default - #line hidden - return; - case 555: - - #line 6435 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); - - #line default - #line hidden - return; - case 556: - - #line 6445 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); - #line default #line hidden return; case 557: - #line 6448 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); + #line 6690 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 558: - #line 6450 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); + #line 6699 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 559: - #line 6452 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + #line 6707 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); #line default #line hidden return; case 560: - #line 6454 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + #line 6717 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); #line default #line hidden return; case 561: - #line 6458 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); + #line 6732 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); #line default #line hidden return; case 562: - #line 6464 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + #line 6735 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); #line default #line hidden return; case 563: - #line 6468 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + #line 6738 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); #line default #line hidden return; case 564: - #line 6470 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); + #line 6741 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); #line default #line hidden return; case 565: - #line 6474 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + #line 6744 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); #line default #line hidden return; case 566: - #line 6487 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + #line 6749 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 567: - #line 6503 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); + #line 6756 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 568: - #line 6505 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); + #line 6764 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 569: - #line 6507 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + #line 6772 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); #line default #line hidden return; case 570: - #line 6509 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 6782 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 571: - #line 6512 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 6785 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); #line default #line hidden return; case 572: - this.SymbolIconUndo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6520 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); - - #line default - #line hidden - - #line 6521 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6522 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6787 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 573: - this.UndoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + + #line 6789 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + + #line default + #line hidden return; case 574: - this.UndoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6791 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + + #line default + #line hidden return; case 575: - this.SymbolIconRedo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6548 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); - - #line default - #line hidden - - #line 6549 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6550 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6795 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); #line default #line hidden return; case 576: - this.RedoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + + #line 6801 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + + #line default + #line hidden return; case 577: - this.RedoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6805 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + + #line default + #line hidden return; case 578: - this.CursorWithDelFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6576 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6577 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6578 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorWithDelIcon_Click); + #line 6807 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); #line default #line hidden return; case 579: - this.ClearAndMouseToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6811 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + + #line default + #line hidden return; case 580: - this.EraserSizePanel = ((System.Windows.Controls.Border)(target)); + + #line 6824 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + + #line default + #line hidden return; case 581: - this.ComboBoxEraserSizeFloatingBar = ((System.Windows.Controls.ComboBox)(target)); - #line 6621 "..\..\..\MainWindow.xaml" - this.ComboBoxEraserSizeFloatingBar.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); + #line 6840 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 582: - this.CircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6636 "..\..\..\MainWindow.xaml" - this.CircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); + #line 6842 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 583: - this.CircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6844 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + + #line default + #line hidden return; case 584: - this.CircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + + #line 6846 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + + #line default + #line hidden return; case 585: - this.RectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6662 "..\..\..\MainWindow.xaml" - this.RectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); + #line 6849 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 586: - this.RectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.SymbolIconUndo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6857 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); + + #line default + #line hidden + + #line 6858 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 6859 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden return; case 587: - this.RectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + this.UndoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; case 588: - this.WhiteboardFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 6695 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6696 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6697 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); - - #line default - #line hidden + this.UndoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 589: - this.WhiteboardToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.SymbolIconRedo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6885 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + + #line default + #line hidden + + #line 6886 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 6887 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden return; case 590: - this.ToolsFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 6718 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6719 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6720 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); - - #line default - #line hidden + this.RedoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; case 591: - this.ToolsToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.RedoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 592: - this.Fold_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.CursorWithDelFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6742 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + #line 6913 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6743 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6914 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6744 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.FoldFloatingBar_MouseUp); + #line 6915 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorWithDelIcon_Click); #line default #line hidden return; case 593: - this.HideToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ClearAndMouseToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 594: - this.BorderTools = ((System.Windows.Controls.Border)(target)); + this.EraserSizePanel = ((System.Windows.Controls.Border)(target)); return; case 595: + this.ComboBoxEraserSizeFloatingBar = ((System.Windows.Controls.ComboBox)(target)); - #line 6781 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6782 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 6958 "..\..\..\MainWindow.xaml" + this.ComboBoxEraserSizeFloatingBar.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); #line default #line hidden return; case 596: + this.CircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6789 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6790 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 6973 "..\..\..\MainWindow.xaml" + this.CircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); #line default #line hidden return; case 597: - - #line 6809 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6810 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); - - #line default - #line hidden + this.CircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 598: - - #line 6829 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6830 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); - - #line default - #line hidden + this.CircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 599: + this.RectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6852 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6853 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + #line 6999 "..\..\..\MainWindow.xaml" + this.RectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); #line default #line hidden return; case 600: - - #line 6872 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6873 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); - - #line default - #line hidden + this.RectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 601: - - #line 6892 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6893 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); - - #line default - #line hidden + this.RectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 602: + this.WhiteboardFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6915 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7032 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6916 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + #line 7033 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7034 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); #line default #line hidden return; case 603: - - #line 6935 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6936 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); - - #line default - #line hidden + this.WhiteboardToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 604: + this.ToolsFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6955 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7055 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6956 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + #line 7056 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7057 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); #line default #line hidden return; case 605: - this.EnableTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + this.ToolsToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 606: + this.Fold_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6992 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); + #line 7079 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 7080 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7081 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.FoldFloatingBar_MouseUp); #line default #line hidden return; case 607: - this.EnableTwoFingerGestureBtn = ((System.Windows.Controls.Image)(target)); + this.HideToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 608: - this.gestureiconText = ((System.Windows.Controls.TextBlock)(target)); + this.BorderTools = ((System.Windows.Controls.Border)(target)); return; case 609: - this.TwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + + #line 7118 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7119 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + + #line default + #line hidden return; case 610: - this.ToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7025 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); + #line 7126 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7127 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); #line default #line hidden return; case 611: - this.TwoFingerGestureSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 7146 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7147 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden return; case 612: - this.ToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7049 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + #line 7166 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7167 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); #line default #line hidden return; case 613: - this.ToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7074 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); + #line 7189 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7190 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); #line default #line hidden return; case 614: - this.ToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7099 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + #line 7209 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7210 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); #line default #line hidden return; case 615: - this.BorderFloatingBarExitPPTBtn = ((System.Windows.Controls.Border)(target)); - #line 7118 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarExitPPTBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7229 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7118 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarExitPPTBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImagePPTControlEnd_MouseUp); + #line 7230 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); #line default #line hidden return; case 616: - this.GridForFloatingBarDraging = ((System.Windows.Controls.Grid)(target)); - #line 7137 "..\..\..\MainWindow.xaml" - this.GridForFloatingBarDraging.MouseMove += new System.Windows.Input.MouseEventHandler(this.SymbolIconEmoji_MouseMove); + #line 7252 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7137 "..\..\..\MainWindow.xaml" - this.GridForFloatingBarDraging.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); + #line 7253 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); #line default #line hidden return; case 617: - this.InkCanvasForInkReplay = ((System.Windows.Controls.InkCanvas)(target)); - #line 7140 "..\..\..\MainWindow.xaml" - this.InkCanvasForInkReplay.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvasForInkReplay_MouseDown); + #line 7272 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7273 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); #line default #line hidden return; case 618: - this.BorderInkReplayToolBox = ((System.Windows.Controls.Border)(target)); - return; - case 619: - this.InkReplayPanelStatusText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 620: - this.InkReplayPlayPauseBorder = ((System.Windows.Controls.Border)(target)); - #line 7169 "..\..\..\MainWindow.xaml" - this.InkReplayPlayPauseBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseDown); + #line 7292 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7170 "..\..\..\MainWindow.xaml" - this.InkReplayPlayPauseBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseUp); + #line 7293 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + + #line default + #line hidden + return; + case 619: + this.EnableTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + return; + case 620: + + #line 7329 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); #line default #line hidden return; case 621: - this.InkReplayPlayButtonImage = ((System.Windows.Controls.Image)(target)); + this.EnableTwoFingerGestureBtn = ((System.Windows.Controls.Image)(target)); return; case 622: - this.InkReplayPauseButtonImage = ((System.Windows.Controls.Image)(target)); + this.gestureiconText = ((System.Windows.Controls.TextBlock)(target)); return; case 623: - this.InkReplayStopButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 7222 "..\..\..\MainWindow.xaml" - this.InkReplayStopButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7223 "..\..\..\MainWindow.xaml" - this.InkReplayStopButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseUp); - - #line default - #line hidden + this.TwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); return; case 624: - this.InkReplayReplayButtonBorder = ((System.Windows.Controls.Border)(target)); + this.ToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7245 "..\..\..\MainWindow.xaml" - this.InkReplayReplayButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7246 "..\..\..\MainWindow.xaml" - this.InkReplayReplayButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseUp); + #line 7362 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); #line default #line hidden return; case 625: - this.InkReplaySpeedButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 7265 "..\..\..\MainWindow.xaml" - this.InkReplaySpeedButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7266 "..\..\..\MainWindow.xaml" - this.InkReplaySpeedButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseUp); - - #line default - #line hidden + this.TwoFingerGestureSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 626: - this.InkReplaySpeedTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 7386 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + + #line default + #line hidden return; case 627: - this.LeftSidePanel = ((System.Windows.Controls.Viewbox)(target)); + this.ToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7298 "..\..\..\MainWindow.xaml" - this.LeftSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.LeftUnFoldButtonDisplayQuickPanel_MouseUp); + #line 7411 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); #line default #line hidden return; case 628: - this.LeftUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 7436 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + + #line default + #line hidden return; case 629: - this.LeftUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BorderFloatingBarExitPPTBtn = ((System.Windows.Controls.Border)(target)); + + #line 7455 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarExitPPTBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7455 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarExitPPTBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImagePPTControlEnd_MouseUp); + + #line default + #line hidden return; case 630: + this.GridForFloatingBarDraging = ((System.Windows.Controls.Grid)(target)); - #line 7314 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 7474 "..\..\..\MainWindow.xaml" + this.GridForFloatingBarDraging.MouseMove += new System.Windows.Input.MouseEventHandler(this.SymbolIconEmoji_MouseMove); + + #line default + #line hidden + + #line 7474 "..\..\..\MainWindow.xaml" + this.GridForFloatingBarDraging.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); #line default #line hidden return; case 631: + this.InkCanvasForInkReplay = ((System.Windows.Controls.InkCanvas)(target)); - #line 7322 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + #line 7477 "..\..\..\MainWindow.xaml" + this.InkCanvasForInkReplay.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvasForInkReplay_MouseDown); #line default #line hidden return; case 632: - - #line 7331 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); - - #line default - #line hidden + this.BorderInkReplayToolBox = ((System.Windows.Controls.Border)(target)); return; case 633: + this.InkReplayPanelStatusText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 634: + this.InkReplayPlayPauseBorder = ((System.Windows.Controls.Border)(target)); - #line 7338 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + #line 7506 "..\..\..\MainWindow.xaml" + this.InkReplayPlayPauseBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseDown); #line default #line hidden - return; - case 634: - #line 7346 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); + #line 7507 "..\..\..\MainWindow.xaml" + this.InkReplayPlayPauseBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseUp); #line default #line hidden return; case 635: - - #line 7354 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); - - #line default - #line hidden + this.InkReplayPlayButtonImage = ((System.Windows.Controls.Image)(target)); return; case 636: - this.RightSidePanel = ((System.Windows.Controls.Viewbox)(target)); + this.InkReplayPauseButtonImage = ((System.Windows.Controls.Image)(target)); + return; + case 637: + this.InkReplayStopButtonBorder = ((System.Windows.Controls.Border)(target)); - #line 7363 "..\..\..\MainWindow.xaml" - this.RightSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.RightUnFoldButtonDisplayQuickPanel_MouseUp); + #line 7559 "..\..\..\MainWindow.xaml" + this.InkReplayStopButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7560 "..\..\..\MainWindow.xaml" + this.InkReplayStopButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseUp); #line default #line hidden return; - case 637: - this.RightUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); - return; case 638: - this.RightUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + this.InkReplayReplayButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 7582 "..\..\..\MainWindow.xaml" + this.InkReplayReplayButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7583 "..\..\..\MainWindow.xaml" + this.InkReplayReplayButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseUp); + + #line default + #line hidden return; case 639: + this.InkReplaySpeedButtonBorder = ((System.Windows.Controls.Border)(target)); - #line 7387 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 7602 "..\..\..\MainWindow.xaml" + this.InkReplaySpeedButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7603 "..\..\..\MainWindow.xaml" + this.InkReplaySpeedButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseUp); #line default #line hidden return; case 640: - - #line 7395 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); - - #line default - #line hidden + this.InkReplaySpeedTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 641: + this.LeftSidePanel = ((System.Windows.Controls.Viewbox)(target)); - #line 7404 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 7635 "..\..\..\MainWindow.xaml" + this.LeftSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.LeftUnFoldButtonDisplayQuickPanel_MouseUp); #line default #line hidden return; case 642: + this.LeftUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + return; + case 643: + this.LeftUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 644: - #line 7411 "..\..\..\MainWindow.xaml" + #line 7651 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 645: + + #line 7659 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 646: + + #line 7668 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 647: + + #line 7675 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); #line default #line hidden return; - case 643: + case 648: - #line 7419 "..\..\..\MainWindow.xaml" + #line 7683 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); #line default #line hidden return; - case 644: + case 649: - #line 7427 "..\..\..\MainWindow.xaml" + #line 7691 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); + + #line default + #line hidden + return; + case 650: + this.RightSidePanel = ((System.Windows.Controls.Viewbox)(target)); + + #line 7700 "..\..\..\MainWindow.xaml" + this.RightSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.RightUnFoldButtonDisplayQuickPanel_MouseUp); + + #line default + #line hidden + return; + case 651: + this.RightUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + return; + case 652: + this.RightUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 653: + + #line 7724 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 654: + + #line 7732 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 655: + + #line 7741 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 656: + + #line 7748 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + + #line default + #line hidden + return; + case 657: + + #line 7756 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); + + #line default + #line hidden + return; + case 658: + + #line 7764 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); #line default @@ -9446,17 +9558,17 @@ namespace Ink_Canvas { void System.Windows.Markup.IStyleConnector.Connect(int connectionId, object target) { switch (connectionId) { - case 207: + case 221: - #line 2703 "..\..\..\MainWindow.xaml" + #line 3040 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BlackBoardLeftSidePageListView_OnMouseUp); #line default #line hidden break; - case 361: + case 375: - #line 4741 "..\..\..\MainWindow.xaml" + #line 5078 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BlackBoardRightSidePageListView_OnMouseUp); #line default diff --git a/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs index 9d60eebd..a09d6ec1 100644 --- a/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B973C9A13CFF3C19F61DB5B63D0BC9203F435B10" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7158EF500B0E626111E3DA2EB7F7E2C619CF99C3" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -67,7 +67,7 @@ namespace Ink_Canvas { #line hidden - #line 107 "..\..\..\MainWindow.xaml" + #line 170 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid Main_Grid; @@ -75,7 +75,7 @@ namespace Ink_Canvas { #line hidden - #line 110 "..\..\..\MainWindow.xaml" + #line 173 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BorderSettingsMask; @@ -83,7 +83,7 @@ namespace Ink_Canvas { #line hidden - #line 112 "..\..\..\MainWindow.xaml" + #line 175 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderSettings; @@ -91,7 +91,7 @@ namespace Ink_Canvas { #line hidden - #line 118 "..\..\..\MainWindow.xaml" + #line 469 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx SettingsPanelScrollViewer; @@ -99,7 +99,7 @@ namespace Ink_Canvas { #line hidden - #line 305 "..\..\..\MainWindow.xaml" + #line 656 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsAutoUpdate; @@ -107,7 +107,7 @@ namespace Ink_Canvas { #line hidden - #line 309 "..\..\..\MainWindow.xaml" + #line 660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsAutoUpdateWithSilence; @@ -115,7 +115,7 @@ namespace Ink_Canvas { #line hidden - #line 318 "..\..\..\MainWindow.xaml" + #line 669 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel AutoUpdateTimePeriodBlock; @@ -123,7 +123,7 @@ namespace Ink_Canvas { #line hidden - #line 327 "..\..\..\MainWindow.xaml" + #line 678 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox AutoUpdateWithSilenceStartTimeComboBox; @@ -131,7 +131,7 @@ namespace Ink_Canvas { #line hidden - #line 335 "..\..\..\MainWindow.xaml" + #line 686 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox AutoUpdateWithSilenceEndTimeComboBox; @@ -139,7 +139,7 @@ namespace Ink_Canvas { #line hidden - #line 350 "..\..\..\MainWindow.xaml" + #line 701 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchRunAtStartup; @@ -147,7 +147,7 @@ namespace Ink_Canvas { #line hidden - #line 357 "..\..\..\MainWindow.xaml" + #line 708 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchFoldAtStartup; @@ -155,7 +155,7 @@ namespace Ink_Canvas { #line hidden - #line 376 "..\..\..\MainWindow.xaml" + #line 727 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowCursor; @@ -163,7 +163,7 @@ namespace Ink_Canvas { #line hidden - #line 383 "..\..\..\MainWindow.xaml" + #line 734 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnablePressureTouchMode; @@ -171,7 +171,7 @@ namespace Ink_Canvas { #line hidden - #line 391 "..\..\..\MainWindow.xaml" + #line 742 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDisablePressure; @@ -179,7 +179,7 @@ namespace Ink_Canvas { #line hidden - #line 400 "..\..\..\MainWindow.xaml" + #line 751 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxEraserSize; @@ -187,7 +187,7 @@ namespace Ink_Canvas { #line hidden - #line 417 "..\..\..\MainWindow.xaml" + #line 768 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchHideStrokeWhenSelecting; @@ -195,7 +195,7 @@ namespace Ink_Canvas { #line hidden - #line 427 "..\..\..\MainWindow.xaml" + #line 778 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchClearCanvasAndClearTimeMachine; @@ -203,7 +203,7 @@ namespace Ink_Canvas { #line hidden - #line 436 "..\..\..\MainWindow.xaml" + #line 787 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxHyperbolaAsymptoteOption; @@ -211,7 +211,7 @@ namespace Ink_Canvas { #line hidden - #line 449 "..\..\..\MainWindow.xaml" + #line 800 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchFitToCurve; @@ -219,7 +219,7 @@ namespace Ink_Canvas { #line hidden - #line 464 "..\..\..\MainWindow.xaml" + #line 815 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton RadioCrashSilentRestart; @@ -227,7 +227,7 @@ namespace Ink_Canvas { #line hidden - #line 467 "..\..\..\MainWindow.xaml" + #line 818 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton RadioCrashNoAction; @@ -235,7 +235,7 @@ namespace Ink_Canvas { #line hidden - #line 484 "..\..\..\MainWindow.xaml" + #line 835 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSwitchTwoFingerGesture; @@ -243,7 +243,7 @@ namespace Ink_Canvas { #line hidden - #line 496 "..\..\..\MainWindow.xaml" + #line 847 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerRotationOnSelection; @@ -251,7 +251,7 @@ namespace Ink_Canvas { #line hidden - #line 504 "..\..\..\MainWindow.xaml" + #line 855 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxInkRecognition; @@ -259,7 +259,7 @@ namespace Ink_Canvas { #line hidden - #line 513 "..\..\..\MainWindow.xaml" + #line 864 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShape; @@ -267,7 +267,7 @@ namespace Ink_Canvas { #line hidden - #line 523 "..\..\..\MainWindow.xaml" + #line 874 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShapeNoFakePressureRectangle; @@ -275,7 +275,7 @@ namespace Ink_Canvas { #line hidden - #line 532 "..\..\..\MainWindow.xaml" + #line 883 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableInkToShapeNoFakePressureTriangle; @@ -283,7 +283,7 @@ namespace Ink_Canvas { #line hidden - #line 540 "..\..\..\MainWindow.xaml" + #line 891 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeTriangle; @@ -291,7 +291,7 @@ namespace Ink_Canvas { #line hidden - #line 551 "..\..\..\MainWindow.xaml" + #line 902 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeRectangle; @@ -299,7 +299,7 @@ namespace Ink_Canvas { #line hidden - #line 562 "..\..\..\MainWindow.xaml" + #line 913 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ToggleCheckboxEnableInkToShapeRounded; @@ -307,7 +307,7 @@ namespace Ink_Canvas { #line hidden - #line 578 "..\..\..\MainWindow.xaml" + #line 929 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoStraightenLine; @@ -315,7 +315,7 @@ namespace Ink_Canvas { #line hidden - #line 586 "..\..\..\MainWindow.xaml" + #line 937 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider AutoStraightenLineThresholdSlider; @@ -323,7 +323,7 @@ namespace Ink_Canvas { #line hidden - #line 598 "..\..\..\MainWindow.xaml" + #line 949 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchLineEndpointSnapping; @@ -331,7 +331,7 @@ namespace Ink_Canvas { #line hidden - #line 606 "..\..\..\MainWindow.xaml" + #line 957 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider LineEndpointSnappingThresholdSlider; @@ -339,7 +339,7 @@ namespace Ink_Canvas { #line hidden - #line 615 "..\..\..\MainWindow.xaml" + #line 966 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxAppearanceNewUI; @@ -347,7 +347,7 @@ namespace Ink_Canvas { #line hidden - #line 624 "..\..\..\MainWindow.xaml" + #line 975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxFloatingBarImg; @@ -355,7 +355,7 @@ namespace Ink_Canvas { #line hidden - #line 640 "..\..\..\MainWindow.xaml" + #line 991 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarScaleTransformValueSlider; @@ -363,7 +363,7 @@ namespace Ink_Canvas { #line hidden - #line 653 "..\..\..\MainWindow.xaml" + #line 1004 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarOpacityValueSlider; @@ -371,7 +371,7 @@ namespace Ink_Canvas { #line hidden - #line 666 "..\..\..\MainWindow.xaml" + #line 1017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider ViewboxFloatingBarOpacityInPPTValueSlider; @@ -379,7 +379,7 @@ namespace Ink_Canvas { #line hidden - #line 684 "..\..\..\MainWindow.xaml" + #line 1035 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableDisPlayNibModeToggle; @@ -387,7 +387,7 @@ namespace Ink_Canvas { #line hidden - #line 699 "..\..\..\MainWindow.xaml" + #line 1050 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableViewboxBlackBoardScaleTransform; @@ -395,7 +395,7 @@ namespace Ink_Canvas { #line hidden - #line 707 "..\..\..\MainWindow.xaml" + #line 1058 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTimeDisplayInWhiteboardMode; @@ -403,7 +403,7 @@ namespace Ink_Canvas { #line hidden - #line 716 "..\..\..\MainWindow.xaml" + #line 1067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableChickenSoupInWhiteboardMode; @@ -411,7 +411,7 @@ namespace Ink_Canvas { #line hidden - #line 723 "..\..\..\MainWindow.xaml" + #line 1074 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxChickenSoupSource; @@ -419,7 +419,7 @@ namespace Ink_Canvas { #line hidden - #line 736 "..\..\..\MainWindow.xaml" + #line 1087 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableQuickPanel; @@ -427,7 +427,7 @@ namespace Ink_Canvas { #line hidden - #line 743 "..\..\..\MainWindow.xaml" + #line 1094 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxUnFoldBtnImg; @@ -435,7 +435,7 @@ namespace Ink_Canvas { #line hidden - #line 779 "..\..\..\MainWindow.xaml" + #line 1130 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCTrayIconExampleImage; @@ -443,7 +443,7 @@ namespace Ink_Canvas { #line hidden - #line 790 "..\..\..\MainWindow.xaml" + #line 1141 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTrayIcon; @@ -451,7 +451,7 @@ namespace Ink_Canvas { #line hidden - #line 809 "..\..\..\MainWindow.xaml" + #line 1160 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSupportPowerPoint; @@ -459,7 +459,7 @@ namespace Ink_Canvas { #line hidden - #line 818 "..\..\..\MainWindow.xaml" + #line 1169 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSupportWPS; @@ -467,7 +467,7 @@ namespace Ink_Canvas { #line hidden - #line 854 "..\..\..\MainWindow.xaml" + #line 1205 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewLS; @@ -475,7 +475,7 @@ namespace Ink_Canvas { #line hidden - #line 858 "..\..\..\MainWindow.xaml" + #line 1209 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.TranslateTransform PPTBtnPreviewLSTransform; @@ -483,7 +483,7 @@ namespace Ink_Canvas { #line hidden - #line 862 "..\..\..\MainWindow.xaml" + #line 1213 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewRS; @@ -491,7 +491,7 @@ namespace Ink_Canvas { #line hidden - #line 866 "..\..\..\MainWindow.xaml" + #line 1217 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.TranslateTransform PPTBtnPreviewRSTransform; @@ -499,7 +499,7 @@ namespace Ink_Canvas { #line hidden - #line 870 "..\..\..\MainWindow.xaml" + #line 1221 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewLB; @@ -507,7 +507,7 @@ namespace Ink_Canvas { #line hidden - #line 872 "..\..\..\MainWindow.xaml" + #line 1223 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PPTBtnPreviewRB; @@ -515,7 +515,7 @@ namespace Ink_Canvas { #line hidden - #line 880 "..\..\..\MainWindow.xaml" + #line 1231 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowPPTButton; @@ -523,7 +523,7 @@ namespace Ink_Canvas { #line hidden - #line 884 "..\..\..\MainWindow.xaml" + #line 1235 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel PPTButtonSettingsPanel; @@ -531,7 +531,7 @@ namespace Ink_Canvas { #line hidden - #line 888 "..\..\..\MainWindow.xaml" + #line 1239 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableLBPPTButton; @@ -539,7 +539,7 @@ namespace Ink_Canvas { #line hidden - #line 893 "..\..\..\MainWindow.xaml" + #line 1244 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableRBPPTButton; @@ -547,7 +547,7 @@ namespace Ink_Canvas { #line hidden - #line 898 "..\..\..\MainWindow.xaml" + #line 1249 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableLSPPTButton; @@ -555,7 +555,7 @@ namespace Ink_Canvas { #line hidden - #line 903 "..\..\..\MainWindow.xaml" + #line 1254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxEnableRSPPTButton; @@ -563,7 +563,7 @@ namespace Ink_Canvas { #line hidden - #line 912 "..\..\..\MainWindow.xaml" + #line 1263 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider PPTButtonLeftPositionValueSlider; @@ -571,7 +571,7 @@ namespace Ink_Canvas { #line hidden - #line 918 "..\..\..\MainWindow.xaml" + #line 1269 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSPlusBtn; @@ -579,7 +579,7 @@ namespace Ink_Canvas { #line hidden - #line 933 "..\..\..\MainWindow.xaml" + #line 1284 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSMinusBtn; @@ -587,7 +587,7 @@ namespace Ink_Canvas { #line hidden - #line 948 "..\..\..\MainWindow.xaml" + #line 1299 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSSyncBtn; @@ -595,7 +595,7 @@ namespace Ink_Canvas { #line hidden - #line 963 "..\..\..\MainWindow.xaml" + #line 1314 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnLSResetBtn; @@ -603,7 +603,7 @@ namespace Ink_Canvas { #line hidden - #line 986 "..\..\..\MainWindow.xaml" + #line 1337 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider PPTButtonRightPositionValueSlider; @@ -611,7 +611,7 @@ namespace Ink_Canvas { #line hidden - #line 992 "..\..\..\MainWindow.xaml" + #line 1343 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSPlusBtn; @@ -619,7 +619,7 @@ namespace Ink_Canvas { #line hidden - #line 1007 "..\..\..\MainWindow.xaml" + #line 1358 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSMinusBtn; @@ -627,7 +627,7 @@ namespace Ink_Canvas { #line hidden - #line 1022 "..\..\..\MainWindow.xaml" + #line 1373 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSSyncBtn; @@ -635,7 +635,7 @@ namespace Ink_Canvas { #line hidden - #line 1037 "..\..\..\MainWindow.xaml" + #line 1388 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button PPTBtnRSResetBtn; @@ -643,7 +643,7 @@ namespace Ink_Canvas { #line hidden - #line 1064 "..\..\..\MainWindow.xaml" + #line 1415 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTDisplayPage; @@ -651,7 +651,7 @@ namespace Ink_Canvas { #line hidden - #line 1069 "..\..\..\MainWindow.xaml" + #line 1420 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTHalfOpacity; @@ -659,7 +659,7 @@ namespace Ink_Canvas { #line hidden - #line 1076 "..\..\..\MainWindow.xaml" + #line 1427 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxSPPTBlackBackground; @@ -667,7 +667,7 @@ namespace Ink_Canvas { #line hidden - #line 1086 "..\..\..\MainWindow.xaml" + #line 1437 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTDisplayPage; @@ -675,7 +675,7 @@ namespace Ink_Canvas { #line hidden - #line 1091 "..\..\..\MainWindow.xaml" + #line 1442 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTHalfOpacity; @@ -683,7 +683,7 @@ namespace Ink_Canvas { #line hidden - #line 1097 "..\..\..\MainWindow.xaml" + #line 1448 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox CheckboxBPPTBlackBackground; @@ -691,7 +691,7 @@ namespace Ink_Canvas { #line hidden - #line 1109 "..\..\..\MainWindow.xaml" + #line 1460 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnablePPTButtonPageClickable; @@ -699,7 +699,7 @@ namespace Ink_Canvas { #line hidden - #line 1120 "..\..\..\MainWindow.xaml" + #line 1471 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SettingsShowCanvasAtNewSlideShowStackPanel; @@ -707,7 +707,7 @@ namespace Ink_Canvas { #line hidden - #line 1125 "..\..\..\MainWindow.xaml" + #line 1476 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowCanvasAtNewSlideShow; @@ -715,7 +715,7 @@ namespace Ink_Canvas { #line hidden - #line 1129 "..\..\..\MainWindow.xaml" + #line 1480 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border SettingsPPTInkingAndAutoFoldExplictBorder; @@ -723,7 +723,7 @@ namespace Ink_Canvas { #line hidden - #line 1153 "..\..\..\MainWindow.xaml" + #line 1504 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerGestureInPresentationMode; @@ -731,7 +731,7 @@ namespace Ink_Canvas { #line hidden - #line 1161 "..\..\..\MainWindow.xaml" + #line 1512 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableFingerGestureSlideShowControl; @@ -739,7 +739,7 @@ namespace Ink_Canvas { #line hidden - #line 1174 "..\..\..\MainWindow.xaml" + #line 1525 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveScreenShotInPowerPoint; @@ -747,7 +747,7 @@ namespace Ink_Canvas { #line hidden - #line 1184 "..\..\..\MainWindow.xaml" + #line 1535 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesInPowerPoint; @@ -755,7 +755,7 @@ namespace Ink_Canvas { #line hidden - #line 1196 "..\..\..\MainWindow.xaml" + #line 1547 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyPreviousPage; @@ -763,7 +763,7 @@ namespace Ink_Canvas { #line hidden - #line 1203 "..\..\..\MainWindow.xaml" + #line 1554 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyHiddenPage; @@ -771,7 +771,7 @@ namespace Ink_Canvas { #line hidden - #line 1211 "..\..\..\MainWindow.xaml" + #line 1562 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchNotifyAutoPlayPresentation; @@ -779,7 +779,7 @@ namespace Ink_Canvas { #line hidden - #line 1229 "..\..\..\MainWindow.xaml" + #line 1580 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsSpecialScreen; @@ -787,7 +787,7 @@ namespace Ink_Canvas { #line hidden - #line 1238 "..\..\..\MainWindow.xaml" + #line 1589 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider TouchMultiplierSlider; @@ -795,7 +795,7 @@ namespace Ink_Canvas { #line hidden - #line 1259 "..\..\..\MainWindow.xaml" + #line 1610 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockShowCalculatedMultiplier; @@ -803,7 +803,7 @@ namespace Ink_Canvas { #line hidden - #line 1267 "..\..\..\MainWindow.xaml" + #line 1618 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEraserBindTouchMultiplier; @@ -811,7 +811,7 @@ namespace Ink_Canvas { #line hidden - #line 1277 "..\..\..\MainWindow.xaml" + #line 1628 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider NibModeBoundsWidthSlider; @@ -819,7 +819,7 @@ namespace Ink_Canvas { #line hidden - #line 1289 "..\..\..\MainWindow.xaml" + #line 1640 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider FingerModeBoundsWidthSlider; @@ -827,7 +827,7 @@ namespace Ink_Canvas { #line hidden - #line 1302 "..\..\..\MainWindow.xaml" + #line 1653 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsQuadIR; @@ -835,7 +835,7 @@ namespace Ink_Canvas { #line hidden - #line 1311 "..\..\..\MainWindow.xaml" + #line 1662 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsLogEnabled; @@ -843,7 +843,7 @@ namespace Ink_Canvas { #line hidden - #line 1320 "..\..\..\MainWindow.xaml" + #line 1671 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsSecondConfimeWhenShutdownApp; @@ -851,7 +851,7 @@ namespace Ink_Canvas { #line hidden - #line 1352 "..\..\..\MainWindow.xaml" + #line 1703 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableFullScreenHelper; @@ -859,7 +859,7 @@ namespace Ink_Canvas { #line hidden - #line 1385 "..\..\..\MainWindow.xaml" + #line 1736 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableAvoidFullScreenHelper; @@ -867,7 +867,7 @@ namespace Ink_Canvas { #line hidden - #line 1419 "..\..\..\MainWindow.xaml" + #line 1770 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableEdgeGestureUtil; @@ -875,7 +875,7 @@ namespace Ink_Canvas { #line hidden - #line 1456 "..\..\..\MainWindow.xaml" + #line 1807 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableForceFullScreen; @@ -883,7 +883,7 @@ namespace Ink_Canvas { #line hidden - #line 1488 "..\..\..\MainWindow.xaml" + #line 1839 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableDPIChangeDetection; @@ -891,7 +891,7 @@ namespace Ink_Canvas { #line hidden - #line 1520 "..\..\..\MainWindow.xaml" + #line 1871 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchIsEnableResolutionChangeDetection; @@ -899,7 +899,7 @@ namespace Ink_Canvas { #line hidden - #line 1557 "..\..\..\MainWindow.xaml" + #line 1908 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote; @@ -907,7 +907,7 @@ namespace Ink_Canvas { #line hidden - #line 1570 "..\..\..\MainWindow.xaml" + #line 1921 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiCamera; @@ -915,7 +915,7 @@ namespace Ink_Canvas { #line hidden - #line 1583 "..\..\..\MainWindow.xaml" + #line 1934 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote3; @@ -923,7 +923,7 @@ namespace Ink_Canvas { #line hidden - #line 1596 "..\..\..\MainWindow.xaml" + #line 1947 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote3C; @@ -931,7 +931,7 @@ namespace Ink_Canvas { #line hidden - #line 1610 "..\..\..\MainWindow.xaml" + #line 1961 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNote5C; @@ -939,7 +939,7 @@ namespace Ink_Canvas { #line hidden - #line 1624 "..\..\..\MainWindow.xaml" + #line 1975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInSeewoPincoTeacher; @@ -947,7 +947,7 @@ namespace Ink_Canvas { #line hidden - #line 1638 "..\..\..\MainWindow.xaml" + #line 1989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteTouchPro; @@ -955,7 +955,7 @@ namespace Ink_Canvas { #line hidden - #line 1652 "..\..\..\MainWindow.xaml" + #line 2003 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteCamera; @@ -963,7 +963,7 @@ namespace Ink_Canvas { #line hidden - #line 1666 "..\..\..\MainWindow.xaml" + #line 2017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInHiteLightBoard; @@ -971,7 +971,7 @@ namespace Ink_Canvas { #line hidden - #line 1680 "..\..\..\MainWindow.xaml" + #line 2031 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInWxBoardMain; @@ -979,7 +979,7 @@ namespace Ink_Canvas { #line hidden - #line 1694 "..\..\..\MainWindow.xaml" + #line 2045 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInMSWhiteboard; @@ -987,7 +987,7 @@ namespace Ink_Canvas { #line hidden - #line 1708 "..\..\..\MainWindow.xaml" + #line 2059 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInAdmoxWhiteboard; @@ -995,7 +995,7 @@ namespace Ink_Canvas { #line hidden - #line 1722 "..\..\..\MainWindow.xaml" + #line 2073 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInAdmoxBooth; @@ -1003,7 +1003,7 @@ namespace Ink_Canvas { #line hidden - #line 1736 "..\..\..\MainWindow.xaml" + #line 2087 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInQPoint; @@ -1011,7 +1011,7 @@ namespace Ink_Canvas { #line hidden - #line 1749 "..\..\..\MainWindow.xaml" + #line 2100 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInYiYunVisualPresenter; @@ -1019,7 +1019,7 @@ namespace Ink_Canvas { #line hidden - #line 1765 "..\..\..\MainWindow.xaml" + #line 2116 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInMaxHubWhiteboard; @@ -1027,7 +1027,7 @@ namespace Ink_Canvas { #line hidden - #line 1778 "..\..\..\MainWindow.xaml" + #line 2129 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno; @@ -1035,7 +1035,7 @@ namespace Ink_Canvas { #line hidden - #line 1788 "..\..\..\MainWindow.xaml" + #line 2139 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInOldZyBoard; @@ -1043,7 +1043,7 @@ namespace Ink_Canvas { #line hidden - #line 1798 "..\..\..\MainWindow.xaml" + #line 2149 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoFoldInPPTSlideShow; @@ -1051,7 +1051,7 @@ namespace Ink_Canvas { #line hidden - #line 1813 "..\..\..\MainWindow.xaml" + #line 2164 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillPptService; @@ -1059,7 +1059,7 @@ namespace Ink_Canvas { #line hidden - #line 1825 "..\..\..\MainWindow.xaml" + #line 2176 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillEasiNote; @@ -1067,7 +1067,7 @@ namespace Ink_Canvas { #line hidden - #line 1836 "..\..\..\MainWindow.xaml" + #line 2187 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillHiteAnnotation; @@ -1075,7 +1075,7 @@ namespace Ink_Canvas { #line hidden - #line 1847 "..\..\..\MainWindow.xaml" + #line 2198 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillVComYouJiao; @@ -1083,7 +1083,7 @@ namespace Ink_Canvas { #line hidden - #line 1859 "..\..\..\MainWindow.xaml" + #line 2210 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation; @@ -1091,7 +1091,7 @@ namespace Ink_Canvas { #line hidden - #line 1880 "..\..\..\MainWindow.xaml" + #line 2231 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillInkCanvas; @@ -1099,7 +1099,7 @@ namespace Ink_Canvas { #line hidden - #line 1892 "..\..\..\MainWindow.xaml" + #line 2243 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillICA; @@ -1107,7 +1107,7 @@ namespace Ink_Canvas { #line hidden - #line 1903 "..\..\..\MainWindow.xaml" + #line 2254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoKillIDT; @@ -1115,7 +1115,7 @@ namespace Ink_Canvas { #line hidden - #line 1913 "..\..\..\MainWindow.xaml" + #line 2264 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesAtClear; @@ -1123,7 +1123,7 @@ namespace Ink_Canvas { #line hidden - #line 1921 "..\..\..\MainWindow.xaml" + #line 2272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchSaveScreenshotsInDateFolders; @@ -1131,7 +1131,7 @@ namespace Ink_Canvas { #line hidden - #line 1929 "..\..\..\MainWindow.xaml" + #line 2280 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoSaveStrokesAtScreenshot; @@ -1139,7 +1139,7 @@ namespace Ink_Canvas { #line hidden - #line 1938 "..\..\..\MainWindow.xaml" + #line 2289 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider SideControlMinimumAutomationSlider; @@ -1147,7 +1147,7 @@ namespace Ink_Canvas { #line hidden - #line 1954 "..\..\..\MainWindow.xaml" + #line 2305 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox AutoSavedStrokesLocation; @@ -1155,7 +1155,7 @@ namespace Ink_Canvas { #line hidden - #line 1958 "..\..\..\MainWindow.xaml" + #line 2309 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button AutoSavedStrokesLocationButton; @@ -1163,7 +1163,7 @@ namespace Ink_Canvas { #line hidden - #line 1962 "..\..\..\MainWindow.xaml" + #line 2313 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button SetAutoSavedStrokesLocationToDiskDButton; @@ -1171,7 +1171,7 @@ namespace Ink_Canvas { #line hidden - #line 1965 "..\..\..\MainWindow.xaml" + #line 2316 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button SetAutoSavedStrokesLocationToDocumentFolderButton; @@ -1179,7 +1179,7 @@ namespace Ink_Canvas { #line hidden - #line 1979 "..\..\..\MainWindow.xaml" + #line 2330 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchAutoDelSavedFiles; @@ -1187,7 +1187,7 @@ namespace Ink_Canvas { #line hidden - #line 1990 "..\..\..\MainWindow.xaml" + #line 2341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxAutoDelSavedFilesDaysThreshold; @@ -1195,7 +1195,7 @@ namespace Ink_Canvas { #line hidden - #line 2009 "..\..\..\MainWindow.xaml" + #line 2360 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.GroupBox GroupBoxRandWindow; @@ -1203,7 +1203,7 @@ namespace Ink_Canvas { #line hidden - #line 2019 "..\..\..\MainWindow.xaml" + #line 2370 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDisplayRandWindowNamesInputBtn; @@ -1211,7 +1211,7 @@ namespace Ink_Canvas { #line hidden - #line 2028 "..\..\..\MainWindow.xaml" + #line 2379 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchShowRandomAndSingleDraw; @@ -1219,7 +1219,7 @@ namespace Ink_Canvas { #line hidden - #line 2038 "..\..\..\MainWindow.xaml" + #line 2389 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider RandWindowOnceCloseLatencySlider; @@ -1227,7 +1227,7 @@ namespace Ink_Canvas { #line hidden - #line 2054 "..\..\..\MainWindow.xaml" + #line 2405 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider RandWindowOnceMaxStudentsSlider; @@ -1235,7 +1235,7 @@ namespace Ink_Canvas { #line hidden - #line 2073 "..\..\..\MainWindow.xaml" + #line 2424 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock AppVersionTextBlock; @@ -1243,7 +1243,7 @@ namespace Ink_Canvas { #line hidden - #line 2438 "..\..\..\MainWindow.xaml" + #line 2775 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridBackgroundCoverHolder; @@ -1251,7 +1251,7 @@ namespace Ink_Canvas { #line hidden - #line 2439 "..\..\..\MainWindow.xaml" + #line 2776 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridBackgroundCover; @@ -1259,7 +1259,7 @@ namespace Ink_Canvas { #line hidden - #line 2440 "..\..\..\MainWindow.xaml" + #line 2777 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCWaterMarkWhite; @@ -1267,7 +1267,7 @@ namespace Ink_Canvas { #line hidden - #line 2442 "..\..\..\MainWindow.xaml" + #line 2779 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ICCWaterMarkDark; @@ -1275,7 +1275,7 @@ namespace Ink_Canvas { #line hidden - #line 2446 "..\..\..\MainWindow.xaml" + #line 2783 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridTransparencyFakeBackground; @@ -1283,7 +1283,7 @@ namespace Ink_Canvas { #line hidden - #line 2447 "..\..\..\MainWindow.xaml" + #line 2784 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Label Label; @@ -1291,7 +1291,7 @@ namespace Ink_Canvas { #line hidden - #line 2448 "..\..\..\MainWindow.xaml" + #line 2785 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid InkCanvasGridForInkReplay; @@ -1299,7 +1299,7 @@ namespace Ink_Canvas { #line hidden - #line 2449 "..\..\..\MainWindow.xaml" + #line 2786 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.InkCanvas inkCanvas; @@ -1307,7 +1307,7 @@ namespace Ink_Canvas { #line hidden - #line 2469 "..\..\..\MainWindow.xaml" + #line 2806 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WaterMarkTime; @@ -1315,7 +1315,7 @@ namespace Ink_Canvas { #line hidden - #line 2471 "..\..\..\MainWindow.xaml" + #line 2808 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WaterMarkDate; @@ -1323,7 +1323,7 @@ namespace Ink_Canvas { #line hidden - #line 2474 "..\..\..\MainWindow.xaml" + #line 2811 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BlackBoardWaterMark; @@ -1331,7 +1331,7 @@ namespace Ink_Canvas { #line hidden - #line 2478 "..\..\..\MainWindow.xaml" + #line 2815 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridInkCanvasSelectionCover; @@ -1339,7 +1339,7 @@ namespace Ink_Canvas { #line hidden - #line 2490 "..\..\..\MainWindow.xaml" + #line 2827 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionControl; @@ -1347,7 +1347,7 @@ namespace Ink_Canvas { #line hidden - #line 2498 "..\..\..\MainWindow.xaml" + #line 2835 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionClone; @@ -1355,7 +1355,7 @@ namespace Ink_Canvas { #line hidden - #line 2508 "..\..\..\MainWindow.xaml" + #line 2845 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderStrokeSelectionCloneToNewBoard; @@ -1363,7 +1363,7 @@ namespace Ink_Canvas { #line hidden - #line 2637 "..\..\..\MainWindow.xaml" + #line 2974 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardUIGridForInkReplay; @@ -1371,7 +1371,7 @@ namespace Ink_Canvas { #line hidden - #line 2640 "..\..\..\MainWindow.xaml" + #line 2977 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBlackboardLeftSide; @@ -1379,7 +1379,7 @@ namespace Ink_Canvas { #line hidden - #line 2642 "..\..\..\MainWindow.xaml" + #line 2979 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardLeftSide; @@ -1387,7 +1387,7 @@ namespace Ink_Canvas { #line hidden - #line 2661 "..\..\..\MainWindow.xaml" + #line 2998 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnLeftWhiteBoardSwitchPreviousGeometry; @@ -1395,7 +1395,7 @@ namespace Ink_Canvas { #line hidden - #line 2670 "..\..\..\MainWindow.xaml" + #line 3007 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnLeftWhiteBoardSwitchPreviousLabel; @@ -1403,7 +1403,7 @@ namespace Ink_Canvas { #line hidden - #line 2674 "..\..\..\MainWindow.xaml" + #line 3011 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BtnLeftPageListWB; @@ -1411,7 +1411,7 @@ namespace Ink_Canvas { #line hidden - #line 2687 "..\..\..\MainWindow.xaml" + #line 3024 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderLeftPageListView; @@ -1419,7 +1419,7 @@ namespace Ink_Canvas { #line hidden - #line 2692 "..\..\..\MainWindow.xaml" + #line 3029 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx BlackBoardLeftSidePageListScrollViewer; @@ -1427,7 +1427,7 @@ namespace Ink_Canvas { #line hidden - #line 2699 "..\..\..\MainWindow.xaml" + #line 3036 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ListView BlackBoardLeftSidePageListView; @@ -1435,7 +1435,7 @@ namespace Ink_Canvas { #line hidden - #line 2749 "..\..\..\MainWindow.xaml" + #line 3086 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnLeftWhiteBoardSwitchNextGeometry; @@ -1443,7 +1443,7 @@ namespace Ink_Canvas { #line hidden - #line 2758 "..\..\..\MainWindow.xaml" + #line 3095 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnLeftWhiteBoardSwitchNextLabel; @@ -1451,7 +1451,7 @@ namespace Ink_Canvas { #line hidden - #line 2792 "..\..\..\MainWindow.xaml" + #line 3129 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.ScaleTransform ViewboxBlackboardCenterSideScaleTransform; @@ -1459,7 +1459,7 @@ namespace Ink_Canvas { #line hidden - #line 2794 "..\..\..\MainWindow.xaml" + #line 3131 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardCenterSide; @@ -1467,7 +1467,7 @@ namespace Ink_Canvas { #line hidden - #line 2799 "..\..\..\MainWindow.xaml" + #line 3136 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardGesture; @@ -1475,7 +1475,7 @@ namespace Ink_Canvas { #line hidden - #line 2810 "..\..\..\MainWindow.xaml" + #line 3147 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardGestureGeometry; @@ -1483,7 +1483,7 @@ namespace Ink_Canvas { #line hidden - #line 2813 "..\..\..\MainWindow.xaml" + #line 3150 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardGestureGeometry2; @@ -1491,7 +1491,7 @@ namespace Ink_Canvas { #line hidden - #line 2822 "..\..\..\MainWindow.xaml" + #line 3159 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardGestureLabel; @@ -1499,7 +1499,7 @@ namespace Ink_Canvas { #line hidden - #line 2827 "..\..\..\MainWindow.xaml" + #line 3164 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardTwoFingerGestureBorder; @@ -1507,7 +1507,7 @@ namespace Ink_Canvas { #line hidden - #line 2857 "..\..\..\MainWindow.xaml" + #line 3194 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableMultiTouchMode; @@ -1515,7 +1515,7 @@ namespace Ink_Canvas { #line hidden - #line 2888 "..\..\..\MainWindow.xaml" + #line 3225 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerTranslate; @@ -1523,7 +1523,7 @@ namespace Ink_Canvas { #line hidden - #line 2921 "..\..\..\MainWindow.xaml" + #line 3258 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerZoom; @@ -1531,7 +1531,7 @@ namespace Ink_Canvas { #line hidden - #line 2950 "..\..\..\MainWindow.xaml" + #line 3287 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableTwoFingerRotation; @@ -1539,7 +1539,7 @@ namespace Ink_Canvas { #line hidden - #line 2997 "..\..\..\MainWindow.xaml" + #line 3334 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardSelect; @@ -1547,7 +1547,7 @@ namespace Ink_Canvas { #line hidden - #line 3009 "..\..\..\MainWindow.xaml" + #line 3346 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardSelectGeometry; @@ -1555,7 +1555,7 @@ namespace Ink_Canvas { #line hidden - #line 3018 "..\..\..\MainWindow.xaml" + #line 3355 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardSelectLabel; @@ -1563,7 +1563,7 @@ namespace Ink_Canvas { #line hidden - #line 3022 "..\..\..\MainWindow.xaml" + #line 3359 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardPen; @@ -1571,7 +1571,7 @@ namespace Ink_Canvas { #line hidden - #line 3026 "..\..\..\MainWindow.xaml" + #line 3363 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image BoardPenIcon; @@ -1579,7 +1579,7 @@ namespace Ink_Canvas { #line hidden - #line 3032 "..\..\..\MainWindow.xaml" + #line 3369 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardPenGeometry; @@ -1587,7 +1587,7 @@ namespace Ink_Canvas { #line hidden - #line 3041 "..\..\..\MainWindow.xaml" + #line 3378 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardPenLabel; @@ -1595,7 +1595,7 @@ namespace Ink_Canvas { #line hidden - #line 3047 "..\..\..\MainWindow.xaml" + #line 3384 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BoardPenPaletteGrid; @@ -1603,7 +1603,7 @@ namespace Ink_Canvas { #line hidden - #line 3057 "..\..\..\MainWindow.xaml" + #line 3394 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardPenPalette; @@ -1611,7 +1611,7 @@ namespace Ink_Canvas { #line hidden - #line 3072 "..\..\..\MainWindow.xaml" + #line 3409 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardDefaultPenTabButton; @@ -1619,7 +1619,7 @@ namespace Ink_Canvas { #line hidden - #line 3079 "..\..\..\MainWindow.xaml" + #line 3416 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardDefaultPenTabButtonIndicator; @@ -1627,7 +1627,7 @@ namespace Ink_Canvas { #line hidden - #line 3100 "..\..\..\MainWindow.xaml" + #line 3437 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardDefaultPenTabButtonText; @@ -1635,7 +1635,7 @@ namespace Ink_Canvas { #line hidden - #line 3110 "..\..\..\MainWindow.xaml" + #line 3447 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlightPenTabButton; @@ -1643,7 +1643,7 @@ namespace Ink_Canvas { #line hidden - #line 3117 "..\..\..\MainWindow.xaml" + #line 3454 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardHighlightPenTabButtonIndicator; @@ -1651,7 +1651,7 @@ namespace Ink_Canvas { #line hidden - #line 3137 "..\..\..\MainWindow.xaml" + #line 3474 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardHighlightPenTabButtonText; @@ -1659,7 +1659,7 @@ namespace Ink_Canvas { #line hidden - #line 3157 "..\..\..\MainWindow.xaml" + #line 3494 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardDefaultPenPropsPanel; @@ -1667,7 +1667,7 @@ namespace Ink_Canvas { #line hidden - #line 3172 "..\..\..\MainWindow.xaml" + #line 3509 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BoardComboBoxPenStyle; @@ -1675,7 +1675,7 @@ namespace Ink_Canvas { #line hidden - #line 3187 "..\..\..\MainWindow.xaml" + #line 3524 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardNibModeSimpleStackPanel; @@ -1683,7 +1683,7 @@ namespace Ink_Canvas { #line hidden - #line 3192 "..\..\..\MainWindow.xaml" + #line 3529 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch BoardToggleSwitchEnableNibMode; @@ -1691,7 +1691,7 @@ namespace Ink_Canvas { #line hidden - #line 3222 "..\..\..\MainWindow.xaml" + #line 3559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardInkWidthSlider; @@ -1699,7 +1699,7 @@ namespace Ink_Canvas { #line hidden - #line 3240 "..\..\..\MainWindow.xaml" + #line 3577 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardInkAlphaSlider; @@ -1707,7 +1707,7 @@ namespace Ink_Canvas { #line hidden - #line 3257 "..\..\..\MainWindow.xaml" + #line 3594 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenPropsPanel; @@ -1715,7 +1715,7 @@ namespace Ink_Canvas { #line hidden - #line 3268 "..\..\..\MainWindow.xaml" + #line 3605 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider BoardHighlighterWidthSlider; @@ -1723,7 +1723,7 @@ namespace Ink_Canvas { #line hidden - #line 3284 "..\..\..\MainWindow.xaml" + #line 3621 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardDefaultPenColorsPanel; @@ -1731,7 +1731,7 @@ namespace Ink_Canvas { #line hidden - #line 3304 "..\..\..\MainWindow.xaml" + #line 3641 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image BoardColorThemeSwitchIcon; @@ -1739,7 +1739,7 @@ namespace Ink_Canvas { #line hidden - #line 3312 "..\..\..\MainWindow.xaml" + #line 3649 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardColorThemeSwitchTextBlock; @@ -1747,7 +1747,7 @@ namespace Ink_Canvas { #line hidden - #line 3321 "..\..\..\MainWindow.xaml" + #line 3658 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorBlack; @@ -1755,7 +1755,7 @@ namespace Ink_Canvas { #line hidden - #line 3329 "..\..\..\MainWindow.xaml" + #line 3666 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorBlackContent; @@ -1763,7 +1763,7 @@ namespace Ink_Canvas { #line hidden - #line 3342 "..\..\..\MainWindow.xaml" + #line 3679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorWhite; @@ -1771,7 +1771,7 @@ namespace Ink_Canvas { #line hidden - #line 3350 "..\..\..\MainWindow.xaml" + #line 3687 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorWhiteContent; @@ -1779,7 +1779,7 @@ namespace Ink_Canvas { #line hidden - #line 3362 "..\..\..\MainWindow.xaml" + #line 3699 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorRed; @@ -1787,7 +1787,7 @@ namespace Ink_Canvas { #line hidden - #line 3370 "..\..\..\MainWindow.xaml" + #line 3707 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorRedContent; @@ -1795,7 +1795,7 @@ namespace Ink_Canvas { #line hidden - #line 3383 "..\..\..\MainWindow.xaml" + #line 3720 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorYellow; @@ -1803,7 +1803,7 @@ namespace Ink_Canvas { #line hidden - #line 3391 "..\..\..\MainWindow.xaml" + #line 3728 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorYellowContent; @@ -1811,7 +1811,7 @@ namespace Ink_Canvas { #line hidden - #line 3412 "..\..\..\MainWindow.xaml" + #line 3749 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorGreen; @@ -1819,7 +1819,7 @@ namespace Ink_Canvas { #line hidden - #line 3420 "..\..\..\MainWindow.xaml" + #line 3757 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorGreenContent; @@ -1827,7 +1827,7 @@ namespace Ink_Canvas { #line hidden - #line 3433 "..\..\..\MainWindow.xaml" + #line 3770 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorBlue; @@ -1835,7 +1835,7 @@ namespace Ink_Canvas { #line hidden - #line 3441 "..\..\..\MainWindow.xaml" + #line 3778 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorBlueContent; @@ -1843,7 +1843,7 @@ namespace Ink_Canvas { #line hidden - #line 3454 "..\..\..\MainWindow.xaml" + #line 3791 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorPink; @@ -1851,7 +1851,7 @@ namespace Ink_Canvas { #line hidden - #line 3462 "..\..\..\MainWindow.xaml" + #line 3799 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorPinkContent; @@ -1859,7 +1859,7 @@ namespace Ink_Canvas { #line hidden - #line 3475 "..\..\..\MainWindow.xaml" + #line 3812 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorTeal; @@ -1867,7 +1867,7 @@ namespace Ink_Canvas { #line hidden - #line 3483 "..\..\..\MainWindow.xaml" + #line 3820 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorTealContent; @@ -1875,7 +1875,7 @@ namespace Ink_Canvas { #line hidden - #line 3496 "..\..\..\MainWindow.xaml" + #line 3833 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderPenColorOrange; @@ -1883,7 +1883,7 @@ namespace Ink_Canvas { #line hidden - #line 3504 "..\..\..\MainWindow.xaml" + #line 3841 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardViewboxBtnColorOrangeContent; @@ -1891,7 +1891,7 @@ namespace Ink_Canvas { #line hidden - #line 3522 "..\..\..\MainWindow.xaml" + #line 3859 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenColorsPanel; @@ -1899,7 +1899,7 @@ namespace Ink_Canvas { #line hidden - #line 3536 "..\..\..\MainWindow.xaml" + #line 3873 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorBlack; @@ -1907,7 +1907,7 @@ namespace Ink_Canvas { #line hidden - #line 3558 "..\..\..\MainWindow.xaml" + #line 3895 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorBlackContent; @@ -1915,7 +1915,7 @@ namespace Ink_Canvas { #line hidden - #line 3572 "..\..\..\MainWindow.xaml" + #line 3909 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorWhite; @@ -1923,7 +1923,7 @@ namespace Ink_Canvas { #line hidden - #line 3596 "..\..\..\MainWindow.xaml" + #line 3933 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorWhiteContent; @@ -1931,7 +1931,7 @@ namespace Ink_Canvas { #line hidden - #line 3610 "..\..\..\MainWindow.xaml" + #line 3947 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorRed; @@ -1939,7 +1939,7 @@ namespace Ink_Canvas { #line hidden - #line 3632 "..\..\..\MainWindow.xaml" + #line 3969 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorRedContent; @@ -1947,7 +1947,7 @@ namespace Ink_Canvas { #line hidden - #line 3646 "..\..\..\MainWindow.xaml" + #line 3983 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorYellow; @@ -1955,7 +1955,7 @@ namespace Ink_Canvas { #line hidden - #line 3668 "..\..\..\MainWindow.xaml" + #line 4005 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorYellowContent; @@ -1963,7 +1963,7 @@ namespace Ink_Canvas { #line hidden - #line 3682 "..\..\..\MainWindow.xaml" + #line 4019 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorGreen; @@ -1971,7 +1971,7 @@ namespace Ink_Canvas { #line hidden - #line 3704 "..\..\..\MainWindow.xaml" + #line 4041 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorGreenContent; @@ -1979,7 +1979,7 @@ namespace Ink_Canvas { #line hidden - #line 3725 "..\..\..\MainWindow.xaml" + #line 4062 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorZinc; @@ -1987,7 +1987,7 @@ namespace Ink_Canvas { #line hidden - #line 3747 "..\..\..\MainWindow.xaml" + #line 4084 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorZincContent; @@ -1995,7 +1995,7 @@ namespace Ink_Canvas { #line hidden - #line 3761 "..\..\..\MainWindow.xaml" + #line 4098 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorBlue; @@ -2003,7 +2003,7 @@ namespace Ink_Canvas { #line hidden - #line 3783 "..\..\..\MainWindow.xaml" + #line 4120 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorBlueContent; @@ -2011,7 +2011,7 @@ namespace Ink_Canvas { #line hidden - #line 3797 "..\..\..\MainWindow.xaml" + #line 4134 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenPenColorPurple; @@ -2019,7 +2019,7 @@ namespace Ink_Canvas { #line hidden - #line 3819 "..\..\..\MainWindow.xaml" + #line 4156 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorPurpleContent; @@ -2027,7 +2027,7 @@ namespace Ink_Canvas { #line hidden - #line 3833 "..\..\..\MainWindow.xaml" + #line 4170 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorTeal; @@ -2035,7 +2035,7 @@ namespace Ink_Canvas { #line hidden - #line 3855 "..\..\..\MainWindow.xaml" + #line 4192 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorTealContent; @@ -2043,7 +2043,7 @@ namespace Ink_Canvas { #line hidden - #line 3869 "..\..\..\MainWindow.xaml" + #line 4206 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardHighlighterPenColorOrange; @@ -2051,7 +2051,7 @@ namespace Ink_Canvas { #line hidden - #line 3891 "..\..\..\MainWindow.xaml" + #line 4228 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox BoardHighlighterPenViewboxBtnColorOrangeContent; @@ -2059,7 +2059,7 @@ namespace Ink_Canvas { #line hidden - #line 3916 "..\..\..\MainWindow.xaml" + #line 4253 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraser; @@ -2067,7 +2067,7 @@ namespace Ink_Canvas { #line hidden - #line 3926 "..\..\..\MainWindow.xaml" + #line 4263 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BoardEraserGeometry; @@ -2075,7 +2075,7 @@ namespace Ink_Canvas { #line hidden - #line 3935 "..\..\..\MainWindow.xaml" + #line 4272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardEraserLabel; @@ -2083,7 +2083,7 @@ namespace Ink_Canvas { #line hidden - #line 3950 "..\..\..\MainWindow.xaml" + #line 4287 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraserSizePanel; @@ -2091,7 +2091,7 @@ namespace Ink_Canvas { #line hidden - #line 3974 "..\..\..\MainWindow.xaml" + #line 4311 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BoardComboBoxEraserSize; @@ -2099,7 +2099,7 @@ namespace Ink_Canvas { #line hidden - #line 3998 "..\..\..\MainWindow.xaml" + #line 4335 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardCircleEraserTabButton; @@ -2107,7 +2107,7 @@ namespace Ink_Canvas { #line hidden - #line 4004 "..\..\..\MainWindow.xaml" + #line 4341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardCircleEraserTabButtonIndicator; @@ -2115,7 +2115,7 @@ namespace Ink_Canvas { #line hidden - #line 4017 "..\..\..\MainWindow.xaml" + #line 4354 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardCircleEraserTabButtonText; @@ -2123,7 +2123,7 @@ namespace Ink_Canvas { #line hidden - #line 4026 "..\..\..\MainWindow.xaml" + #line 4363 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardRectangleEraserTabButton; @@ -2131,7 +2131,7 @@ namespace Ink_Canvas { #line hidden - #line 4032 "..\..\..\MainWindow.xaml" + #line 4369 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardRectangleEraserTabButtonIndicator; @@ -2139,7 +2139,7 @@ namespace Ink_Canvas { #line hidden - #line 4044 "..\..\..\MainWindow.xaml" + #line 4381 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BoardRectangleEraserTabButtonText; @@ -2147,7 +2147,7 @@ namespace Ink_Canvas { #line hidden - #line 4132 "..\..\..\MainWindow.xaml" + #line 4469 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardEraserByStrokes; @@ -2155,7 +2155,7 @@ namespace Ink_Canvas { #line hidden - #line 4145 "..\..\..\MainWindow.xaml" + #line 4482 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardGeometry; @@ -2163,7 +2163,7 @@ namespace Ink_Canvas { #line hidden - #line 4171 "..\..\..\MainWindow.xaml" + #line 4508 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderDrawShape; @@ -2171,7 +2171,7 @@ namespace Ink_Canvas { #line hidden - #line 4197 "..\..\..\MainWindow.xaml" + #line 4534 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchDrawShapeBorderAutoHide; @@ -2179,7 +2179,7 @@ namespace Ink_Canvas { #line hidden - #line 4206 "..\..\..\MainWindow.xaml" + #line 4543 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawLine; @@ -2187,7 +2187,7 @@ namespace Ink_Canvas { #line hidden - #line 4210 "..\..\..\MainWindow.xaml" + #line 4547 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawDashedLine; @@ -2195,7 +2195,7 @@ namespace Ink_Canvas { #line hidden - #line 4214 "..\..\..\MainWindow.xaml" + #line 4551 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawDotLine; @@ -2203,7 +2203,7 @@ namespace Ink_Canvas { #line hidden - #line 4218 "..\..\..\MainWindow.xaml" + #line 4555 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawArrow; @@ -2211,7 +2211,7 @@ namespace Ink_Canvas { #line hidden - #line 4222 "..\..\..\MainWindow.xaml" + #line 4559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ImageDrawParallelLine; @@ -2219,7 +2219,7 @@ namespace Ink_Canvas { #line hidden - #line 4318 "..\..\..\MainWindow.xaml" + #line 4655 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardUndo; @@ -2227,7 +2227,7 @@ namespace Ink_Canvas { #line hidden - #line 4343 "..\..\..\MainWindow.xaml" + #line 4680 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardRedo; @@ -2235,7 +2235,7 @@ namespace Ink_Canvas { #line hidden - #line 4406 "..\..\..\MainWindow.xaml" + #line 4743 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderTools; @@ -2243,7 +2243,7 @@ namespace Ink_Canvas { #line hidden - #line 4454 "..\..\..\MainWindow.xaml" + #line 4791 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel RandomDrawPanel; @@ -2251,7 +2251,7 @@ namespace Ink_Canvas { #line hidden - #line 4474 "..\..\..\MainWindow.xaml" + #line 4811 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SingleDrawPanel; @@ -2259,7 +2259,7 @@ namespace Ink_Canvas { #line hidden - #line 4656 "..\..\..\MainWindow.xaml" + #line 4993 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBlackboardRightSide; @@ -2267,7 +2267,7 @@ namespace Ink_Canvas { #line hidden - #line 4658 "..\..\..\MainWindow.xaml" + #line 4995 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid BlackboardRightSide; @@ -2275,7 +2275,7 @@ namespace Ink_Canvas { #line hidden - #line 4699 "..\..\..\MainWindow.xaml" + #line 5036 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnRightWhiteBoardSwitchPreviousGeometry; @@ -2283,7 +2283,7 @@ namespace Ink_Canvas { #line hidden - #line 4708 "..\..\..\MainWindow.xaml" + #line 5045 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnRightWhiteBoardSwitchPreviousLabel; @@ -2291,7 +2291,7 @@ namespace Ink_Canvas { #line hidden - #line 4712 "..\..\..\MainWindow.xaml" + #line 5049 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BtnRightPageListWB; @@ -2299,7 +2299,7 @@ namespace Ink_Canvas { #line hidden - #line 4725 "..\..\..\MainWindow.xaml" + #line 5062 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BoardBorderRightPageListView; @@ -2307,7 +2307,7 @@ namespace Ink_Canvas { #line hidden - #line 4730 "..\..\..\MainWindow.xaml" + #line 5067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx BlackBoardRightSidePageListScrollViewer; @@ -2315,7 +2315,7 @@ namespace Ink_Canvas { #line hidden - #line 4737 "..\..\..\MainWindow.xaml" + #line 5074 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ListView BlackBoardRightSidePageListView; @@ -2323,7 +2323,7 @@ namespace Ink_Canvas { #line hidden - #line 4787 "..\..\..\MainWindow.xaml" + #line 5124 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing BtnRightWhiteBoardSwitchNextGeometry; @@ -2331,7 +2331,7 @@ namespace Ink_Canvas { #line hidden - #line 4796 "..\..\..\MainWindow.xaml" + #line 5133 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock BtnRightWhiteBoardSwitchNextLabel; @@ -2339,7 +2339,7 @@ namespace Ink_Canvas { #line hidden - #line 4810 "..\..\..\MainWindow.xaml" + #line 5147 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardAdd; @@ -2347,7 +2347,7 @@ namespace Ink_Canvas { #line hidden - #line 4816 "..\..\..\MainWindow.xaml" + #line 5153 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardSwitchPrevious; @@ -2355,7 +2355,7 @@ namespace Ink_Canvas { #line hidden - #line 4846 "..\..\..\MainWindow.xaml" + #line 5183 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockWhiteBoardIndexInfo; @@ -2363,7 +2363,7 @@ namespace Ink_Canvas { #line hidden - #line 4853 "..\..\..\MainWindow.xaml" + #line 5190 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardSwitchNext; @@ -2371,7 +2371,7 @@ namespace Ink_Canvas { #line hidden - #line 4882 "..\..\..\MainWindow.xaml" + #line 5219 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnWhiteBoardDelete; @@ -2379,7 +2379,7 @@ namespace Ink_Canvas { #line hidden - #line 4895 "..\..\..\MainWindow.xaml" + #line 5232 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridNotifications; @@ -2387,7 +2387,7 @@ namespace Ink_Canvas { #line hidden - #line 4899 "..\..\..\MainWindow.xaml" + #line 5236 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TextBlockNotice; @@ -2395,7 +2395,7 @@ namespace Ink_Canvas { #line hidden - #line 4904 "..\..\..\MainWindow.xaml" + #line 5241 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewBoxStackPanelMain; @@ -2403,7 +2403,7 @@ namespace Ink_Canvas { #line hidden - #line 4906 "..\..\..\MainWindow.xaml" + #line 5243 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelMain; @@ -2411,7 +2411,7 @@ namespace Ink_Canvas { #line hidden - #line 4907 "..\..\..\MainWindow.xaml" + #line 5244 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelControl; @@ -2419,7 +2419,7 @@ namespace Ink_Canvas { #line hidden - #line 4908 "..\..\..\MainWindow.xaml" + #line 5245 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnExit; @@ -2427,7 +2427,7 @@ namespace Ink_Canvas { #line hidden - #line 4912 "..\..\..\MainWindow.xaml" + #line 5249 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnThickness; @@ -2435,7 +2435,7 @@ namespace Ink_Canvas { #line hidden - #line 4917 "..\..\..\MainWindow.xaml" + #line 5254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitchTheme; @@ -2443,7 +2443,7 @@ namespace Ink_Canvas { #line hidden - #line 4923 "..\..\..\MainWindow.xaml" + #line 5260 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitch; @@ -2451,7 +2451,7 @@ namespace Ink_Canvas { #line hidden - #line 4927 "..\..\..\MainWindow.xaml" + #line 5264 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnHideInkCanvas; @@ -2459,7 +2459,7 @@ namespace Ink_Canvas { #line hidden - #line 4931 "..\..\..\MainWindow.xaml" + #line 5268 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnCheckPPT; @@ -2467,7 +2467,7 @@ namespace Ink_Canvas { #line hidden - #line 4935 "..\..\..\MainWindow.xaml" + #line 5272 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelPPTButtons; @@ -2475,7 +2475,7 @@ namespace Ink_Canvas { #line hidden - #line 4936 "..\..\..\MainWindow.xaml" + #line 5273 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlideShow; @@ -2483,7 +2483,7 @@ namespace Ink_Canvas { #line hidden - #line 4942 "..\..\..\MainWindow.xaml" + #line 5279 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlideShowEnd; @@ -2491,7 +2491,7 @@ namespace Ink_Canvas { #line hidden - #line 4948 "..\..\..\MainWindow.xaml" + #line 5285 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelPPTControls; @@ -2499,7 +2499,7 @@ namespace Ink_Canvas { #line hidden - #line 4949 "..\..\..\MainWindow.xaml" + #line 5286 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlidesUp; @@ -2507,7 +2507,7 @@ namespace Ink_Canvas { #line hidden - #line 4954 "..\..\..\MainWindow.xaml" + #line 5291 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnPPTSlidesDown; @@ -2515,7 +2515,7 @@ namespace Ink_Canvas { #line hidden - #line 4961 "..\..\..\MainWindow.xaml" + #line 5298 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnSwitchSide; @@ -2523,7 +2523,7 @@ namespace Ink_Canvas { #line hidden - #line 4966 "..\..\..\MainWindow.xaml" + #line 5303 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnHideControl; @@ -2531,7 +2531,7 @@ namespace Ink_Canvas { #line hidden - #line 4972 "..\..\..\MainWindow.xaml" + #line 5309 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewBoxStackPanelShapes; @@ -2539,7 +2539,7 @@ namespace Ink_Canvas { #line hidden - #line 4974 "..\..\..\MainWindow.xaml" + #line 5311 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel StackPanelShapes; @@ -2547,7 +2547,7 @@ namespace Ink_Canvas { #line hidden - #line 4975 "..\..\..\MainWindow.xaml" + #line 5312 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnFingerDragMode; @@ -2555,7 +2555,7 @@ namespace Ink_Canvas { #line hidden - #line 4995 "..\..\..\MainWindow.xaml" + #line 5332 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnUndo; @@ -2563,7 +2563,7 @@ namespace Ink_Canvas { #line hidden - #line 5005 "..\..\..\MainWindow.xaml" + #line 5342 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnRedo; @@ -2571,7 +2571,7 @@ namespace Ink_Canvas { #line hidden - #line 5015 "..\..\..\MainWindow.xaml" + #line 5352 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Button BtnClearAndHideCanvas; @@ -2579,7 +2579,7 @@ namespace Ink_Canvas { #line hidden - #line 5021 "..\..\..\MainWindow.xaml" + #line 5358 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridForLeftSideReservedSpace; @@ -2587,7 +2587,7 @@ namespace Ink_Canvas { #line hidden - #line 5029 "..\..\..\MainWindow.xaml" + #line 5366 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftBottomPanelForPPTNavigation; @@ -2595,7 +2595,7 @@ namespace Ink_Canvas { #line hidden - #line 5031 "..\..\..\MainWindow.xaml" + #line 5368 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnLBBorder; @@ -2603,7 +2603,7 @@ namespace Ink_Canvas { #line hidden - #line 5035 "..\..\..\MainWindow.xaml" + #line 5372 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPreviousButtonBorder; @@ -2611,7 +2611,7 @@ namespace Ink_Canvas { #line hidden - #line 5040 "..\..\..\MainWindow.xaml" + #line 5377 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPreviousButtonFeedbackBorder; @@ -2619,7 +2619,7 @@ namespace Ink_Canvas { #line hidden - #line 5048 "..\..\..\MainWindow.xaml" + #line 5385 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLBPreviousButtonGeometry; @@ -2627,7 +2627,7 @@ namespace Ink_Canvas { #line hidden - #line 5057 "..\..\..\MainWindow.xaml" + #line 5394 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPageButton; @@ -2635,7 +2635,7 @@ namespace Ink_Canvas { #line hidden - #line 5062 "..\..\..\MainWindow.xaml" + #line 5399 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBPageButtonFeedbackBorder; @@ -2643,7 +2643,7 @@ namespace Ink_Canvas { #line hidden - #line 5078 "..\..\..\MainWindow.xaml" + #line 5415 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBNextButtonBorder; @@ -2651,7 +2651,7 @@ namespace Ink_Canvas { #line hidden - #line 5080 "..\..\..\MainWindow.xaml" + #line 5417 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLBNextButtonFeedbackBorder; @@ -2659,7 +2659,7 @@ namespace Ink_Canvas { #line hidden - #line 5089 "..\..\..\MainWindow.xaml" + #line 5426 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLBNextButtonGeometry; @@ -2667,7 +2667,7 @@ namespace Ink_Canvas { #line hidden - #line 5101 "..\..\..\MainWindow.xaml" + #line 5438 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightBottomPanelForPPTNavigation; @@ -2675,7 +2675,7 @@ namespace Ink_Canvas { #line hidden - #line 5103 "..\..\..\MainWindow.xaml" + #line 5440 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnRBBorder; @@ -2683,7 +2683,7 @@ namespace Ink_Canvas { #line hidden - #line 5107 "..\..\..\MainWindow.xaml" + #line 5444 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPreviousButtonBorder; @@ -2691,7 +2691,7 @@ namespace Ink_Canvas { #line hidden - #line 5112 "..\..\..\MainWindow.xaml" + #line 5449 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPreviousButtonFeedbackBorder; @@ -2699,7 +2699,7 @@ namespace Ink_Canvas { #line hidden - #line 5120 "..\..\..\MainWindow.xaml" + #line 5457 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRBPreviousButtonGeometry; @@ -2707,7 +2707,7 @@ namespace Ink_Canvas { #line hidden - #line 5129 "..\..\..\MainWindow.xaml" + #line 5466 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPageButton; @@ -2715,7 +2715,7 @@ namespace Ink_Canvas { #line hidden - #line 5134 "..\..\..\MainWindow.xaml" + #line 5471 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBPageButtonFeedbackBorder; @@ -2723,7 +2723,7 @@ namespace Ink_Canvas { #line hidden - #line 5150 "..\..\..\MainWindow.xaml" + #line 5487 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBNextButtonBorder; @@ -2731,7 +2731,7 @@ namespace Ink_Canvas { #line hidden - #line 5152 "..\..\..\MainWindow.xaml" + #line 5489 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRBNextButtonFeedbackBorder; @@ -2739,7 +2739,7 @@ namespace Ink_Canvas { #line hidden - #line 5161 "..\..\..\MainWindow.xaml" + #line 5498 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRBNextButtonGeometry; @@ -2747,7 +2747,7 @@ namespace Ink_Canvas { #line hidden - #line 5177 "..\..\..\MainWindow.xaml" + #line 5514 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftSidePanelForPPTNavigation; @@ -2755,7 +2755,7 @@ namespace Ink_Canvas { #line hidden - #line 5179 "..\..\..\MainWindow.xaml" + #line 5516 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnLSBorder; @@ -2763,7 +2763,7 @@ namespace Ink_Canvas { #line hidden - #line 5183 "..\..\..\MainWindow.xaml" + #line 5520 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPreviousButtonBorder; @@ -2771,7 +2771,7 @@ namespace Ink_Canvas { #line hidden - #line 5187 "..\..\..\MainWindow.xaml" + #line 5524 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPreviousButtonFeedbackBorder; @@ -2779,7 +2779,7 @@ namespace Ink_Canvas { #line hidden - #line 5194 "..\..\..\MainWindow.xaml" + #line 5531 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLSPreviousButtonGeometry; @@ -2787,7 +2787,7 @@ namespace Ink_Canvas { #line hidden - #line 5203 "..\..\..\MainWindow.xaml" + #line 5540 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPageButton; @@ -2795,7 +2795,7 @@ namespace Ink_Canvas { #line hidden - #line 5208 "..\..\..\MainWindow.xaml" + #line 5545 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSPageButtonFeedbackBorder; @@ -2803,7 +2803,7 @@ namespace Ink_Canvas { #line hidden - #line 5213 "..\..\..\MainWindow.xaml" + #line 5550 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PPTBtnPageNow; @@ -2811,7 +2811,7 @@ namespace Ink_Canvas { #line hidden - #line 5215 "..\..\..\MainWindow.xaml" + #line 5552 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PPTBtnPageTotal; @@ -2819,7 +2819,7 @@ namespace Ink_Canvas { #line hidden - #line 5222 "..\..\..\MainWindow.xaml" + #line 5559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSNextButtonBorder; @@ -2827,7 +2827,7 @@ namespace Ink_Canvas { #line hidden - #line 5224 "..\..\..\MainWindow.xaml" + #line 5561 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTLSNextButtonFeedbackBorder; @@ -2835,7 +2835,7 @@ namespace Ink_Canvas { #line hidden - #line 5231 "..\..\..\MainWindow.xaml" + #line 5568 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTLSNextButtonGeometry; @@ -2843,7 +2843,7 @@ namespace Ink_Canvas { #line hidden - #line 5243 "..\..\..\MainWindow.xaml" + #line 5580 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightSidePanelForPPTNavigation; @@ -2851,7 +2851,7 @@ namespace Ink_Canvas { #line hidden - #line 5245 "..\..\..\MainWindow.xaml" + #line 5582 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTBtnRSBorder; @@ -2859,7 +2859,7 @@ namespace Ink_Canvas { #line hidden - #line 5249 "..\..\..\MainWindow.xaml" + #line 5586 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPreviousButtonBorder; @@ -2867,7 +2867,7 @@ namespace Ink_Canvas { #line hidden - #line 5253 "..\..\..\MainWindow.xaml" + #line 5590 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPreviousButtonFeedbackBorder; @@ -2875,7 +2875,7 @@ namespace Ink_Canvas { #line hidden - #line 5260 "..\..\..\MainWindow.xaml" + #line 5597 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRSPreviousButtonGeometry; @@ -2883,7 +2883,7 @@ namespace Ink_Canvas { #line hidden - #line 5269 "..\..\..\MainWindow.xaml" + #line 5606 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPageButton; @@ -2891,7 +2891,7 @@ namespace Ink_Canvas { #line hidden - #line 5274 "..\..\..\MainWindow.xaml" + #line 5611 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSPageButtonFeedbackBorder; @@ -2899,7 +2899,7 @@ namespace Ink_Canvas { #line hidden - #line 5288 "..\..\..\MainWindow.xaml" + #line 5625 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSNextButtonBorder; @@ -2907,7 +2907,7 @@ namespace Ink_Canvas { #line hidden - #line 5290 "..\..\..\MainWindow.xaml" + #line 5627 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PPTRSNextButtonFeedbackBorder; @@ -2915,7 +2915,7 @@ namespace Ink_Canvas { #line hidden - #line 5297 "..\..\..\MainWindow.xaml" + #line 5634 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PPTRSNextButtonGeometry; @@ -2923,7 +2923,7 @@ namespace Ink_Canvas { #line hidden - #line 5310 "..\..\..\MainWindow.xaml" + #line 5647 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid FloatingbarUIForInkReplay; @@ -2931,7 +2931,7 @@ namespace Ink_Canvas { #line hidden - #line 5311 "..\..\..\MainWindow.xaml" + #line 5648 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxFloatingBar; @@ -2939,7 +2939,7 @@ namespace Ink_Canvas { #line hidden - #line 5315 "..\..\..\MainWindow.xaml" + #line 5652 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.ScaleTransform ViewboxFloatingBarScaleTransform; @@ -2947,7 +2947,7 @@ namespace Ink_Canvas { #line hidden - #line 5318 "..\..\..\MainWindow.xaml" + #line 5655 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarMoveControls; @@ -2955,7 +2955,7 @@ namespace Ink_Canvas { #line hidden - #line 5323 "..\..\..\MainWindow.xaml" + #line 5660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image FloatingbarHeadIconImg; @@ -2963,7 +2963,7 @@ namespace Ink_Canvas { #line hidden - #line 5327 "..\..\..\MainWindow.xaml" + #line 5664 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarMainControls; @@ -2971,7 +2971,7 @@ namespace Ink_Canvas { #line hidden - #line 5331 "..\..\..\MainWindow.xaml" + #line 5668 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Canvas FloatingbarSelectionBGCanvas; @@ -2979,7 +2979,7 @@ namespace Ink_Canvas { #line hidden - #line 5332 "..\..\..\MainWindow.xaml" + #line 5669 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border FloatingbarSelectionBG; @@ -2987,7 +2987,7 @@ namespace Ink_Canvas { #line hidden - #line 5340 "..\..\..\MainWindow.xaml" + #line 5677 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel StackPanelFloatingBar; @@ -2995,7 +2995,7 @@ namespace Ink_Canvas { #line hidden - #line 5342 "..\..\..\MainWindow.xaml" + #line 5679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Cursor_Icon; @@ -3003,7 +3003,7 @@ namespace Ink_Canvas { #line hidden - #line 5349 "..\..\..\MainWindow.xaml" + #line 5686 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image CursorToolbarIconImage; @@ -3011,7 +3011,7 @@ namespace Ink_Canvas { #line hidden - #line 5354 "..\..\..\MainWindow.xaml" + #line 5691 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing CursorIconGeometry; @@ -3019,7 +3019,7 @@ namespace Ink_Canvas { #line hidden - #line 5360 "..\..\..\MainWindow.xaml" + #line 5697 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock SelectionToolBarTextBlock; @@ -3027,7 +3027,7 @@ namespace Ink_Canvas { #line hidden - #line 5364 "..\..\..\MainWindow.xaml" + #line 5701 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Pen_Icon; @@ -3035,7 +3035,7 @@ namespace Ink_Canvas { #line hidden - #line 5370 "..\..\..\MainWindow.xaml" + #line 5707 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image PenIcon; @@ -3043,7 +3043,7 @@ namespace Ink_Canvas { #line hidden - #line 5376 "..\..\..\MainWindow.xaml" + #line 5713 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing PenIconGeometry; @@ -3051,7 +3051,7 @@ namespace Ink_Canvas { #line hidden - #line 5383 "..\..\..\MainWindow.xaml" + #line 5720 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock PenToolbarTextBlock; @@ -3059,7 +3059,7 @@ namespace Ink_Canvas { #line hidden - #line 5386 "..\..\..\MainWindow.xaml" + #line 5723 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconDelete; @@ -3067,7 +3067,7 @@ namespace Ink_Canvas { #line hidden - #line 5397 "..\..\..\MainWindow.xaml" + #line 5734 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing ClearIconGeometry; @@ -3075,7 +3075,7 @@ namespace Ink_Canvas { #line hidden - #line 5404 "..\..\..\MainWindow.xaml" + #line 5741 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock TrashBinToolbarTextBlock; @@ -3083,7 +3083,7 @@ namespace Ink_Canvas { #line hidden - #line 5407 "..\..\..\MainWindow.xaml" + #line 5744 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel StackPanelCanvasControls; @@ -3091,7 +3091,7 @@ namespace Ink_Canvas { #line hidden - #line 5412 "..\..\..\MainWindow.xaml" + #line 5749 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border PenPalette; @@ -3099,7 +3099,7 @@ namespace Ink_Canvas { #line hidden - #line 5425 "..\..\..\MainWindow.xaml" + #line 5762 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border DefaultPenTabButton; @@ -3107,7 +3107,7 @@ namespace Ink_Canvas { #line hidden - #line 5431 "..\..\..\MainWindow.xaml" + #line 5768 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel DefaultPenTabButtonIndicator; @@ -3115,7 +3115,7 @@ namespace Ink_Canvas { #line hidden - #line 5451 "..\..\..\MainWindow.xaml" + #line 5788 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock DefaultPenTabButtonText; @@ -3123,7 +3123,7 @@ namespace Ink_Canvas { #line hidden - #line 5460 "..\..\..\MainWindow.xaml" + #line 5797 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlightPenTabButton; @@ -3131,7 +3131,7 @@ namespace Ink_Canvas { #line hidden - #line 5466 "..\..\..\MainWindow.xaml" + #line 5803 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel HighlightPenTabButtonIndicator; @@ -3139,7 +3139,7 @@ namespace Ink_Canvas { #line hidden - #line 5484 "..\..\..\MainWindow.xaml" + #line 5821 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock HighlightPenTabButtonText; @@ -3147,7 +3147,7 @@ namespace Ink_Canvas { #line hidden - #line 5503 "..\..\..\MainWindow.xaml" + #line 5840 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox DefaultPenPropsPanel; @@ -3155,7 +3155,7 @@ namespace Ink_Canvas { #line hidden - #line 5515 "..\..\..\MainWindow.xaml" + #line 5852 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxPenStyle; @@ -3163,7 +3163,7 @@ namespace Ink_Canvas { #line hidden - #line 5530 "..\..\..\MainWindow.xaml" + #line 5867 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel NibModeSimpleStackPanel; @@ -3171,7 +3171,7 @@ namespace Ink_Canvas { #line hidden - #line 5535 "..\..\..\MainWindow.xaml" + #line 5872 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableNibMode; @@ -3179,7 +3179,7 @@ namespace Ink_Canvas { #line hidden - #line 5562 "..\..\..\MainWindow.xaml" + #line 5899 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider InkWidthSlider; @@ -3187,7 +3187,7 @@ namespace Ink_Canvas { #line hidden - #line 5578 "..\..\..\MainWindow.xaml" + #line 5915 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider InkAlphaSlider; @@ -3195,7 +3195,7 @@ namespace Ink_Canvas { #line hidden - #line 5592 "..\..\..\MainWindow.xaml" + #line 5929 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenPropsPanel; @@ -3203,7 +3203,7 @@ namespace Ink_Canvas { #line hidden - #line 5600 "..\..\..\MainWindow.xaml" + #line 5937 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Slider HighlighterWidthSlider; @@ -3211,7 +3211,7 @@ namespace Ink_Canvas { #line hidden - #line 5613 "..\..\..\MainWindow.xaml" + #line 5950 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox DefaultPenColorsPanel; @@ -3219,7 +3219,7 @@ namespace Ink_Canvas { #line hidden - #line 5631 "..\..\..\MainWindow.xaml" + #line 5968 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image ColorThemeSwitchIcon; @@ -3227,7 +3227,7 @@ namespace Ink_Canvas { #line hidden - #line 5638 "..\..\..\MainWindow.xaml" + #line 5975 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ColorThemeSwitchTextBlock; @@ -3235,7 +3235,7 @@ namespace Ink_Canvas { #line hidden - #line 5645 "..\..\..\MainWindow.xaml" + #line 5982 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorBlack; @@ -3243,7 +3243,7 @@ namespace Ink_Canvas { #line hidden - #line 5652 "..\..\..\MainWindow.xaml" + #line 5989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorBlackContent; @@ -3251,7 +3251,7 @@ namespace Ink_Canvas { #line hidden - #line 5662 "..\..\..\MainWindow.xaml" + #line 5999 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorWhite; @@ -3259,7 +3259,7 @@ namespace Ink_Canvas { #line hidden - #line 5670 "..\..\..\MainWindow.xaml" + #line 6007 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorWhiteContent; @@ -3267,7 +3267,7 @@ namespace Ink_Canvas { #line hidden - #line 5680 "..\..\..\MainWindow.xaml" + #line 6017 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorRed; @@ -3275,7 +3275,7 @@ namespace Ink_Canvas { #line hidden - #line 5687 "..\..\..\MainWindow.xaml" + #line 6024 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorRedContent; @@ -3283,7 +3283,7 @@ namespace Ink_Canvas { #line hidden - #line 5697 "..\..\..\MainWindow.xaml" + #line 6034 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorYellow; @@ -3291,7 +3291,7 @@ namespace Ink_Canvas { #line hidden - #line 5705 "..\..\..\MainWindow.xaml" + #line 6042 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorYellowContent; @@ -3299,7 +3299,7 @@ namespace Ink_Canvas { #line hidden - #line 5722 "..\..\..\MainWindow.xaml" + #line 6059 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorGreen; @@ -3307,7 +3307,7 @@ namespace Ink_Canvas { #line hidden - #line 5730 "..\..\..\MainWindow.xaml" + #line 6067 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorGreenContent; @@ -3315,7 +3315,7 @@ namespace Ink_Canvas { #line hidden - #line 5740 "..\..\..\MainWindow.xaml" + #line 6077 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorBlue; @@ -3323,7 +3323,7 @@ namespace Ink_Canvas { #line hidden - #line 5747 "..\..\..\MainWindow.xaml" + #line 6084 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorBlueContent; @@ -3331,7 +3331,7 @@ namespace Ink_Canvas { #line hidden - #line 5757 "..\..\..\MainWindow.xaml" + #line 6094 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorPink; @@ -3339,7 +3339,7 @@ namespace Ink_Canvas { #line hidden - #line 5764 "..\..\..\MainWindow.xaml" + #line 6101 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorPinkContent; @@ -3347,7 +3347,7 @@ namespace Ink_Canvas { #line hidden - #line 5774 "..\..\..\MainWindow.xaml" + #line 6111 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorTeal; @@ -3355,7 +3355,7 @@ namespace Ink_Canvas { #line hidden - #line 5781 "..\..\..\MainWindow.xaml" + #line 6118 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorTealContent; @@ -3363,7 +3363,7 @@ namespace Ink_Canvas { #line hidden - #line 5791 "..\..\..\MainWindow.xaml" + #line 6128 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderPenColorOrange; @@ -3371,7 +3371,7 @@ namespace Ink_Canvas { #line hidden - #line 5799 "..\..\..\MainWindow.xaml" + #line 6136 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox ViewboxBtnColorOrangeContent; @@ -3379,7 +3379,7 @@ namespace Ink_Canvas { #line hidden - #line 5815 "..\..\..\MainWindow.xaml" + #line 6152 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenColorsPanel; @@ -3387,7 +3387,7 @@ namespace Ink_Canvas { #line hidden - #line 5826 "..\..\..\MainWindow.xaml" + #line 6163 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorBlack; @@ -3395,7 +3395,7 @@ namespace Ink_Canvas { #line hidden - #line 5847 "..\..\..\MainWindow.xaml" + #line 6184 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorBlackContent; @@ -3403,7 +3403,7 @@ namespace Ink_Canvas { #line hidden - #line 5860 "..\..\..\MainWindow.xaml" + #line 6197 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorWhite; @@ -3411,7 +3411,7 @@ namespace Ink_Canvas { #line hidden - #line 5883 "..\..\..\MainWindow.xaml" + #line 6220 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorWhiteContent; @@ -3419,7 +3419,7 @@ namespace Ink_Canvas { #line hidden - #line 5896 "..\..\..\MainWindow.xaml" + #line 6233 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorRed; @@ -3427,7 +3427,7 @@ namespace Ink_Canvas { #line hidden - #line 5917 "..\..\..\MainWindow.xaml" + #line 6254 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorRedContent; @@ -3435,7 +3435,7 @@ namespace Ink_Canvas { #line hidden - #line 5930 "..\..\..\MainWindow.xaml" + #line 6267 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorYellow; @@ -3443,7 +3443,7 @@ namespace Ink_Canvas { #line hidden - #line 5951 "..\..\..\MainWindow.xaml" + #line 6288 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorYellowContent; @@ -3451,7 +3451,7 @@ namespace Ink_Canvas { #line hidden - #line 5964 "..\..\..\MainWindow.xaml" + #line 6301 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorGreen; @@ -3459,7 +3459,7 @@ namespace Ink_Canvas { #line hidden - #line 5985 "..\..\..\MainWindow.xaml" + #line 6322 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorGreenContent; @@ -3467,7 +3467,7 @@ namespace Ink_Canvas { #line hidden - #line 6004 "..\..\..\MainWindow.xaml" + #line 6341 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorZinc; @@ -3475,7 +3475,7 @@ namespace Ink_Canvas { #line hidden - #line 6025 "..\..\..\MainWindow.xaml" + #line 6362 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorZincContent; @@ -3483,7 +3483,7 @@ namespace Ink_Canvas { #line hidden - #line 6038 "..\..\..\MainWindow.xaml" + #line 6375 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorBlue; @@ -3491,7 +3491,7 @@ namespace Ink_Canvas { #line hidden - #line 6059 "..\..\..\MainWindow.xaml" + #line 6396 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorBlueContent; @@ -3499,7 +3499,7 @@ namespace Ink_Canvas { #line hidden - #line 6073 "..\..\..\MainWindow.xaml" + #line 6410 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenPenColorPurple; @@ -3507,7 +3507,7 @@ namespace Ink_Canvas { #line hidden - #line 6094 "..\..\..\MainWindow.xaml" + #line 6431 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorPurpleContent; @@ -3515,7 +3515,7 @@ namespace Ink_Canvas { #line hidden - #line 6107 "..\..\..\MainWindow.xaml" + #line 6444 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorTeal; @@ -3523,7 +3523,7 @@ namespace Ink_Canvas { #line hidden - #line 6128 "..\..\..\MainWindow.xaml" + #line 6465 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorTealContent; @@ -3531,7 +3531,7 @@ namespace Ink_Canvas { #line hidden - #line 6141 "..\..\..\MainWindow.xaml" + #line 6478 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border HighlighterPenColorOrange; @@ -3539,7 +3539,7 @@ namespace Ink_Canvas { #line hidden - #line 6162 "..\..\..\MainWindow.xaml" + #line 6499 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox HighlighterPenViewboxBtnColorOrangeContent; @@ -3547,7 +3547,7 @@ namespace Ink_Canvas { #line hidden - #line 6186 "..\..\..\MainWindow.xaml" + #line 6523 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Eraser_Icon; @@ -3555,7 +3555,7 @@ namespace Ink_Canvas { #line hidden - #line 6192 "..\..\..\MainWindow.xaml" + #line 6529 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image CircleEraserToolbarIconImage; @@ -3563,7 +3563,7 @@ namespace Ink_Canvas { #line hidden - #line 6199 "..\..\..\MainWindow.xaml" + #line 6536 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing CircleEraserIconGeometry; @@ -3571,7 +3571,7 @@ namespace Ink_Canvas { #line hidden - #line 6206 "..\..\..\MainWindow.xaml" + #line 6543 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock CircleEraserToolbarTextBlock; @@ -3579,7 +3579,7 @@ namespace Ink_Canvas { #line hidden - #line 6209 "..\..\..\MainWindow.xaml" + #line 6546 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel EraserByStrokes_Icon; @@ -3587,7 +3587,7 @@ namespace Ink_Canvas { #line hidden - #line 6215 "..\..\..\MainWindow.xaml" + #line 6552 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image StrokeEraserToolbarIconImage; @@ -3595,7 +3595,7 @@ namespace Ink_Canvas { #line hidden - #line 6222 "..\..\..\MainWindow.xaml" + #line 6559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing StrokeEraserIconGeometry; @@ -3603,7 +3603,7 @@ namespace Ink_Canvas { #line hidden - #line 6229 "..\..\..\MainWindow.xaml" + #line 6566 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkEraserToolbarTextBlock; @@ -3611,7 +3611,7 @@ namespace Ink_Canvas { #line hidden - #line 6232 "..\..\..\MainWindow.xaml" + #line 6569 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconSelect; @@ -3619,7 +3619,7 @@ namespace Ink_Canvas { #line hidden - #line 6238 "..\..\..\MainWindow.xaml" + #line 6575 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image LassoSelect; @@ -3627,7 +3627,7 @@ namespace Ink_Canvas { #line hidden - #line 6244 "..\..\..\MainWindow.xaml" + #line 6581 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing LassoSelectIconGeometry; @@ -3635,7 +3635,7 @@ namespace Ink_Canvas { #line hidden - #line 6251 "..\..\..\MainWindow.xaml" + #line 6588 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock LassoToolToolbarTextBlock; @@ -3643,7 +3643,7 @@ namespace Ink_Canvas { #line hidden - #line 6255 "..\..\..\MainWindow.xaml" + #line 6592 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel ShapeDrawFloatingBarBtn; @@ -3651,7 +3651,7 @@ namespace Ink_Canvas { #line hidden - #line 6267 "..\..\..\MainWindow.xaml" + #line 6604 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing ShapesIconGeometry; @@ -3659,7 +3659,7 @@ namespace Ink_Canvas { #line hidden - #line 6275 "..\..\..\MainWindow.xaml" + #line 6612 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ShapesToolbarTextBlock; @@ -3667,7 +3667,7 @@ namespace Ink_Canvas { #line hidden - #line 6280 "..\..\..\MainWindow.xaml" + #line 6617 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderDrawShape; @@ -3675,7 +3675,7 @@ namespace Ink_Canvas { #line hidden - #line 6304 "..\..\..\MainWindow.xaml" + #line 6641 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawLine; @@ -3683,7 +3683,7 @@ namespace Ink_Canvas { #line hidden - #line 6313 "..\..\..\MainWindow.xaml" + #line 6650 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawDashedLine; @@ -3691,7 +3691,7 @@ namespace Ink_Canvas { #line hidden - #line 6323 "..\..\..\MainWindow.xaml" + #line 6660 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawDotLine; @@ -3699,7 +3699,7 @@ namespace Ink_Canvas { #line hidden - #line 6333 "..\..\..\MainWindow.xaml" + #line 6670 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawArrow; @@ -3707,7 +3707,7 @@ namespace Ink_Canvas { #line hidden - #line 6342 "..\..\..\MainWindow.xaml" + #line 6679 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel BoardImageDrawParallelLine; @@ -3715,7 +3715,7 @@ namespace Ink_Canvas { #line hidden - #line 6519 "..\..\..\MainWindow.xaml" + #line 6856 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconUndo; @@ -3723,7 +3723,7 @@ namespace Ink_Canvas { #line hidden - #line 6534 "..\..\..\MainWindow.xaml" + #line 6871 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing UndoIconGeometry; @@ -3731,7 +3731,7 @@ namespace Ink_Canvas { #line hidden - #line 6541 "..\..\..\MainWindow.xaml" + #line 6878 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock UndoToolbarTextBlock; @@ -3739,7 +3739,7 @@ namespace Ink_Canvas { #line hidden - #line 6547 "..\..\..\MainWindow.xaml" + #line 6884 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel SymbolIconRedo; @@ -3747,7 +3747,7 @@ namespace Ink_Canvas { #line hidden - #line 6562 "..\..\..\MainWindow.xaml" + #line 6899 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Media.GeometryDrawing RedoIconGeometry; @@ -3755,7 +3755,7 @@ namespace Ink_Canvas { #line hidden - #line 6569 "..\..\..\MainWindow.xaml" + #line 6906 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock RedoToolbarTextBlock; @@ -3763,7 +3763,7 @@ namespace Ink_Canvas { #line hidden - #line 6575 "..\..\..\MainWindow.xaml" + #line 6912 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel CursorWithDelFloatingBarBtn; @@ -3771,7 +3771,7 @@ namespace Ink_Canvas { #line hidden - #line 6594 "..\..\..\MainWindow.xaml" + #line 6931 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ClearAndMouseToolbarTextBlock; @@ -3779,7 +3779,7 @@ namespace Ink_Canvas { #line hidden - #line 6599 "..\..\..\MainWindow.xaml" + #line 6936 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border EraserSizePanel; @@ -3787,7 +3787,7 @@ namespace Ink_Canvas { #line hidden - #line 6619 "..\..\..\MainWindow.xaml" + #line 6956 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox ComboBoxEraserSizeFloatingBar; @@ -3795,7 +3795,7 @@ namespace Ink_Canvas { #line hidden - #line 6636 "..\..\..\MainWindow.xaml" + #line 6973 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border CircleEraserTabButton; @@ -3803,7 +3803,7 @@ namespace Ink_Canvas { #line hidden - #line 6639 "..\..\..\MainWindow.xaml" + #line 6976 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel CircleEraserTabButtonIndicator; @@ -3811,7 +3811,7 @@ namespace Ink_Canvas { #line hidden - #line 6652 "..\..\..\MainWindow.xaml" + #line 6989 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock CircleEraserTabButtonText; @@ -3819,7 +3819,7 @@ namespace Ink_Canvas { #line hidden - #line 6661 "..\..\..\MainWindow.xaml" + #line 6998 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border RectangleEraserTabButton; @@ -3827,7 +3827,7 @@ namespace Ink_Canvas { #line hidden - #line 6666 "..\..\..\MainWindow.xaml" + #line 7003 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel RectangleEraserTabButtonIndicator; @@ -3835,7 +3835,7 @@ namespace Ink_Canvas { #line hidden - #line 6677 "..\..\..\MainWindow.xaml" + #line 7014 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock RectangleEraserTabButtonText; @@ -3843,7 +3843,7 @@ namespace Ink_Canvas { #line hidden - #line 6694 "..\..\..\MainWindow.xaml" + #line 7031 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel WhiteboardFloatingBarBtn; @@ -3851,7 +3851,7 @@ namespace Ink_Canvas { #line hidden - #line 6713 "..\..\..\MainWindow.xaml" + #line 7050 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock WhiteboardToolbarTextBlock; @@ -3859,7 +3859,7 @@ namespace Ink_Canvas { #line hidden - #line 6717 "..\..\..\MainWindow.xaml" + #line 7054 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel ToolsFloatingBarBtn; @@ -3867,7 +3867,7 @@ namespace Ink_Canvas { #line hidden - #line 6736 "..\..\..\MainWindow.xaml" + #line 7073 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock ToolsToolbarTextBlock; @@ -3875,7 +3875,7 @@ namespace Ink_Canvas { #line hidden - #line 6741 "..\..\..\MainWindow.xaml" + #line 7078 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel Fold_Icon; @@ -3883,7 +3883,7 @@ namespace Ink_Canvas { #line hidden - #line 6760 "..\..\..\MainWindow.xaml" + #line 7097 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock HideToolbarTextBlock; @@ -3891,7 +3891,7 @@ namespace Ink_Canvas { #line hidden - #line 6765 "..\..\..\MainWindow.xaml" + #line 7102 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderTools; @@ -3899,7 +3899,7 @@ namespace Ink_Canvas { #line hidden - #line 6987 "..\..\..\MainWindow.xaml" + #line 7324 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border EnableTwoFingerGestureBorder; @@ -3907,7 +3907,7 @@ namespace Ink_Canvas { #line hidden - #line 6994 "..\..\..\MainWindow.xaml" + #line 7331 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image EnableTwoFingerGestureBtn; @@ -3915,7 +3915,7 @@ namespace Ink_Canvas { #line hidden - #line 6997 "..\..\..\MainWindow.xaml" + #line 7334 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock gestureiconText; @@ -3923,7 +3923,7 @@ namespace Ink_Canvas { #line hidden - #line 7003 "..\..\..\MainWindow.xaml" + #line 7340 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border TwoFingerGestureBorder; @@ -3931,7 +3931,7 @@ namespace Ink_Canvas { #line hidden - #line 7022 "..\..\..\MainWindow.xaml" + #line 7359 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableMultiTouchMode; @@ -3939,7 +3939,7 @@ namespace Ink_Canvas { #line hidden - #line 7038 "..\..\..\MainWindow.xaml" + #line 7375 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel TwoFingerGestureSimpleStackPanel; @@ -3947,7 +3947,7 @@ namespace Ink_Canvas { #line hidden - #line 7046 "..\..\..\MainWindow.xaml" + #line 7383 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerTranslate; @@ -3955,7 +3955,7 @@ namespace Ink_Canvas { #line hidden - #line 7073 "..\..\..\MainWindow.xaml" + #line 7410 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerZoom; @@ -3963,7 +3963,7 @@ namespace Ink_Canvas { #line hidden - #line 7098 "..\..\..\MainWindow.xaml" + #line 7435 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal iNKORE.UI.WPF.Modern.Controls.ToggleSwitch ToggleSwitchEnableTwoFingerRotation; @@ -3971,7 +3971,7 @@ namespace Ink_Canvas { #line hidden - #line 7117 "..\..\..\MainWindow.xaml" + #line 7454 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderFloatingBarExitPPTBtn; @@ -3979,7 +3979,7 @@ namespace Ink_Canvas { #line hidden - #line 7136 "..\..\..\MainWindow.xaml" + #line 7473 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid GridForFloatingBarDraging; @@ -3987,7 +3987,7 @@ namespace Ink_Canvas { #line hidden - #line 7140 "..\..\..\MainWindow.xaml" + #line 7477 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.InkCanvas InkCanvasForInkReplay; @@ -3995,7 +3995,7 @@ namespace Ink_Canvas { #line hidden - #line 7142 "..\..\..\MainWindow.xaml" + #line 7479 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border BorderInkReplayToolBox; @@ -4003,7 +4003,7 @@ namespace Ink_Canvas { #line hidden - #line 7164 "..\..\..\MainWindow.xaml" + #line 7501 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkReplayPanelStatusText; @@ -4011,7 +4011,7 @@ namespace Ink_Canvas { #line hidden - #line 7169 "..\..\..\MainWindow.xaml" + #line 7506 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayPlayPauseBorder; @@ -4019,7 +4019,7 @@ namespace Ink_Canvas { #line hidden - #line 7172 "..\..\..\MainWindow.xaml" + #line 7509 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image InkReplayPlayButtonImage; @@ -4027,7 +4027,7 @@ namespace Ink_Canvas { #line hidden - #line 7190 "..\..\..\MainWindow.xaml" + #line 7527 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image InkReplayPauseButtonImage; @@ -4035,7 +4035,7 @@ namespace Ink_Canvas { #line hidden - #line 7222 "..\..\..\MainWindow.xaml" + #line 7559 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayStopButtonBorder; @@ -4043,7 +4043,7 @@ namespace Ink_Canvas { #line hidden - #line 7245 "..\..\..\MainWindow.xaml" + #line 7582 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplayReplayButtonBorder; @@ -4051,7 +4051,7 @@ namespace Ink_Canvas { #line hidden - #line 7265 "..\..\..\MainWindow.xaml" + #line 7602 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Border InkReplaySpeedButtonBorder; @@ -4059,7 +4059,7 @@ namespace Ink_Canvas { #line hidden - #line 7287 "..\..\..\MainWindow.xaml" + #line 7624 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock InkReplaySpeedTextBlock; @@ -4067,7 +4067,7 @@ namespace Ink_Canvas { #line hidden - #line 7298 "..\..\..\MainWindow.xaml" + #line 7635 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftSidePanel; @@ -4075,7 +4075,7 @@ namespace Ink_Canvas { #line hidden - #line 7302 "..\..\..\MainWindow.xaml" + #line 7639 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image LeftUnFoldBtnImgChevron; @@ -4083,7 +4083,7 @@ namespace Ink_Canvas { #line hidden - #line 7308 "..\..\..\MainWindow.xaml" + #line 7645 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox LeftUnFoldButtonQuickPanel; @@ -4091,7 +4091,7 @@ namespace Ink_Canvas { #line hidden - #line 7363 "..\..\..\MainWindow.xaml" + #line 7700 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightSidePanel; @@ -4099,7 +4099,7 @@ namespace Ink_Canvas { #line hidden - #line 7368 "..\..\..\MainWindow.xaml" + #line 7705 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Image RightUnFoldBtnImgChevron; @@ -4107,7 +4107,7 @@ namespace Ink_Canvas { #line hidden - #line 7381 "..\..\..\MainWindow.xaml" + #line 7718 "..\..\..\MainWindow.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Viewbox RightUnFoldButtonQuickPanel; @@ -4203,13 +4203,13 @@ namespace Ink_Canvas { return; case 2: - #line 82 "..\..\..\MainWindow.xaml" + #line 145 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 82 "..\..\..\MainWindow.xaml" + #line 145 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyExit); #line default @@ -4217,13 +4217,13 @@ namespace Ink_Canvas { return; case 3: - #line 83 "..\..\..\MainWindow.xaml" + #line 146 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 84 "..\..\..\MainWindow.xaml" + #line 147 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Undo); #line default @@ -4231,13 +4231,13 @@ namespace Ink_Canvas { return; case 4: - #line 85 "..\..\..\MainWindow.xaml" + #line 148 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 86 "..\..\..\MainWindow.xaml" + #line 149 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Redo); #line default @@ -4245,13 +4245,13 @@ namespace Ink_Canvas { return; case 5: - #line 87 "..\..\..\MainWindow.xaml" + #line 150 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 88 "..\..\..\MainWindow.xaml" + #line 151 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.HotKey_Clear); #line default @@ -4259,13 +4259,13 @@ namespace Ink_Canvas { return; case 6: - #line 89 "..\..\..\MainWindow.xaml" + #line 152 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 90 "..\..\..\MainWindow.xaml" + #line 153 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToDrawTool); #line default @@ -4273,13 +4273,13 @@ namespace Ink_Canvas { return; case 7: - #line 91 "..\..\..\MainWindow.xaml" + #line 154 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 92 "..\..\..\MainWindow.xaml" + #line 155 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToQuitDrawTool); #line default @@ -4287,13 +4287,13 @@ namespace Ink_Canvas { return; case 8: - #line 93 "..\..\..\MainWindow.xaml" + #line 156 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 94 "..\..\..\MainWindow.xaml" + #line 157 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToSelect); #line default @@ -4301,13 +4301,13 @@ namespace Ink_Canvas { return; case 9: - #line 95 "..\..\..\MainWindow.xaml" + #line 158 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 96 "..\..\..\MainWindow.xaml" + #line 159 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToEraser); #line default @@ -4315,13 +4315,13 @@ namespace Ink_Canvas { return; case 10: - #line 97 "..\..\..\MainWindow.xaml" + #line 160 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 98 "..\..\..\MainWindow.xaml" + #line 161 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyChangeToBoard); #line default @@ -4329,13 +4329,13 @@ namespace Ink_Canvas { return; case 11: - #line 99 "..\..\..\MainWindow.xaml" + #line 162 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 100 "..\..\..\MainWindow.xaml" + #line 163 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyCapture); #line default @@ -4343,13 +4343,13 @@ namespace Ink_Canvas { return; case 12: - #line 101 "..\..\..\MainWindow.xaml" + #line 164 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 102 "..\..\..\MainWindow.xaml" + #line 165 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyHide); #line default @@ -4357,13 +4357,13 @@ namespace Ink_Canvas { return; case 13: - #line 103 "..\..\..\MainWindow.xaml" + #line 166 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden - #line 104 "..\..\..\MainWindow.xaml" + #line 167 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.KeyDrawLine); #line default @@ -4375,7 +4375,7 @@ namespace Ink_Canvas { case 15: this.BorderSettingsMask = ((System.Windows.Controls.Grid)(target)); - #line 110 "..\..\..\MainWindow.xaml" + #line 173 "..\..\..\MainWindow.xaml" this.BorderSettingsMask.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SettingsOverlayClick); #line default @@ -4385,5049 +4385,5161 @@ namespace Ink_Canvas { this.BorderSettings = ((System.Windows.Controls.Border)(target)); return; case 17: - this.SettingsPanelScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - #line 117 "..\..\..\MainWindow.xaml" - this.SettingsPanelScrollViewer.ManipulationBoundaryFeedback += new System.EventHandler(this.SCManipulationBoundaryFeedback); + #line 202 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavStartup_Click); #line default #line hidden return; case 18: - #line 131 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); + #line 217 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavCanvas_Click); #line default #line hidden return; case 19: - #line 160 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); + #line 232 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavGesture_Click); #line default #line hidden return; case 20: - #line 192 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); + #line 247 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavInkRecognition_Click); #line default #line hidden return; case 21: - #line 234 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); + #line 262 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavCrashAction_Click); #line default #line hidden return; case 22: - #line 263 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); + #line 277 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavPPT_Click); #line default #line hidden return; case 23: - this.ToggleSwitchIsAutoUpdate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 307 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsAutoUpdate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdate_Toggled); + #line 292 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAdvanced_Click); #line default #line hidden return; case 24: - this.ToggleSwitchIsAutoUpdateWithSilence = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 311 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsAutoUpdateWithSilence.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdateWithSilence_Toggled); + #line 307 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAutomation_Click); #line default #line hidden return; case 25: - this.AutoUpdateTimePeriodBlock = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 322 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavRandomWindow_Click); + + #line default + #line hidden return; case 26: - this.AutoUpdateWithSilenceStartTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 329 "..\..\..\MainWindow.xaml" - this.AutoUpdateWithSilenceStartTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceStartTimeComboBox_SelectionChanged); + #line 337 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavTheme_Click); #line default #line hidden return; case 27: - this.AutoUpdateWithSilenceEndTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 337 "..\..\..\MainWindow.xaml" - this.AutoUpdateWithSilenceEndTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceEndTimeComboBox_SelectionChanged); + #line 352 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavShortcuts_Click); #line default #line hidden return; case 28: - this.ToggleSwitchRunAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 352 "..\..\..\MainWindow.xaml" - this.ToggleSwitchRunAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchRunAtStartup_Toggled); + #line 367 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavAbout_Click); #line default #line hidden return; case 29: - this.ToggleSwitchFoldAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 359 "..\..\..\MainWindow.xaml" - this.ToggleSwitchFoldAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFoldAtStartup_Toggled); + #line 388 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CollapseNavSidebar_Click); #line default #line hidden return; case 30: - this.ToggleSwitchShowCursor = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 378 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowCursor.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCursor_Toggled); + #line 418 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ShowNavSidebar_Click); #line default #line hidden return; case 31: - this.ToggleSwitchEnablePressureTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.SettingsPanelScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - #line 385 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnablePressureTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePressureTouchMode_Toggled); + #line 468 "..\..\..\MainWindow.xaml" + this.SettingsPanelScrollViewer.ManipulationBoundaryFeedback += new System.EventHandler(this.SCManipulationBoundaryFeedback); #line default #line hidden return; case 32: - this.ToggleSwitchDisablePressure = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 393 "..\..\..\MainWindow.xaml" - this.ToggleSwitchDisablePressure.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisablePressure_Toggled); + #line 482 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); #line default #line hidden return; case 33: - this.ComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 402 "..\..\..\MainWindow.xaml" - this.ComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSize_SelectionChanged); + #line 511 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); #line default #line hidden return; case 34: - this.ToggleSwitchHideStrokeWhenSelecting = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 419 "..\..\..\MainWindow.xaml" - this.ToggleSwitchHideStrokeWhenSelecting.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchHideStrokeWhenSelecting_Toggled); + #line 543 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); #line default #line hidden return; case 35: - this.ToggleSwitchClearCanvasAndClearTimeMachine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 429 "..\..\..\MainWindow.xaml" - this.ToggleSwitchClearCanvasAndClearTimeMachine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchClearCanvasAndClearTimeMachine_Toggled); + #line 585 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRestart_Click); #line default #line hidden return; case 36: - this.ComboBoxHyperbolaAsymptoteOption = ((System.Windows.Controls.ComboBox)(target)); - #line 438 "..\..\..\MainWindow.xaml" - this.ComboBoxHyperbolaAsymptoteOption.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxHyperbolaAsymptoteOption_SelectionChanged); + #line 614 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnResetToSuggestion_Click); #line default #line hidden return; case 37: - this.ToggleSwitchFitToCurve = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsAutoUpdate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 451 "..\..\..\MainWindow.xaml" - this.ToggleSwitchFitToCurve.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFitToCurve_Toggled); + #line 658 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsAutoUpdate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdate_Toggled); #line default #line hidden return; case 38: - this.RadioCrashSilentRestart = ((System.Windows.Controls.RadioButton)(target)); + this.ToggleSwitchIsAutoUpdateWithSilence = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 466 "..\..\..\MainWindow.xaml" - this.RadioCrashSilentRestart.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); + #line 662 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsAutoUpdateWithSilence.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsAutoUpdateWithSilence_Toggled); #line default #line hidden return; case 39: - this.RadioCrashNoAction = ((System.Windows.Controls.RadioButton)(target)); - - #line 469 "..\..\..\MainWindow.xaml" - this.RadioCrashNoAction.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); - - #line default - #line hidden + this.AutoUpdateTimePeriodBlock = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 40: - this.ToggleSwitchAutoSwitchTwoFingerGesture = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.AutoUpdateWithSilenceStartTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 486 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSwitchTwoFingerGesture.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSwitchTwoFingerGesture_Toggled); + #line 680 "..\..\..\MainWindow.xaml" + this.AutoUpdateWithSilenceStartTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceStartTimeComboBox_SelectionChanged); #line default #line hidden return; case 41: - this.ToggleSwitchEnableTwoFingerRotationOnSelection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.AutoUpdateWithSilenceEndTimeComboBox = ((System.Windows.Controls.ComboBox)(target)); - #line 498 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerRotationOnSelection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + #line 688 "..\..\..\MainWindow.xaml" + this.AutoUpdateWithSilenceEndTimeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoUpdateWithSilenceEndTimeComboBox_SelectionChanged); #line default #line hidden return; case 42: - this.GroupBoxInkRecognition = ((System.Windows.Controls.GroupBox)(target)); + this.ToggleSwitchRunAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 703 "..\..\..\MainWindow.xaml" + this.ToggleSwitchRunAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchRunAtStartup_Toggled); + + #line default + #line hidden return; case 43: - this.ToggleSwitchEnableInkToShape = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchFoldAtStartup = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 515 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShape.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + #line 710 "..\..\..\MainWindow.xaml" + this.ToggleSwitchFoldAtStartup.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFoldAtStartup_Toggled); #line default #line hidden return; case 44: - this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchShowCursor = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 526 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle_Toggled); + #line 729 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowCursor.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCursor_Toggled); #line default #line hidden return; case 45: - this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnablePressureTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 535 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle_Toggled); + #line 736 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnablePressureTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePressureTouchMode_Toggled); #line default #line hidden return; case 46: - this.ToggleCheckboxEnableInkToShapeTriangle = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchDisablePressure = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 541 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeTriangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); - - #line default - #line hidden - - #line 542 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeTriangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); + #line 744 "..\..\..\MainWindow.xaml" + this.ToggleSwitchDisablePressure.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisablePressure_Toggled); #line default #line hidden return; case 47: - this.ToggleCheckboxEnableInkToShapeRectangle = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 552 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRectangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); - - #line default - #line hidden - - #line 553 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRectangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); + #line 753 "..\..\..\MainWindow.xaml" + this.ComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSize_SelectionChanged); #line default #line hidden return; case 48: - this.ToggleCheckboxEnableInkToShapeRounded = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchHideStrokeWhenSelecting = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 563 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRounded.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); - - #line default - #line hidden - - #line 564 "..\..\..\MainWindow.xaml" - this.ToggleCheckboxEnableInkToShapeRounded.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); + #line 770 "..\..\..\MainWindow.xaml" + this.ToggleSwitchHideStrokeWhenSelecting.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchHideStrokeWhenSelecting_Toggled); #line default #line hidden return; case 49: - this.ToggleSwitchAutoStraightenLine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchClearCanvasAndClearTimeMachine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 580 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoStraightenLine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoStraightenLine_Toggled); + #line 780 "..\..\..\MainWindow.xaml" + this.ToggleSwitchClearCanvasAndClearTimeMachine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchClearCanvasAndClearTimeMachine_Toggled); #line default #line hidden return; case 50: - this.AutoStraightenLineThresholdSlider = ((System.Windows.Controls.Slider)(target)); + this.ComboBoxHyperbolaAsymptoteOption = ((System.Windows.Controls.ComboBox)(target)); - #line 588 "..\..\..\MainWindow.xaml" - this.AutoStraightenLineThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.AutoStraightenLineThresholdSlider_ValueChanged); + #line 789 "..\..\..\MainWindow.xaml" + this.ComboBoxHyperbolaAsymptoteOption.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxHyperbolaAsymptoteOption_SelectionChanged); #line default #line hidden return; case 51: - this.ToggleSwitchLineEndpointSnapping = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchFitToCurve = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 600 "..\..\..\MainWindow.xaml" - this.ToggleSwitchLineEndpointSnapping.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchLineEndpointSnapping_Toggled); + #line 802 "..\..\..\MainWindow.xaml" + this.ToggleSwitchFitToCurve.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchFitToCurve_Toggled); #line default #line hidden return; case 52: - this.LineEndpointSnappingThresholdSlider = ((System.Windows.Controls.Slider)(target)); + this.RadioCrashSilentRestart = ((System.Windows.Controls.RadioButton)(target)); - #line 608 "..\..\..\MainWindow.xaml" - this.LineEndpointSnappingThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.LineEndpointSnappingThresholdSlider_ValueChanged); + #line 817 "..\..\..\MainWindow.xaml" + this.RadioCrashSilentRestart.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); #line default #line hidden return; case 53: - this.GroupBoxAppearanceNewUI = ((System.Windows.Controls.GroupBox)(target)); + this.RadioCrashNoAction = ((System.Windows.Controls.RadioButton)(target)); + + #line 820 "..\..\..\MainWindow.xaml" + this.RadioCrashNoAction.Checked += new System.Windows.RoutedEventHandler(this.RadioCrashAction_Checked); + + #line default + #line hidden return; case 54: - this.ComboBoxFloatingBarImg = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleSwitchAutoSwitchTwoFingerGesture = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 626 "..\..\..\MainWindow.xaml" - this.ComboBoxFloatingBarImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxFloatingBarImg_SelectionChanged); + #line 837 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSwitchTwoFingerGesture.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSwitchTwoFingerGesture_Toggled); #line default #line hidden return; case 55: - this.ViewboxFloatingBarScaleTransformValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchEnableTwoFingerRotationOnSelection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 644 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarScaleTransformValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarScaleTransformValueSlider_ValueChanged); + #line 849 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerRotationOnSelection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); #line default #line hidden return; case 56: - this.ViewboxFloatingBarOpacityValueSlider = ((System.Windows.Controls.Slider)(target)); - - #line 657 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarOpacityValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityValueSlider_ValueChanged); - - #line default - #line hidden + this.GroupBoxInkRecognition = ((System.Windows.Controls.GroupBox)(target)); return; case 57: - this.ViewboxFloatingBarOpacityInPPTValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchEnableInkToShape = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 670 "..\..\..\MainWindow.xaml" - this.ViewboxFloatingBarOpacityInPPTValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityInPPTValueSlider_ValueChanged); + #line 866 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShape.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); #line default #line hidden return; case 58: - this.ToggleSwitchEnableDisPlayNibModeToggle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 686 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableDisPlayNibModeToggle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableDisPlayNibModeToggle_Toggled); + #line 877 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureRectangle_Toggled); #line default #line hidden return; case 59: - this.ToggleSwitchEnableViewboxBlackBoardScaleTransform = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 701 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableViewboxBlackBoardScaleTransform.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableViewboxBlackBoardScaleTransform_Toggled); + #line 886 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShapeNoFakePressureTriangle_Toggled); #line default #line hidden return; case 60: - this.ToggleSwitchEnableTimeDisplayInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleCheckboxEnableInkToShapeTriangle = ((System.Windows.Controls.CheckBox)(target)); - #line 709 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTimeDisplayInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTimeDisplayInWhiteboardMode_Toggled); + #line 892 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeTriangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); + + #line default + #line hidden + + #line 893 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeTriangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeTriangle_CheckedChanged); #line default #line hidden return; case 61: - this.ToggleSwitchEnableChickenSoupInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleCheckboxEnableInkToShapeRectangle = ((System.Windows.Controls.CheckBox)(target)); - #line 718 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableChickenSoupInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableChickenSoupInWhiteboardMode_Toggled); + #line 903 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRectangle.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); + + #line default + #line hidden + + #line 904 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRectangle.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRectangle_CheckedChanged); #line default #line hidden return; case 62: - this.ComboBoxChickenSoupSource = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleCheckboxEnableInkToShapeRounded = ((System.Windows.Controls.CheckBox)(target)); - #line 725 "..\..\..\MainWindow.xaml" - this.ComboBoxChickenSoupSource.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxChickenSoupSource_SelectionChanged); + #line 914 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRounded.Checked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); + + #line default + #line hidden + + #line 915 "..\..\..\MainWindow.xaml" + this.ToggleCheckboxEnableInkToShapeRounded.Unchecked += new System.Windows.RoutedEventHandler(this.ToggleCheckboxEnableInkToShapeRounded_CheckedChanged); #line default #line hidden return; case 63: - this.ToggleSwitchEnableQuickPanel = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoStraightenLine = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 738 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableQuickPanel.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableQuickPanel_Toggled); + #line 931 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoStraightenLine.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoStraightenLine_Toggled); #line default #line hidden return; case 64: - this.ComboBoxUnFoldBtnImg = ((System.Windows.Controls.ComboBox)(target)); + this.AutoStraightenLineThresholdSlider = ((System.Windows.Controls.Slider)(target)); - #line 745 "..\..\..\MainWindow.xaml" - this.ComboBoxUnFoldBtnImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxUnFoldBtnImg_SelectionChanged); + #line 939 "..\..\..\MainWindow.xaml" + this.AutoStraightenLineThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.AutoStraightenLineThresholdSlider_ValueChanged); #line default #line hidden return; case 65: - this.ICCTrayIconExampleImage = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchLineEndpointSnapping = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 951 "..\..\..\MainWindow.xaml" + this.ToggleSwitchLineEndpointSnapping.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchLineEndpointSnapping_Toggled); + + #line default + #line hidden return; case 66: - this.ToggleSwitchEnableTrayIcon = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.LineEndpointSnappingThresholdSlider = ((System.Windows.Controls.Slider)(target)); - #line 792 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTrayIcon.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTrayIcon_Toggled); + #line 959 "..\..\..\MainWindow.xaml" + this.LineEndpointSnappingThresholdSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.LineEndpointSnappingThresholdSlider_ValueChanged); #line default #line hidden return; case 67: - this.ToggleSwitchSupportPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 811 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSupportPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportPowerPoint_Toggled); - - #line default - #line hidden + this.GroupBoxAppearanceNewUI = ((System.Windows.Controls.GroupBox)(target)); return; case 68: - this.ToggleSwitchSupportWPS = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ComboBoxFloatingBarImg = ((System.Windows.Controls.ComboBox)(target)); - #line 820 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSupportWPS.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportWPS_Toggled); + #line 977 "..\..\..\MainWindow.xaml" + this.ComboBoxFloatingBarImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxFloatingBarImg_SelectionChanged); #line default #line hidden return; case 69: - this.PPTBtnPreviewLS = ((System.Windows.Controls.Image)(target)); + this.ViewboxFloatingBarScaleTransformValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 995 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarScaleTransformValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarScaleTransformValueSlider_ValueChanged); + + #line default + #line hidden return; case 70: - this.PPTBtnPreviewLSTransform = ((System.Windows.Media.TranslateTransform)(target)); + this.ViewboxFloatingBarOpacityValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1008 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarOpacityValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityValueSlider_ValueChanged); + + #line default + #line hidden return; case 71: - this.PPTBtnPreviewRS = ((System.Windows.Controls.Image)(target)); + this.ViewboxFloatingBarOpacityInPPTValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1021 "..\..\..\MainWindow.xaml" + this.ViewboxFloatingBarOpacityInPPTValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.ViewboxFloatingBarOpacityInPPTValueSlider_ValueChanged); + + #line default + #line hidden return; case 72: - this.PPTBtnPreviewRSTransform = ((System.Windows.Media.TranslateTransform)(target)); + this.ToggleSwitchEnableDisPlayNibModeToggle = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1037 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableDisPlayNibModeToggle.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableDisPlayNibModeToggle_Toggled); + + #line default + #line hidden return; case 73: - this.PPTBtnPreviewLB = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableViewboxBlackBoardScaleTransform = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1052 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableViewboxBlackBoardScaleTransform.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableViewboxBlackBoardScaleTransform_Toggled); + + #line default + #line hidden return; case 74: - this.PPTBtnPreviewRB = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableTimeDisplayInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 1060 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTimeDisplayInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTimeDisplayInWhiteboardMode_Toggled); + + #line default + #line hidden return; case 75: - this.ToggleSwitchShowPPTButton = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableChickenSoupInWhiteboardMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 882 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowPPTButton.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowPPTButton_OnToggled); + #line 1069 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableChickenSoupInWhiteboardMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableChickenSoupInWhiteboardMode_Toggled); #line default #line hidden return; case 76: - this.PPTButtonSettingsPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 77: - this.CheckboxEnableLBPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxChickenSoupSource = ((System.Windows.Controls.ComboBox)(target)); - #line 889 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); + #line 1076 "..\..\..\MainWindow.xaml" + this.ComboBoxChickenSoupSource.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxChickenSoupSource_SelectionChanged); #line default #line hidden + return; + case 77: + this.ToggleSwitchEnableQuickPanel = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 890 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); + #line 1089 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableQuickPanel.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableQuickPanel_Toggled); #line default #line hidden return; case 78: - this.CheckboxEnableRBPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ComboBoxUnFoldBtnImg = ((System.Windows.Controls.ComboBox)(target)); - #line 894 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 895 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); + #line 1096 "..\..\..\MainWindow.xaml" + this.ComboBoxUnFoldBtnImg.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxUnFoldBtnImg_SelectionChanged); #line default #line hidden return; case 79: - this.CheckboxEnableLSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - - #line 899 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 900 "..\..\..\MainWindow.xaml" - this.CheckboxEnableLSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); - - #line default - #line hidden + this.ICCTrayIconExampleImage = ((System.Windows.Controls.Image)(target)); return; case 80: - this.CheckboxEnableRSPPTButton = ((System.Windows.Controls.CheckBox)(target)); + this.ToggleSwitchEnableTrayIcon = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 904 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); - - #line default - #line hidden - - #line 905 "..\..\..\MainWindow.xaml" - this.CheckboxEnableRSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); + #line 1143 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTrayIcon.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTrayIcon_Toggled); #line default #line hidden return; case 81: - this.PPTButtonLeftPositionValueSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchSupportPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 917 "..\..\..\MainWindow.xaml" - this.PPTButtonLeftPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonLeftPositionValueSlider_ValueChanged); + #line 1162 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSupportPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportPowerPoint_Toggled); #line default #line hidden return; case 82: - this.PPTBtnLSPlusBtn = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchSupportWPS = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 919 "..\..\..\MainWindow.xaml" - this.PPTBtnLSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSPlusBtn_Clicked); + #line 1171 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSupportWPS.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSupportWPS_Toggled); #line default #line hidden return; case 83: - this.PPTBtnLSMinusBtn = ((System.Windows.Controls.Button)(target)); - - #line 934 "..\..\..\MainWindow.xaml" - this.PPTBtnLSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSMinusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLS = ((System.Windows.Controls.Image)(target)); return; case 84: - this.PPTBtnLSSyncBtn = ((System.Windows.Controls.Button)(target)); - - #line 949 "..\..\..\MainWindow.xaml" - this.PPTBtnLSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSSyncBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLSTransform = ((System.Windows.Media.TranslateTransform)(target)); return; case 85: - this.PPTBtnLSResetBtn = ((System.Windows.Controls.Button)(target)); - - #line 964 "..\..\..\MainWindow.xaml" - this.PPTBtnLSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSResetBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewRS = ((System.Windows.Controls.Image)(target)); return; case 86: - this.PPTButtonRightPositionValueSlider = ((System.Windows.Controls.Slider)(target)); - - #line 991 "..\..\..\MainWindow.xaml" - this.PPTButtonRightPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonRightPositionValueSlider_ValueChanged); - - #line default - #line hidden + this.PPTBtnPreviewRSTransform = ((System.Windows.Media.TranslateTransform)(target)); return; case 87: - this.PPTBtnRSPlusBtn = ((System.Windows.Controls.Button)(target)); - - #line 993 "..\..\..\MainWindow.xaml" - this.PPTBtnRSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSPlusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewLB = ((System.Windows.Controls.Image)(target)); return; case 88: - this.PPTBtnRSMinusBtn = ((System.Windows.Controls.Button)(target)); - - #line 1008 "..\..\..\MainWindow.xaml" - this.PPTBtnRSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSMinusBtn_Clicked); - - #line default - #line hidden + this.PPTBtnPreviewRB = ((System.Windows.Controls.Image)(target)); return; case 89: - this.PPTBtnRSSyncBtn = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchShowPPTButton = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1023 "..\..\..\MainWindow.xaml" - this.PPTBtnRSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSSyncBtn_Clicked); + #line 1233 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowPPTButton.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowPPTButton_OnToggled); #line default #line hidden return; case 90: - this.PPTBtnRSResetBtn = ((System.Windows.Controls.Button)(target)); - - #line 1038 "..\..\..\MainWindow.xaml" - this.PPTBtnRSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSResetBtn_Clicked); - - #line default - #line hidden + this.PPTButtonSettingsPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 91: - this.CheckboxSPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableLBPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1065 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + #line 1240 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); #line default #line hidden - #line 1066 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + #line 1241 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLBPPTButton_IsCheckChanged); #line default #line hidden return; case 92: - this.CheckboxSPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableRBPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1070 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + #line 1245 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRBPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); #line default #line hidden - #line 1071 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + #line 1246 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRBPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRBPPTButton_IsCheckChanged); #line default #line hidden return; case 93: - this.CheckboxSPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableLSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1077 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + #line 1250 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); #line default #line hidden - #line 1078 "..\..\..\MainWindow.xaml" - this.CheckboxSPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + #line 1251 "..\..\..\MainWindow.xaml" + this.CheckboxEnableLSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableLSPPTButton_IsCheckChanged); #line default #line hidden return; case 94: - this.CheckboxBPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); + this.CheckboxEnableRSPPTButton = ((System.Windows.Controls.CheckBox)(target)); - #line 1087 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + #line 1255 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRSPPTButton.Checked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); #line default #line hidden - #line 1088 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + #line 1256 "..\..\..\MainWindow.xaml" + this.CheckboxEnableRSPPTButton.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxEnableRSPPTButton_IsCheckChanged); #line default #line hidden return; case 95: - this.CheckboxBPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); + this.PPTButtonLeftPositionValueSlider = ((System.Windows.Controls.Slider)(target)); - #line 1092 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); - - #line default - #line hidden - - #line 1093 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); + #line 1268 "..\..\..\MainWindow.xaml" + this.PPTButtonLeftPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonLeftPositionValueSlider_ValueChanged); #line default #line hidden return; case 96: - this.CheckboxBPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); + this.PPTBtnLSPlusBtn = ((System.Windows.Controls.Button)(target)); - #line 1098 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); - - #line default - #line hidden - - #line 1099 "..\..\..\MainWindow.xaml" - this.CheckboxBPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); + #line 1270 "..\..\..\MainWindow.xaml" + this.PPTBtnLSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSPlusBtn_Clicked); #line default #line hidden return; case 97: - this.ToggleSwitchEnablePPTButtonPageClickable = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnLSMinusBtn = ((System.Windows.Controls.Button)(target)); - #line 1112 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnablePPTButtonPageClickable.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePPTButtonPageClickable_OnToggled); + #line 1285 "..\..\..\MainWindow.xaml" + this.PPTBtnLSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSMinusBtn_Clicked); #line default #line hidden return; case 98: - this.SettingsShowCanvasAtNewSlideShowStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.PPTBtnLSSyncBtn = ((System.Windows.Controls.Button)(target)); + + #line 1300 "..\..\..\MainWindow.xaml" + this.PPTBtnLSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSSyncBtn_Clicked); + + #line default + #line hidden return; case 99: - this.ToggleSwitchShowCanvasAtNewSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnLSResetBtn = ((System.Windows.Controls.Button)(target)); - #line 1127 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowCanvasAtNewSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCanvasAtNewSlideShow_Toggled); + #line 1315 "..\..\..\MainWindow.xaml" + this.PPTBtnLSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnLSResetBtn_Clicked); #line default #line hidden return; case 100: - this.SettingsPPTInkingAndAutoFoldExplictBorder = ((System.Windows.Controls.Border)(target)); + this.PPTButtonRightPositionValueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 1342 "..\..\..\MainWindow.xaml" + this.PPTButtonRightPositionValueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.PPTButtonRightPositionValueSlider_ValueChanged); + + #line default + #line hidden return; case 101: - this.ToggleSwitchEnableTwoFingerGestureInPresentationMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSPlusBtn = ((System.Windows.Controls.Button)(target)); - #line 1155 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerGestureInPresentationMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerGestureInPresentationMode_Toggled); + #line 1344 "..\..\..\MainWindow.xaml" + this.PPTBtnRSPlusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSPlusBtn_Clicked); #line default #line hidden return; case 102: - this.ToggleSwitchEnableFingerGestureSlideShowControl = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSMinusBtn = ((System.Windows.Controls.Button)(target)); - #line 1163 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableFingerGestureSlideShowControl.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableFingerGestureSlideShowControl_Toggled); + #line 1359 "..\..\..\MainWindow.xaml" + this.PPTBtnRSMinusBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSMinusBtn_Clicked); #line default #line hidden return; case 103: - this.ToggleSwitchAutoSaveScreenShotInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSSyncBtn = ((System.Windows.Controls.Button)(target)); - #line 1176 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveScreenShotInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveScreenShotInPowerPoint_Toggled); + #line 1374 "..\..\..\MainWindow.xaml" + this.PPTBtnRSSyncBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSSyncBtn_Clicked); #line default #line hidden return; case 104: - this.ToggleSwitchAutoSaveStrokesInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.PPTBtnRSResetBtn = ((System.Windows.Controls.Button)(target)); - #line 1186 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesInPowerPoint_Toggled); + #line 1389 "..\..\..\MainWindow.xaml" + this.PPTBtnRSResetBtn.Click += new System.Windows.RoutedEventHandler(this.PPTBtnRSResetBtn_Clicked); #line default #line hidden return; case 105: - this.ToggleSwitchNotifyPreviousPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); - #line 1198 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyPreviousPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyPreviousPage_Toggled); + #line 1416 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); + + #line default + #line hidden + + #line 1417 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTDisplayPage_IsCheckChange); #line default #line hidden return; case 106: - this.ToggleSwitchNotifyHiddenPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); - #line 1205 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyHiddenPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyHiddenPage_Toggled); + #line 1421 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); + + #line default + #line hidden + + #line 1422 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTHalfOpacity_IsCheckChange); #line default #line hidden return; case 107: - this.ToggleSwitchNotifyAutoPlayPresentation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxSPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); - #line 1213 "..\..\..\MainWindow.xaml" - this.ToggleSwitchNotifyAutoPlayPresentation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyAutoPlayPresentation_Toggled); + #line 1428 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); + + #line default + #line hidden + + #line 1429 "..\..\..\MainWindow.xaml" + this.CheckboxSPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxSPPTBlackBackground_IsCheckChange); #line default #line hidden return; case 108: - this.ToggleSwitchIsSpecialScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.CheckboxBPPTDisplayPage = ((System.Windows.Controls.CheckBox)(target)); - #line 1231 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsSpecialScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSpecialScreen_OnToggled); + #line 1438 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTDisplayPage.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); + + #line default + #line hidden + + #line 1439 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTDisplayPage.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTDisplayPage_IsCheckChange); #line default #line hidden return; case 109: - this.TouchMultiplierSlider = ((System.Windows.Controls.Slider)(target)); + this.CheckboxBPPTHalfOpacity = ((System.Windows.Controls.CheckBox)(target)); - #line 1243 "..\..\..\MainWindow.xaml" - this.TouchMultiplierSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.TouchMultiplierSlider_ValueChanged); + #line 1443 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTHalfOpacity.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); + + #line default + #line hidden + + #line 1444 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTHalfOpacity.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTHalfOpacity_IsCheckChange); #line default #line hidden return; case 110: + this.CheckboxBPPTBlackBackground = ((System.Windows.Controls.CheckBox)(target)); - #line 1258 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).TouchDown += new System.EventHandler(this.BorderCalculateMultiplier_TouchDown); + #line 1449 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTBlackBackground.Checked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); + + #line default + #line hidden + + #line 1450 "..\..\..\MainWindow.xaml" + this.CheckboxBPPTBlackBackground.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxBPPTBlackBackground_IsCheckChange); #line default #line hidden return; case 111: - this.TextBlockShowCalculatedMultiplier = ((System.Windows.Controls.TextBlock)(target)); - return; - case 112: - this.ToggleSwitchEraserBindTouchMultiplier = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnablePPTButtonPageClickable = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1269 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEraserBindTouchMultiplier.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEraserBindTouchMultiplier_Toggled); + #line 1463 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnablePPTButtonPageClickable.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnablePPTButtonPageClickable_OnToggled); #line default #line hidden return; + case 112: + this.SettingsShowCanvasAtNewSlideShowStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; case 113: - this.NibModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchShowCanvasAtNewSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1282 "..\..\..\MainWindow.xaml" - this.NibModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.NibModeBoundsWidthSlider_ValueChanged); + #line 1478 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowCanvasAtNewSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowCanvasAtNewSlideShow_Toggled); #line default #line hidden return; case 114: - this.FingerModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 1294 "..\..\..\MainWindow.xaml" - this.FingerModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.FingerModeBoundsWidthSlider_ValueChanged); - - #line default - #line hidden + this.SettingsPPTInkingAndAutoFoldExplictBorder = ((System.Windows.Controls.Border)(target)); return; case 115: - this.ToggleSwitchIsQuadIR = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableTwoFingerGestureInPresentationMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1304 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsQuadIR.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsQuadIR_Toggled); + #line 1506 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerGestureInPresentationMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerGestureInPresentationMode_Toggled); #line default #line hidden return; case 116: - this.ToggleSwitchIsLogEnabled = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEnableFingerGestureSlideShowControl = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1313 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsLogEnabled.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsLogEnabled_Toggled); + #line 1514 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableFingerGestureSlideShowControl.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableFingerGestureSlideShowControl_Toggled); #line default #line hidden return; case 117: - this.ToggleSwitchIsSecondConfimeWhenShutdownApp = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoSaveScreenShotInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1322 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsSecondConfimeWhenShutdownApp.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSecondConfimeWhenShutdownApp_Toggled); + #line 1527 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveScreenShotInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveScreenShotInPowerPoint_Toggled); #line default #line hidden return; case 118: - this.ToggleSwitchIsEnableFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoSaveStrokesInPowerPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1353 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableFullScreenHelper_Toggled); + #line 1537 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesInPowerPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesInPowerPoint_Toggled); #line default #line hidden return; case 119: - this.ToggleSwitchIsEnableAvoidFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyPreviousPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1386 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableAvoidFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableAvoidFullScreenHelper_OnToggled); + #line 1549 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyPreviousPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyPreviousPage_Toggled); #line default #line hidden return; case 120: - this.ToggleSwitchIsEnableEdgeGestureUtil = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyHiddenPage = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1418 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableEdgeGestureUtil.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableEdgeGestureUtil_Toggled); + #line 1556 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyHiddenPage.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyHiddenPage_Toggled); #line default #line hidden return; case 121: - this.ToggleSwitchIsEnableForceFullScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchNotifyAutoPlayPresentation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1455 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableForceFullScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableForceFullScreen_Toggled); + #line 1564 "..\..\..\MainWindow.xaml" + this.ToggleSwitchNotifyAutoPlayPresentation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchNotifyAutoPlayPresentation_Toggled); #line default #line hidden return; case 122: - this.ToggleSwitchIsEnableDPIChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsSpecialScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1487 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableDPIChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableDPIChangeDetection_Toggled); + #line 1582 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsSpecialScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSpecialScreen_OnToggled); #line default #line hidden return; case 123: - this.ToggleSwitchIsEnableResolutionChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.TouchMultiplierSlider = ((System.Windows.Controls.Slider)(target)); - #line 1519 "..\..\..\MainWindow.xaml" - this.ToggleSwitchIsEnableResolutionChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableResolutionChangeDetection_Toggled); + #line 1594 "..\..\..\MainWindow.xaml" + this.TouchMultiplierSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.TouchMultiplierSlider_ValueChanged); #line default #line hidden return; case 124: - this.ToggleSwitchAutoFoldInEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1559 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote_Toggled); + #line 1609 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).TouchDown += new System.EventHandler(this.BorderCalculateMultiplier_TouchDown); #line default #line hidden return; case 125: - this.ToggleSwitchAutoFoldInEasiCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 1572 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiCamera_Toggled); - - #line default - #line hidden + this.TextBlockShowCalculatedMultiplier = ((System.Windows.Controls.TextBlock)(target)); return; case 126: - this.ToggleSwitchAutoFoldInEasiNote3 = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchEraserBindTouchMultiplier = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1585 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote3.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3_Toggled); + #line 1620 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEraserBindTouchMultiplier.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEraserBindTouchMultiplier_Toggled); #line default #line hidden return; case 127: - this.ToggleSwitchAutoFoldInEasiNote3C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.NibModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 1598 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote3C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3C_Toggled); + #line 1633 "..\..\..\MainWindow.xaml" + this.NibModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.NibModeBoundsWidthSlider_ValueChanged); #line default #line hidden return; case 128: - this.ToggleSwitchAutoFoldInEasiNote5C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.FingerModeBoundsWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 1612 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNote5C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote5C_Toggled); + #line 1645 "..\..\..\MainWindow.xaml" + this.FingerModeBoundsWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.FingerModeBoundsWidthSlider_ValueChanged); #line default #line hidden return; case 129: - this.ToggleSwitchAutoFoldInSeewoPincoTeacher = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsQuadIR = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1626 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInSeewoPincoTeacher.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInSeewoPincoTeacher_Toggled); + #line 1655 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsQuadIR.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsQuadIR_Toggled); #line default #line hidden return; case 130: - this.ToggleSwitchAutoFoldInHiteTouchPro = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsLogEnabled = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1640 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteTouchPro.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteTouchPro_Toggled); + #line 1664 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsLogEnabled.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsLogEnabled_Toggled); #line default #line hidden return; case 131: - this.ToggleSwitchAutoFoldInHiteCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsSecondConfimeWhenShutdownApp = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1654 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteCamera_Toggled); + #line 1673 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsSecondConfimeWhenShutdownApp.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsSecondConfimeWhenShutdownApp_Toggled); #line default #line hidden return; case 132: - this.ToggleSwitchAutoFoldInHiteLightBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1668 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInHiteLightBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteLightBoard_Toggled); + #line 1704 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableFullScreenHelper_Toggled); #line default #line hidden return; case 133: - this.ToggleSwitchAutoFoldInWxBoardMain = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableAvoidFullScreenHelper = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1682 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInWxBoardMain.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInWxBoardMain_Toggled); + #line 1737 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableAvoidFullScreenHelper.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableAvoidFullScreenHelper_OnToggled); #line default #line hidden return; case 134: - this.ToggleSwitchAutoFoldInMSWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableEdgeGestureUtil = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1696 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInMSWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMSWhiteboard_Toggled); + #line 1769 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableEdgeGestureUtil.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableEdgeGestureUtil_Toggled); #line default #line hidden return; case 135: - this.ToggleSwitchAutoFoldInAdmoxWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableForceFullScreen = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1710 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInAdmoxWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxWhiteboard_Toggled); + #line 1806 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableForceFullScreen.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableForceFullScreen_Toggled); #line default #line hidden return; case 136: - this.ToggleSwitchAutoFoldInAdmoxBooth = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableDPIChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1724 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInAdmoxBooth.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxBooth_Toggled); + #line 1838 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableDPIChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableDPIChangeDetection_Toggled); #line default #line hidden return; case 137: - this.ToggleSwitchAutoFoldInQPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchIsEnableResolutionChangeDetection = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1738 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInQPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInQPoint_Toggled); + #line 1870 "..\..\..\MainWindow.xaml" + this.ToggleSwitchIsEnableResolutionChangeDetection.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchIsEnableResolutionChangeDetection_Toggled); #line default #line hidden return; case 138: - this.ToggleSwitchAutoFoldInYiYunVisualPresenter = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1752 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInYiYunVisualPresenter.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInYiYunVisualPresenter_Toggled); + #line 1910 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote_Toggled); #line default #line hidden return; case 139: - this.ToggleSwitchAutoFoldInMaxHubWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1767 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInMaxHubWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMaxHubWhiteboard_Toggled); + #line 1923 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiCamera_Toggled); #line default #line hidden return; case 140: - this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote3 = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1780 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno_Toggled); + #line 1936 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote3.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3_Toggled); #line default #line hidden return; case 141: - this.ToggleSwitchAutoFoldInOldZyBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote3C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1790 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInOldZyBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInOldZyBoard_Toggled); + #line 1949 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote3C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote3C_Toggled); #line default #line hidden return; case 142: - this.ToggleSwitchAutoFoldInPPTSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInEasiNote5C = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1800 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoFoldInPPTSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInPPTSlideShow_Toggled); + #line 1963 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNote5C.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNote5C_Toggled); #line default #line hidden return; case 143: - this.ToggleSwitchAutoKillPptService = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInSeewoPincoTeacher = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1815 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillPptService.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillPptService_Toggled); + #line 1977 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInSeewoPincoTeacher.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInSeewoPincoTeacher_Toggled); #line default #line hidden return; case 144: - this.ToggleSwitchAutoKillEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteTouchPro = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1827 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillEasiNote_Toggled); + #line 1991 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteTouchPro.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteTouchPro_Toggled); #line default #line hidden return; case 145: - this.ToggleSwitchAutoKillHiteAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteCamera = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1838 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillHiteAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillHiteAnnotation_Toggled); + #line 2005 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteCamera.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteCamera_Toggled); #line default #line hidden return; case 146: - this.ToggleSwitchAutoKillVComYouJiao = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInHiteLightBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1849 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillVComYouJiao.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillVComYouJiao_Toggled); + #line 2019 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInHiteLightBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInHiteLightBoard_Toggled); #line default #line hidden return; case 147: - this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInWxBoardMain = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1861 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation_Toggled); + #line 2033 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInWxBoardMain.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInWxBoardMain_Toggled); #line default #line hidden return; case 148: - this.ToggleSwitchAutoKillInkCanvas = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInMSWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1882 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillInkCanvas.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillInkCanvas_Toggled); + #line 2047 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInMSWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMSWhiteboard_Toggled); #line default #line hidden return; case 149: - this.ToggleSwitchAutoKillICA = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInAdmoxWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1894 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillICA.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillICA_Toggled); + #line 2061 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInAdmoxWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxWhiteboard_Toggled); #line default #line hidden return; case 150: - this.ToggleSwitchAutoKillIDT = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInAdmoxBooth = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1905 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoKillIDT.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillIDT_Toggled); + #line 2075 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInAdmoxBooth.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInAdmoxBooth_Toggled); #line default #line hidden return; case 151: - this.ToggleSwitchAutoSaveStrokesAtClear = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInQPoint = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1915 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesAtClear.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtClear_Toggled); + #line 2089 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInQPoint.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInQPoint_Toggled); #line default #line hidden return; case 152: - this.ToggleSwitchSaveScreenshotsInDateFolders = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInYiYunVisualPresenter = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1923 "..\..\..\MainWindow.xaml" - this.ToggleSwitchSaveScreenshotsInDateFolders.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSaveScreenshotsInDateFolders_Toggled); + #line 2103 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInYiYunVisualPresenter.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInYiYunVisualPresenter_Toggled); #line default #line hidden return; case 153: - this.ToggleSwitchAutoSaveStrokesAtScreenshot = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoFoldInMaxHubWhiteboard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1931 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoSaveStrokesAtScreenshot.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtScreenshot_Toggled); + #line 2118 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInMaxHubWhiteboard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInMaxHubWhiteboard_Toggled); #line default #line hidden return; case 154: - this.SideControlMinimumAutomationSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1942 "..\..\..\MainWindow.xaml" - this.SideControlMinimumAutomationSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.SideControlMinimumAutomationSlider_ValueChanged); + #line 2131 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInEasiNoteIgnoreDesktopAnno_Toggled); #line default #line hidden return; case 155: - this.AutoSavedStrokesLocation = ((System.Windows.Controls.TextBox)(target)); + this.ToggleSwitchAutoFoldInOldZyBoard = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1957 "..\..\..\MainWindow.xaml" - this.AutoSavedStrokesLocation.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.AutoSavedStrokesLocationTextBox_TextChanged); + #line 2141 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInOldZyBoard.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInOldZyBoard_Toggled); #line default #line hidden return; case 156: - this.AutoSavedStrokesLocationButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoFoldInPPTSlideShow = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1959 "..\..\..\MainWindow.xaml" - this.AutoSavedStrokesLocationButton.Click += new System.Windows.RoutedEventHandler(this.AutoSavedStrokesLocationButton_Click); + #line 2151 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoFoldInPPTSlideShow.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoFoldInPPTSlideShow_Toggled); #line default #line hidden return; case 157: - this.SetAutoSavedStrokesLocationToDiskDButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoKillPptService = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1964 "..\..\..\MainWindow.xaml" - this.SetAutoSavedStrokesLocationToDiskDButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDiskDButton_Click); + #line 2166 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillPptService.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillPptService_Toggled); #line default #line hidden return; case 158: - this.SetAutoSavedStrokesLocationToDocumentFolderButton = ((System.Windows.Controls.Button)(target)); + this.ToggleSwitchAutoKillEasiNote = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1967 "..\..\..\MainWindow.xaml" - this.SetAutoSavedStrokesLocationToDocumentFolderButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDocumentFolderButton_Click); + #line 2178 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillEasiNote.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillEasiNote_Toggled); #line default #line hidden return; case 159: - this.ToggleSwitchAutoDelSavedFiles = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillHiteAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1981 "..\..\..\MainWindow.xaml" - this.ToggleSwitchAutoDelSavedFiles.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoDelSavedFiles_Toggled); + #line 2189 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillHiteAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillHiteAnnotation_Toggled); #line default #line hidden return; case 160: - this.ComboBoxAutoDelSavedFilesDaysThreshold = ((System.Windows.Controls.ComboBox)(target)); + this.ToggleSwitchAutoKillVComYouJiao = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 1993 "..\..\..\MainWindow.xaml" - this.ComboBoxAutoDelSavedFilesDaysThreshold.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxAutoDelSavedFilesDaysThreshold_SelectionChanged); + #line 2200 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillVComYouJiao.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillVComYouJiao_Toggled); #line default #line hidden return; case 161: - this.GroupBoxRandWindow = ((System.Windows.Controls.GroupBox)(target)); + this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2212 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillSeewoLauncher2DesktopAnnotation_Toggled); + + #line default + #line hidden return; case 162: - this.ToggleSwitchDisplayRandWindowNamesInputBtn = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillInkCanvas = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2022 "..\..\..\MainWindow.xaml" - this.ToggleSwitchDisplayRandWindowNamesInputBtn.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled); + #line 2233 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillInkCanvas.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillInkCanvas_Toggled); #line default #line hidden return; case 163: - this.ToggleSwitchShowRandomAndSingleDraw = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + this.ToggleSwitchAutoKillICA = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2031 "..\..\..\MainWindow.xaml" - this.ToggleSwitchShowRandomAndSingleDraw.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowRandomAndSingleDraw_Toggled); + #line 2245 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillICA.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillICA_Toggled); #line default #line hidden return; case 164: - this.RandWindowOnceCloseLatencySlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoKillIDT = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2042 "..\..\..\MainWindow.xaml" - this.RandWindowOnceCloseLatencySlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceCloseLatencySlider_ValueChanged); + #line 2256 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoKillIDT.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoKillIDT_Toggled); #line default #line hidden return; case 165: - this.RandWindowOnceMaxStudentsSlider = ((System.Windows.Controls.Slider)(target)); + this.ToggleSwitchAutoSaveStrokesAtClear = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2056 "..\..\..\MainWindow.xaml" - this.RandWindowOnceMaxStudentsSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceMaxStudentsSlider_ValueChanged); + #line 2266 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesAtClear.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtClear_Toggled); #line default #line hidden return; case 166: - this.AppVersionTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ToggleSwitchSaveScreenshotsInDateFolders = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2274 "..\..\..\MainWindow.xaml" + this.ToggleSwitchSaveScreenshotsInDateFolders.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchSaveScreenshotsInDateFolders_Toggled); + + #line default + #line hidden return; case 167: + this.ToggleSwitchAutoSaveStrokesAtScreenshot = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 2178 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToICCRepository_Click); + #line 2282 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoSaveStrokesAtScreenshot.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoSaveStrokesAtScreenshot_Toggled); #line default #line hidden return; case 168: + this.SideControlMinimumAutomationSlider = ((System.Windows.Controls.Slider)(target)); - #line 2185 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToPresentRepository_Click); + #line 2293 "..\..\..\MainWindow.xaml" + this.SideControlMinimumAutomationSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.SideControlMinimumAutomationSlider_ValueChanged); #line default #line hidden return; case 169: + this.AutoSavedStrokesLocation = ((System.Windows.Controls.TextBox)(target)); - #line 2191 "..\..\..\MainWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToOringinalRepository_Click); + #line 2308 "..\..\..\MainWindow.xaml" + this.AutoSavedStrokesLocation.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.AutoSavedStrokesLocationTextBox_TextChanged); #line default #line hidden return; case 170: + this.AutoSavedStrokesLocationButton = ((System.Windows.Controls.Button)(target)); - #line 2430 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnSettings_Click); + #line 2310 "..\..\..\MainWindow.xaml" + this.AutoSavedStrokesLocationButton.Click += new System.Windows.RoutedEventHandler(this.AutoSavedStrokesLocationButton_Click); #line default #line hidden return; case 171: - this.GridBackgroundCoverHolder = ((System.Windows.Controls.Grid)(target)); + this.SetAutoSavedStrokesLocationToDiskDButton = ((System.Windows.Controls.Button)(target)); + + #line 2315 "..\..\..\MainWindow.xaml" + this.SetAutoSavedStrokesLocationToDiskDButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDiskDButton_Click); + + #line default + #line hidden return; case 172: - this.GridBackgroundCover = ((System.Windows.Controls.Grid)(target)); + this.SetAutoSavedStrokesLocationToDocumentFolderButton = ((System.Windows.Controls.Button)(target)); + + #line 2318 "..\..\..\MainWindow.xaml" + this.SetAutoSavedStrokesLocationToDocumentFolderButton.Click += new System.Windows.RoutedEventHandler(this.SetAutoSavedStrokesLocationToDocumentFolderButton_Click); + + #line default + #line hidden return; case 173: - this.ICCWaterMarkWhite = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchAutoDelSavedFiles = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2332 "..\..\..\MainWindow.xaml" + this.ToggleSwitchAutoDelSavedFiles.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchAutoDelSavedFiles_Toggled); + + #line default + #line hidden return; case 174: - this.ICCWaterMarkDark = ((System.Windows.Controls.Image)(target)); + this.ComboBoxAutoDelSavedFilesDaysThreshold = ((System.Windows.Controls.ComboBox)(target)); + + #line 2344 "..\..\..\MainWindow.xaml" + this.ComboBoxAutoDelSavedFilesDaysThreshold.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxAutoDelSavedFilesDaysThreshold_SelectionChanged); + + #line default + #line hidden return; case 175: - this.GridTransparencyFakeBackground = ((System.Windows.Controls.Grid)(target)); + this.GroupBoxRandWindow = ((System.Windows.Controls.GroupBox)(target)); return; case 176: - this.Label = ((System.Windows.Controls.Label)(target)); + this.ToggleSwitchDisplayRandWindowNamesInputBtn = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2373 "..\..\..\MainWindow.xaml" + this.ToggleSwitchDisplayRandWindowNamesInputBtn.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchDisplayRandWindowNamesInputBtn_OnToggled); + + #line default + #line hidden return; case 177: - this.InkCanvasGridForInkReplay = ((System.Windows.Controls.Grid)(target)); + this.ToggleSwitchShowRandomAndSingleDraw = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 2382 "..\..\..\MainWindow.xaml" + this.ToggleSwitchShowRandomAndSingleDraw.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchShowRandomAndSingleDraw_Toggled); + + #line default + #line hidden return; case 178: - this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target)); + this.RandWindowOnceCloseLatencySlider = ((System.Windows.Controls.Slider)(target)); - #line 2450 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchUp += new System.EventHandler(this.Main_Grid_TouchUp); - - #line default - #line hidden - - #line 2450 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchDown += new System.EventHandler(this.Main_Grid_TouchDown); - - #line default - #line hidden - - #line 2451 "..\..\..\MainWindow.xaml" - this.inkCanvas.TouchMove += new System.EventHandler(this.inkCanvas_TouchMove); - - #line default - #line hidden - - #line 2452 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationDelta += new System.EventHandler(this.Main_Grid_ManipulationDelta); - - #line default - #line hidden - - #line 2453 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationCompleted += new System.EventHandler(this.Main_Grid_ManipulationCompleted); - - #line default - #line hidden - - #line 2454 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationInertiaStarting += new System.EventHandler(this.inkCanvas_ManipulationInertiaStarting); - - #line default - #line hidden - - #line 2456 "..\..\..\MainWindow.xaml" - this.inkCanvas.EditingModeChanged += new System.Windows.RoutedEventHandler(this.inkCanvas_EditingModeChanged); - - #line default - #line hidden - - #line 2457 "..\..\..\MainWindow.xaml" - this.inkCanvas.PreviewTouchDown += new System.EventHandler(this.inkCanvas_PreviewTouchDown); - - #line default - #line hidden - - #line 2458 "..\..\..\MainWindow.xaml" - this.inkCanvas.PreviewTouchUp += new System.EventHandler(this.inkCanvas_PreviewTouchUp); - - #line default - #line hidden - - #line 2459 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseDown); - - #line default - #line hidden - - #line 2460 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseMove += new System.Windows.Input.MouseEventHandler(this.inkCanvas_MouseMove); - - #line default - #line hidden - - #line 2461 "..\..\..\MainWindow.xaml" - this.inkCanvas.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseUp); - - #line default - #line hidden - - #line 2462 "..\..\..\MainWindow.xaml" - this.inkCanvas.ManipulationStarting += new System.EventHandler(this.inkCanvas_ManipulationStarting); - - #line default - #line hidden - - #line 2463 "..\..\..\MainWindow.xaml" - this.inkCanvas.SelectionChanged += new System.EventHandler(this.inkCanvas_SelectionChanged); - - #line default - #line hidden - - #line 2464 "..\..\..\MainWindow.xaml" - this.inkCanvas.StrokeCollected += new System.Windows.Controls.InkCanvasStrokeCollectedEventHandler(this.inkCanvas_StrokeCollected); + #line 2393 "..\..\..\MainWindow.xaml" + this.RandWindowOnceCloseLatencySlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceCloseLatencySlider_ValueChanged); #line default #line hidden return; case 179: - this.WaterMarkTime = ((System.Windows.Controls.TextBlock)(target)); + this.RandWindowOnceMaxStudentsSlider = ((System.Windows.Controls.Slider)(target)); + + #line 2407 "..\..\..\MainWindow.xaml" + this.RandWindowOnceMaxStudentsSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.RandWindowOnceMaxStudentsSlider_ValueChanged); + + #line default + #line hidden return; case 180: - this.WaterMarkDate = ((System.Windows.Controls.TextBlock)(target)); + this.AppVersionTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 181: - this.BlackBoardWaterMark = ((System.Windows.Controls.TextBlock)(target)); + + #line 2529 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToICCRepository_Click); + + #line default + #line hidden return; case 182: - this.GridInkCanvasSelectionCover = ((System.Windows.Controls.Grid)(target)); - #line 2479 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseDown); - - #line default - #line hidden - - #line 2480 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseUp); - - #line default - #line hidden - - #line 2482 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationStarting += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationStarting); - - #line default - #line hidden - - #line 2483 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationCompleted += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationCompleted); - - #line default - #line hidden - - #line 2484 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.ManipulationDelta += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationDelta); - - #line default - #line hidden - - #line 2485 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.PreviewTouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchDown); - - #line default - #line hidden - - #line 2486 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.PreviewTouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchUp); - - #line default - #line hidden - - #line 2487 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.TouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchDown); - - #line default - #line hidden - - #line 2488 "..\..\..\MainWindow.xaml" - this.GridInkCanvasSelectionCover.TouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchUp); + #line 2536 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToPresentRepository_Click); #line default #line hidden return; case 183: - this.BorderStrokeSelectionControl = ((System.Windows.Controls.Border)(target)); - return; - case 184: - this.BorderStrokeSelectionClone = ((System.Windows.Controls.Border)(target)); - #line 2500 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionClone.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2542 "..\..\..\MainWindow.xaml" + ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.HyperlinkSourceToOringinalRepository_Click); #line default #line hidden + return; + case 184: - #line 2500 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionClone.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionClone_MouseUp); + #line 2745 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnCloseSettings_Click); #line default #line hidden return; case 185: - this.BorderStrokeSelectionCloneToNewBoard = ((System.Windows.Controls.Border)(target)); - - #line 2510 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionCloneToNewBoard.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2511 "..\..\..\MainWindow.xaml" - this.BorderStrokeSelectionCloneToNewBoard.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionCloneToNewBoard_MouseUp); - - #line default - #line hidden + this.GridBackgroundCoverHolder = ((System.Windows.Controls.Grid)(target)); return; case 186: - - #line 2527 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2527 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate45_MouseUp); - - #line default - #line hidden + this.GridBackgroundCover = ((System.Windows.Controls.Grid)(target)); return; case 187: - - #line 2529 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2529 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate90_MouseUp); - - #line default - #line hidden + this.ICCWaterMarkWhite = ((System.Windows.Controls.Image)(target)); return; case 188: - - #line 2541 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2541 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipHorizontal_MouseUp); - - #line default - #line hidden + this.ICCWaterMarkDark = ((System.Windows.Controls.Image)(target)); return; case 189: - - #line 2544 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2544 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipVertical_MouseUp); - - #line default - #line hidden + this.GridTransparencyFakeBackground = ((System.Windows.Controls.Grid)(target)); return; case 190: - - #line 2558 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2558 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthDecrease_MouseUp); - - #line default - #line hidden + this.Label = ((System.Windows.Controls.Label)(target)); return; case 191: - - #line 2565 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 2565 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthIncrease_MouseUp); - - #line default - #line hidden + this.InkCanvasGridForInkReplay = ((System.Windows.Controls.Grid)(target)); return; case 192: + this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target)); - #line 2572 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2787 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchUp += new System.EventHandler(this.Main_Grid_TouchUp); #line default #line hidden - #line 2572 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthRestore_MouseUp); - - #line default - #line hidden - return; - case 193: - - #line 2588 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2787 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchDown += new System.EventHandler(this.Main_Grid_TouchDown); #line default #line hidden - #line 2588 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionDelete_MouseUp); + #line 2788 "..\..\..\MainWindow.xaml" + this.inkCanvas.TouchMove += new System.EventHandler(this.inkCanvas_TouchMove); #line default #line hidden - return; - case 194: - #line 2609 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + #line 2789 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationDelta += new System.EventHandler(this.Main_Grid_ManipulationDelta); #line default #line hidden - return; - case 195: - #line 2617 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + #line 2790 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationCompleted += new System.EventHandler(this.Main_Grid_ManipulationCompleted); #line default #line hidden - return; - case 196: - #line 2627 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + #line 2791 "..\..\..\MainWindow.xaml" + this.inkCanvas.ManipulationInertiaStarting += new System.EventHandler(this.inkCanvas_ManipulationInertiaStarting); #line default #line hidden - return; - case 197: - this.BlackboardUIGridForInkReplay = ((System.Windows.Controls.Grid)(target)); - return; - case 198: - this.ViewboxBlackboardLeftSide = ((System.Windows.Controls.Viewbox)(target)); - return; - case 199: - this.BlackboardLeftSide = ((System.Windows.Controls.Grid)(target)); - return; - case 200: - #line 2650 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + #line 2793 "..\..\..\MainWindow.xaml" + this.inkCanvas.EditingModeChanged += new System.Windows.RoutedEventHandler(this.inkCanvas_EditingModeChanged); #line default #line hidden - return; - case 201: - this.BtnLeftWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 202: - this.BtnLeftWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 203: - this.BtnLeftPageListWB = ((System.Windows.Controls.Border)(target)); - #line 2673 "..\..\..\MainWindow.xaml" - this.BtnLeftPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + #line 2794 "..\..\..\MainWindow.xaml" + this.inkCanvas.PreviewTouchDown += new System.EventHandler(this.inkCanvas_PreviewTouchDown); #line default #line hidden - return; - case 204: - this.BoardBorderLeftPageListView = ((System.Windows.Controls.Border)(target)); - return; - case 205: - this.BlackBoardLeftSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - return; - case 206: - this.BlackBoardLeftSidePageListView = ((System.Windows.Controls.ListView)(target)); - return; - case 208: - #line 2736 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + #line 2795 "..\..\..\MainWindow.xaml" + this.inkCanvas.PreviewTouchUp += new System.EventHandler(this.inkCanvas_PreviewTouchUp); #line default #line hidden - return; - case 209: - this.BtnLeftWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 210: - this.BtnLeftWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 211: - #line 2765 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + #line 2796 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseDown); + + #line default + #line hidden + + #line 2797 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseMove += new System.Windows.Input.MouseEventHandler(this.inkCanvas_MouseMove); + + #line default + #line hidden + + #line 2798 "..\..\..\MainWindow.xaml" + this.inkCanvas.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_MouseUp); #line default #line hidden - return; - case 212: - this.ViewboxBlackboardCenterSideScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); - return; - case 213: - this.BlackboardCenterSide = ((System.Windows.Controls.Grid)(target)); - return; - case 214: - this.BoardGesture = ((System.Windows.Controls.Border)(target)); #line 2799 "..\..\..\MainWindow.xaml" - this.BoardGesture.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + this.inkCanvas.ManipulationStarting += new System.EventHandler(this.inkCanvas_ManipulationStarting); #line default #line hidden #line 2800 "..\..\..\MainWindow.xaml" - this.BoardGesture.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); - - #line default - #line hidden - return; - case 215: - this.BoardGestureGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 216: - this.BoardGestureGeometry2 = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 217: - this.BoardGestureLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 218: - this.BoardTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); - return; - case 219: - this.BoardToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2862 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); - - #line default - #line hidden - return; - case 220: - this.BoardToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2893 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); - - #line default - #line hidden - return; - case 221: - this.BoardToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2922 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); - - #line default - #line hidden - return; - case 222: - this.BoardToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 2951 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); - - #line default - #line hidden - return; - case 223: - - #line 2970 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + this.inkCanvas.SelectionChanged += new System.EventHandler(this.inkCanvas_SelectionChanged); #line default #line hidden - #line 2971 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardChangeBackgroundColorBtn_MouseUp); + #line 2801 "..\..\..\MainWindow.xaml" + this.inkCanvas.StrokeCollected += new System.Windows.Controls.InkCanvasStrokeCollectedEventHandler(this.inkCanvas_StrokeCollected); #line default #line hidden return; - case 224: - this.BoardSelect = ((System.Windows.Controls.Border)(target)); + case 193: + this.WaterMarkTime = ((System.Windows.Controls.TextBlock)(target)); + return; + case 194: + this.WaterMarkDate = ((System.Windows.Controls.TextBlock)(target)); + return; + case 195: + this.BlackBoardWaterMark = ((System.Windows.Controls.TextBlock)(target)); + return; + case 196: + this.GridInkCanvasSelectionCover = ((System.Windows.Controls.Grid)(target)); - #line 2997 "..\..\..\MainWindow.xaml" - this.BoardSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2816 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseDown); #line default #line hidden - #line 2999 "..\..\..\MainWindow.xaml" - this.BoardSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); - - #line default - #line hidden - return; - case 225: - this.BoardSelectGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 226: - this.BoardSelectLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 227: - this.BoardPen = ((System.Windows.Controls.Border)(target)); - - #line 3022 "..\..\..\MainWindow.xaml" - this.BoardPen.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 2817 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkCanvasSelectionCover_MouseUp); #line default #line hidden - #line 3024 "..\..\..\MainWindow.xaml" - this.BoardPen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + #line 2819 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationStarting += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationStarting); + + #line default + #line hidden + + #line 2820 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationCompleted += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationCompleted); + + #line default + #line hidden + + #line 2821 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.ManipulationDelta += new System.EventHandler(this.GridInkCanvasSelectionCover_ManipulationDelta); + + #line default + #line hidden + + #line 2822 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.PreviewTouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchDown); + + #line default + #line hidden + + #line 2823 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.PreviewTouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_PreviewTouchUp); + + #line default + #line hidden + + #line 2824 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.TouchDown += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchDown); + + #line default + #line hidden + + #line 2825 "..\..\..\MainWindow.xaml" + this.GridInkCanvasSelectionCover.TouchUp += new System.EventHandler(this.GridInkCanvasSelectionCover_TouchUp); #line default #line hidden return; - case 228: - this.BoardPenIcon = ((System.Windows.Controls.Image)(target)); + case 197: + this.BorderStrokeSelectionControl = ((System.Windows.Controls.Border)(target)); return; - case 229: - this.BoardPenGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 230: - this.BoardPenLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 231: - this.BoardPenPaletteGrid = ((System.Windows.Controls.Grid)(target)); - return; - case 232: - this.BoardPenPalette = ((System.Windows.Controls.Border)(target)); - return; - case 233: - this.BoardDefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + case 198: + this.BorderStrokeSelectionClone = ((System.Windows.Controls.Border)(target)); - #line 3073 "..\..\..\MainWindow.xaml" - this.BoardDefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + #line 2837 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionClone.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2837 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionClone.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionClone_MouseUp); #line default #line hidden return; - case 234: - this.BoardDefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 235: - this.BoardDefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 236: - this.BoardHighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + case 199: + this.BorderStrokeSelectionCloneToNewBoard = ((System.Windows.Controls.Border)(target)); - #line 3111 "..\..\..\MainWindow.xaml" - this.BoardHighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); + #line 2847 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionCloneToNewBoard.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2848 "..\..\..\MainWindow.xaml" + this.BorderStrokeSelectionCloneToNewBoard.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionCloneToNewBoard_MouseUp); #line default #line hidden return; - case 237: - this.BoardHighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 238: - this.BoardHighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 239: + case 200: - #line 3151 "..\..\..\MainWindow.xaml" + #line 2864 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3152 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 2864 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate45_MouseUp); #line default #line hidden return; - case 240: - this.BoardDefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 241: - this.BoardComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); + case 201: - #line 3175 "..\..\..\MainWindow.xaml" - this.BoardComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); + #line 2866 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2866 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageRotate90_MouseUp); #line default #line hidden return; - case 242: - this.BoardNibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 243: - this.BoardToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + case 202: - #line 3196 "..\..\..\MainWindow.xaml" - this.BoardToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); + #line 2878 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2878 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipHorizontal_MouseUp); #line default #line hidden return; - case 244: + case 203: - #line 3209 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + #line 2881 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2881 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageFlipVertical_MouseUp); #line default #line hidden return; - case 245: - this.BoardInkWidthSlider = ((System.Windows.Controls.Slider)(target)); + case 204: - #line 3228 "..\..\..\MainWindow.xaml" - this.BoardInkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); + #line 2895 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2895 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthDecrease_MouseUp); #line default #line hidden return; - case 246: - this.BoardInkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + case 205: - #line 3248 "..\..\..\MainWindow.xaml" - this.BoardInkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + #line 2902 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2902 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthIncrease_MouseUp); #line default #line hidden return; - case 247: - this.BoardHighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 248: - this.BoardHighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + case 206: - #line 3275 "..\..\..\MainWindow.xaml" - this.BoardHighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + #line 2909 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 2909 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPenWidthRestore_MouseUp); #line default #line hidden return; - case 249: - this.BoardDefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 250: + case 207: - #line 3300 "..\..\..\MainWindow.xaml" + #line 2925 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3301 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); + #line 2925 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BorderStrokeSelectionDelete_MouseUp); + + #line default + #line hidden + return; + case 208: + + #line 2946 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + return; + case 209: + + #line 2954 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + return; + case 210: + + #line 2964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + return; + case 211: + this.BlackboardUIGridForInkReplay = ((System.Windows.Controls.Grid)(target)); + return; + case 212: + this.ViewboxBlackboardLeftSide = ((System.Windows.Controls.Viewbox)(target)); + return; + case 213: + this.BlackboardLeftSide = ((System.Windows.Controls.Grid)(target)); + return; + case 214: + + #line 2987 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + return; + case 215: + this.BtnLeftWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 216: + this.BtnLeftWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 217: + this.BtnLeftPageListWB = ((System.Windows.Controls.Border)(target)); + + #line 3010 "..\..\..\MainWindow.xaml" + this.BtnLeftPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + + #line default + #line hidden + return; + case 218: + this.BoardBorderLeftPageListView = ((System.Windows.Controls.Border)(target)); + return; + case 219: + this.BlackBoardLeftSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); + return; + case 220: + this.BlackBoardLeftSidePageListView = ((System.Windows.Controls.ListView)(target)); + return; + case 222: + + #line 3073 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + return; + case 223: + this.BtnLeftWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 224: + this.BtnLeftWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 225: + + #line 3102 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 226: + this.ViewboxBlackboardCenterSideScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); + return; + case 227: + this.BlackboardCenterSide = ((System.Windows.Controls.Grid)(target)); + return; + case 228: + this.BoardGesture = ((System.Windows.Controls.Border)(target)); + + #line 3136 "..\..\..\MainWindow.xaml" + this.BoardGesture.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3137 "..\..\..\MainWindow.xaml" + this.BoardGesture.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); + + #line default + #line hidden + return; + case 229: + this.BoardGestureGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 230: + this.BoardGestureGeometry2 = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 231: + this.BoardGestureLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 232: + this.BoardTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + return; + case 233: + this.BoardToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3199 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); + + #line default + #line hidden + return; + case 234: + this.BoardToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3230 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + + #line default + #line hidden + return; + case 235: + this.BoardToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3259 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); + + #line default + #line hidden + return; + case 236: + this.BoardToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 3288 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + + #line default + #line hidden + return; + case 237: + + #line 3307 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3308 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardChangeBackgroundColorBtn_MouseUp); + + #line default + #line hidden + return; + case 238: + this.BoardSelect = ((System.Windows.Controls.Border)(target)); + + #line 3334 "..\..\..\MainWindow.xaml" + this.BoardSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3336 "..\..\..\MainWindow.xaml" + this.BoardSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); + + #line default + #line hidden + return; + case 239: + this.BoardSelectGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 240: + this.BoardSelectLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 241: + this.BoardPen = ((System.Windows.Controls.Border)(target)); + + #line 3359 "..\..\..\MainWindow.xaml" + this.BoardPen.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3361 "..\..\..\MainWindow.xaml" + this.BoardPen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + + #line default + #line hidden + return; + case 242: + this.BoardPenIcon = ((System.Windows.Controls.Image)(target)); + return; + case 243: + this.BoardPenGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 244: + this.BoardPenLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 245: + this.BoardPenPaletteGrid = ((System.Windows.Controls.Grid)(target)); + return; + case 246: + this.BoardPenPalette = ((System.Windows.Controls.Border)(target)); + return; + case 247: + this.BoardDefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 3410 "..\..\..\MainWindow.xaml" + this.BoardDefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + + #line default + #line hidden + return; + case 248: + this.BoardDefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 249: + this.BoardDefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 250: + this.BoardHighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 3448 "..\..\..\MainWindow.xaml" + this.BoardHighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); #line default #line hidden return; case 251: - this.BoardColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + this.BoardHighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 252: - this.BoardColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.BoardHighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 253: - this.BoardBorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3327 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); + #line 3488 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3489 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); #line default #line hidden return; case 254: - this.BoardViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardDefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 255: - this.BoardBorderPenColorWhite = ((System.Windows.Controls.Border)(target)); + this.BoardComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - #line 3348 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); + #line 3512 "..\..\..\MainWindow.xaml" + this.BoardComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); #line default #line hidden return; case 256: - this.BoardViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardNibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 257: - this.BoardBorderPenColorRed = ((System.Windows.Controls.Border)(target)); + this.BoardToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 3368 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + #line 3533 "..\..\..\MainWindow.xaml" + this.BoardToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); #line default #line hidden return; case 258: - this.BoardViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + + #line 3546 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + + #line default + #line hidden return; case 259: - this.BoardBorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + this.BoardInkWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 3389 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + #line 3565 "..\..\..\MainWindow.xaml" + this.BoardInkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); #line default #line hidden return; case 260: - this.BoardViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardInkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + + #line 3585 "..\..\..\MainWindow.xaml" + this.BoardInkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + + #line default + #line hidden return; case 261: - this.BoardBorderPenColorGreen = ((System.Windows.Controls.Border)(target)); - - #line 3418 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); - - #line default - #line hidden + this.BoardHighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 262: - this.BoardViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardHighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + + #line 3612 "..\..\..\MainWindow.xaml" + this.BoardHighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + + #line default + #line hidden return; case 263: - this.BoardBorderPenColorBlue = ((System.Windows.Controls.Border)(target)); - - #line 3439 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); - - #line default - #line hidden + this.BoardDefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 264: - this.BoardViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); - return; - case 265: - this.BoardBorderPenColorPink = ((System.Windows.Controls.Border)(target)); - #line 3460 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + #line 3637 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 3638 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); #line default #line hidden return; + case 265: + this.BoardColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + return; case 266: - this.BoardViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 267: - this.BoardBorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + this.BoardBorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3481 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + #line 3664 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); #line default #line hidden return; case 268: - this.BoardViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; case 269: - this.BoardBorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + this.BoardBorderPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 3502 "..\..\..\MainWindow.xaml" - this.BoardBorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + #line 3685 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); #line default #line hidden return; case 270: - this.BoardViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + this.BoardViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; case 271: - this.BoardHighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BoardBorderPenColorRed = ((System.Windows.Controls.Border)(target)); + + #line 3705 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + + #line default + #line hidden return; case 272: + this.BoardViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 273: + this.BoardBorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + + #line 3726 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + + #line default + #line hidden + return; + case 274: + this.BoardViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 275: + this.BoardBorderPenColorGreen = ((System.Windows.Controls.Border)(target)); + + #line 3755 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); + + #line default + #line hidden + return; + case 276: + this.BoardViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 277: + this.BoardBorderPenColorBlue = ((System.Windows.Controls.Border)(target)); + + #line 3776 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); + + #line default + #line hidden + return; + case 278: + this.BoardViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 279: + this.BoardBorderPenColorPink = ((System.Windows.Controls.Border)(target)); + + #line 3797 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + + #line default + #line hidden + return; + case 280: + this.BoardViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 281: + this.BoardBorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + + #line 3818 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + + #line default + #line hidden + return; + case 282: + this.BoardViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 283: + this.BoardBorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + + #line 3839 "..\..\..\MainWindow.xaml" + this.BoardBorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + + #line default + #line hidden + return; + case 284: + this.BoardViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 285: + this.BoardHighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 286: this.BoardHighlighterPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 3540 "..\..\..\MainWindow.xaml" + #line 3877 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlack_Click); #line default #line hidden return; - case 273: + case 287: this.BoardHighlighterPenViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 274: + case 288: this.BoardHighlighterPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 3578 "..\..\..\MainWindow.xaml" + #line 3915 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorWhite_Click); #line default #line hidden return; - case 275: + case 289: this.BoardHighlighterPenViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 276: + case 290: this.BoardHighlighterPenColorRed = ((System.Windows.Controls.Border)(target)); - #line 3614 "..\..\..\MainWindow.xaml" + #line 3951 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorRed_Click); #line default #line hidden return; - case 277: + case 291: this.BoardHighlighterPenViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 278: + case 292: this.BoardHighlighterPenColorYellow = ((System.Windows.Controls.Border)(target)); - #line 3650 "..\..\..\MainWindow.xaml" + #line 3987 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorYellow_Click); #line default #line hidden return; - case 279: + case 293: this.BoardHighlighterPenViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 280: + case 294: this.BoardHighlighterPenColorGreen = ((System.Windows.Controls.Border)(target)); - #line 3686 "..\..\..\MainWindow.xaml" + #line 4023 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorGreen_Click); #line default #line hidden return; - case 281: + case 295: this.BoardHighlighterPenViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 282: + case 296: this.BoardHighlighterPenColorZinc = ((System.Windows.Controls.Border)(target)); - #line 3729 "..\..\..\MainWindow.xaml" + #line 4066 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorZinc.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorZinc_Click); #line default #line hidden return; - case 283: + case 297: this.BoardHighlighterPenViewboxBtnColorZincContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 284: + case 298: this.BoardHighlighterPenColorBlue = ((System.Windows.Controls.Border)(target)); - #line 3765 "..\..\..\MainWindow.xaml" + #line 4102 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlue_Click); #line default #line hidden return; - case 285: + case 299: this.BoardHighlighterPenViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 286: + case 300: this.BoardHighlighterPenPenColorPurple = ((System.Windows.Controls.Border)(target)); - #line 3801 "..\..\..\MainWindow.xaml" + #line 4138 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenPenColorPurple.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorPurple_Click); #line default #line hidden return; - case 287: + case 301: this.BoardHighlighterPenViewboxBtnColorPurpleContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 288: + case 302: this.BoardHighlighterPenColorTeal = ((System.Windows.Controls.Border)(target)); - #line 3837 "..\..\..\MainWindow.xaml" + #line 4174 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorTeal_Click); #line default #line hidden return; - case 289: + case 303: this.BoardHighlighterPenViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 290: + case 304: this.BoardHighlighterPenColorOrange = ((System.Windows.Controls.Border)(target)); - #line 3873 "..\..\..\MainWindow.xaml" + #line 4210 "..\..\..\MainWindow.xaml" this.BoardHighlighterPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorOrange_Click); #line default #line hidden return; - case 291: + case 305: this.BoardHighlighterPenViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 292: + case 306: this.BoardEraser = ((System.Windows.Controls.Border)(target)); - #line 3916 "..\..\..\MainWindow.xaml" + #line 4253 "..\..\..\MainWindow.xaml" this.BoardEraser.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 3918 "..\..\..\MainWindow.xaml" + #line 4255 "..\..\..\MainWindow.xaml" this.BoardEraser.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIcon_Click); #line default #line hidden return; - case 293: + case 307: this.BoardEraserGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 294: + case 308: this.BoardEraserLabel = ((System.Windows.Controls.TextBlock)(target)); return; - case 295: + case 309: this.BoardEraserSizePanel = ((System.Windows.Controls.Border)(target)); return; - case 296: + case 310: this.BoardComboBoxEraserSize = ((System.Windows.Controls.ComboBox)(target)); - #line 3976 "..\..\..\MainWindow.xaml" + #line 4313 "..\..\..\MainWindow.xaml" this.BoardComboBoxEraserSize.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); #line default #line hidden return; - case 297: + case 311: this.BoardCircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 3999 "..\..\..\MainWindow.xaml" + #line 4336 "..\..\..\MainWindow.xaml" this.BoardCircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); #line default #line hidden return; - case 298: + case 312: this.BoardCircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; - case 299: + case 313: this.BoardCircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; - case 300: + case 314: this.BoardRectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 4027 "..\..\..\MainWindow.xaml" + #line 4364 "..\..\..\MainWindow.xaml" this.BoardRectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); #line default #line hidden return; - case 301: + case 315: this.BoardRectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; - case 302: - this.BoardRectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 303: - - #line 4054 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDelete_MouseUp); - - #line default - #line hidden - return; - case 304: - - #line 4090 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDeleteInkAndHistories_MouseUp); - - #line default - #line hidden - return; - case 305: - this.BoardEraserByStrokes = ((System.Windows.Controls.Border)(target)); - - #line 4133 "..\..\..\MainWindow.xaml" - this.BoardEraserByStrokes.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4135 "..\..\..\MainWindow.xaml" - this.BoardEraserByStrokes.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIconByStrokes_Click); - - #line default - #line hidden - return; - case 306: - this.BoardGeometry = ((System.Windows.Controls.Border)(target)); - - #line 4145 "..\..\..\MainWindow.xaml" - this.BoardGeometry.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4147 "..\..\..\MainWindow.xaml" - this.BoardGeometry.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); - - #line default - #line hidden - return; - case 307: - this.BoardBorderDrawShape = ((System.Windows.Controls.Border)(target)); - return; - case 308: - - #line 4184 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4185 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconPinBorderDrawShape_MouseUp); - - #line default - #line hidden - return; - case 309: - this.ToggleSwitchDrawShapeBorderAutoHide = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - return; - case 310: - this.ImageDrawLine = ((System.Windows.Controls.Image)(target)); - - #line 4207 "..\..\..\MainWindow.xaml" - this.ImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4208 "..\..\..\MainWindow.xaml" - this.ImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); - - #line default - #line hidden - return; - case 311: - this.ImageDrawDashedLine = ((System.Windows.Controls.Image)(target)); - - #line 4211 "..\..\..\MainWindow.xaml" - this.ImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4212 "..\..\..\MainWindow.xaml" - this.ImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); - - #line default - #line hidden - return; - case 312: - this.ImageDrawDotLine = ((System.Windows.Controls.Image)(target)); - - #line 4215 "..\..\..\MainWindow.xaml" - this.ImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4216 "..\..\..\MainWindow.xaml" - this.ImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); - - #line default - #line hidden - return; - case 313: - this.ImageDrawArrow = ((System.Windows.Controls.Image)(target)); - - #line 4219 "..\..\..\MainWindow.xaml" - this.ImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4220 "..\..\..\MainWindow.xaml" - this.ImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); - - #line default - #line hidden - return; - case 314: - this.ImageDrawParallelLine = ((System.Windows.Controls.Image)(target)); - - #line 4223 "..\..\..\MainWindow.xaml" - this.ImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); - - #line default - #line hidden - - #line 4224 "..\..\..\MainWindow.xaml" - this.ImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); - - #line default - #line hidden - return; - case 315: - - #line 4229 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); - - #line default - #line hidden - return; case 316: - - #line 4231 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); - - #line default - #line hidden + this.BoardRectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 317: - #line 4233 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); + #line 4391 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDelete_MouseUp); #line default #line hidden return; case 318: - #line 4235 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); + #line 4427 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BoardSymbolIconDeleteInkAndHistories_MouseUp); #line default #line hidden return; case 319: + this.BoardEraserByStrokes = ((System.Windows.Controls.Border)(target)); - #line 4237 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); + #line 4470 "..\..\..\MainWindow.xaml" + this.BoardEraserByStrokes.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4472 "..\..\..\MainWindow.xaml" + this.BoardEraserByStrokes.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BoardEraserIconByStrokes_Click); #line default #line hidden return; case 320: + this.BoardGeometry = ((System.Windows.Controls.Border)(target)); - #line 4243 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); + #line 4482 "..\..\..\MainWindow.xaml" + this.BoardGeometry.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4484 "..\..\..\MainWindow.xaml" + this.BoardGeometry.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); #line default #line hidden return; case 321: - - #line 4246 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); - - #line default - #line hidden + this.BoardBorderDrawShape = ((System.Windows.Controls.Border)(target)); return; case 322: - #line 4248 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); + #line 4521 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4522 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SymbolIcon)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconPinBorderDrawShape_MouseUp); #line default #line hidden return; case 323: + this.ToggleSwitchDrawShapeBorderAutoHide = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + return; + case 324: + this.ImageDrawLine = ((System.Windows.Controls.Image)(target)); - #line 4250 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + #line 4544 "..\..\..\MainWindow.xaml" + this.ImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - return; - case 324: - #line 4252 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + #line 4545 "..\..\..\MainWindow.xaml" + this.ImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); #line default #line hidden return; case 325: + this.ImageDrawDashedLine = ((System.Windows.Controls.Image)(target)); - #line 4256 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); + #line 4548 "..\..\..\MainWindow.xaml" + this.ImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4549 "..\..\..\MainWindow.xaml" + this.ImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); #line default #line hidden return; case 326: + this.ImageDrawDotLine = ((System.Windows.Controls.Image)(target)); - #line 4262 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + #line 4552 "..\..\..\MainWindow.xaml" + this.ImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4553 "..\..\..\MainWindow.xaml" + this.ImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); #line default #line hidden return; case 327: + this.ImageDrawArrow = ((System.Windows.Controls.Image)(target)); - #line 4266 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + #line 4556 "..\..\..\MainWindow.xaml" + this.ImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4557 "..\..\..\MainWindow.xaml" + this.ImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); #line default #line hidden return; case 328: + this.ImageDrawParallelLine = ((System.Windows.Controls.Image)(target)); - #line 4269 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); + #line 4560 "..\..\..\MainWindow.xaml" + this.ImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); + + #line default + #line hidden + + #line 4561 "..\..\..\MainWindow.xaml" + this.ImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); #line default #line hidden return; case 329: - #line 4273 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + #line 4566 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); #line default #line hidden return; case 330: - #line 4286 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + #line 4568 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); #line default #line hidden return; case 331: - #line 4302 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); + #line 4570 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); #line default #line hidden return; case 332: - #line 4304 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); + #line 4572 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); #line default #line hidden return; case 333: - #line 4306 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + #line 4574 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); #line default #line hidden return; case 334: - #line 4308 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 4580 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 335: - #line 4311 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 4583 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); #line default #line hidden return; case 336: - this.BoardUndo = ((System.Windows.Controls.Border)(target)); - #line 4318 "..\..\..\MainWindow.xaml" - this.BoardUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4319 "..\..\..\MainWindow.xaml" - this.BoardUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); + #line 4585 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 337: - this.BoardRedo = ((System.Windows.Controls.Border)(target)); - #line 4344 "..\..\..\MainWindow.xaml" - this.BoardRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4344 "..\..\..\MainWindow.xaml" - this.BoardRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + #line 4587 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); #line default #line hidden return; case 338: - #line 4374 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4375 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); + #line 4589 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); #line default #line hidden return; case 339: - this.BoardBorderTools = ((System.Windows.Controls.Border)(target)); - return; - case 340: - #line 4426 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 4593 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); #line default #line hidden + return; + case 340: - #line 4427 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 4599 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); #line default #line hidden return; case 341: - #line 4434 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4435 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 4603 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); #line default #line hidden return; case 342: - this.RandomDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 4454 "..\..\..\MainWindow.xaml" - this.RandomDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4455 "..\..\..\MainWindow.xaml" - this.RandomDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + #line 4606 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); #line default #line hidden return; case 343: - this.SingleDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 4474 "..\..\..\MainWindow.xaml" - this.SingleDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4475 "..\..\..\MainWindow.xaml" - this.SingleDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 4610 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); #line default #line hidden return; case 344: - #line 4497 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4498 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + #line 4623 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); #line default #line hidden return; case 345: - #line 4517 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4518 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); + #line 4639 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 346: - #line 4537 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4538 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); + #line 4641 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 347: - #line 4560 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4561 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + #line 4643 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); #line default #line hidden return; case 348: - #line 4580 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4581 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); + #line 4645 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 349: - #line 4600 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 4601 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + #line 4648 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 350: + this.BoardUndo = ((System.Windows.Controls.Border)(target)); - #line 4626 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 4655 "..\..\..\MainWindow.xaml" + this.BoardUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 4627 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + #line 4656 "..\..\..\MainWindow.xaml" + this.BoardUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); #line default #line hidden return; case 351: - this.ViewboxBlackboardRightSide = ((System.Windows.Controls.Viewbox)(target)); + this.BoardRedo = ((System.Windows.Controls.Border)(target)); + + #line 4681 "..\..\..\MainWindow.xaml" + this.BoardRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4681 "..\..\..\MainWindow.xaml" + this.BoardRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + + #line default + #line hidden return; case 352: - this.BlackboardRightSide = ((System.Windows.Controls.Grid)(target)); - return; - case 353: - - #line 4663 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); - - #line default - #line hidden - return; - case 354: - - #line 4688 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); - - #line default - #line hidden - return; - case 355: - this.BtnRightWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 356: - this.BtnRightWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 357: - this.BtnRightPageListWB = ((System.Windows.Controls.Border)(target)); #line 4711 "..\..\..\MainWindow.xaml" - this.BtnRightPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); - - #line default - #line hidden - return; - case 358: - this.BoardBorderRightPageListView = ((System.Windows.Controls.Border)(target)); - return; - case 359: - this.BlackBoardRightSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); - return; - case 360: - this.BlackBoardRightSidePageListView = ((System.Windows.Controls.ListView)(target)); - return; - case 362: - - #line 4774 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); - - #line default - #line hidden - return; - case 363: - this.BtnRightWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 364: - this.BtnRightWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); - return; - case 365: - this.BtnWhiteBoardAdd = ((System.Windows.Controls.Button)(target)); - - #line 4811 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardAdd.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardAdd_Click); - - #line default - #line hidden - return; - case 366: - this.BtnWhiteBoardSwitchPrevious = ((System.Windows.Controls.Button)(target)); - - #line 4817 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchPrevious.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); - - #line default - #line hidden - - #line 4821 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchPrevious.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 367: - this.TextBlockWhiteBoardIndexInfo = ((System.Windows.Controls.TextBlock)(target)); - return; - case 368: - this.BtnWhiteBoardSwitchNext = ((System.Windows.Controls.Button)(target)); - - #line 4854 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchNext.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchNext_Click); - - #line default - #line hidden - - #line 4858 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardSwitchNext.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 369: - this.BtnWhiteBoardDelete = ((System.Windows.Controls.Button)(target)); - - #line 4882 "..\..\..\MainWindow.xaml" - this.BtnWhiteBoardDelete.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardDelete_Click); - - #line default - #line hidden - return; - case 370: - this.GridNotifications = ((System.Windows.Controls.Grid)(target)); - return; - case 371: - this.TextBlockNotice = ((System.Windows.Controls.TextBlock)(target)); - return; - case 372: - this.ViewBoxStackPanelMain = ((System.Windows.Controls.Viewbox)(target)); - return; - case 373: - this.StackPanelMain = ((System.Windows.Controls.StackPanel)(target)); - return; - case 374: - this.StackPanelControl = ((System.Windows.Controls.StackPanel)(target)); - return; - case 375: - this.BtnExit = ((System.Windows.Controls.Button)(target)); - - #line 4910 "..\..\..\MainWindow.xaml" - this.BtnExit.Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); - - #line default - #line hidden - return; - case 376: - this.BtnThickness = ((System.Windows.Controls.Button)(target)); - - #line 4914 "..\..\..\MainWindow.xaml" - this.BtnThickness.Click += new System.Windows.RoutedEventHandler(this.BtnThickness_Click); - - #line default - #line hidden - return; - case 377: - this.BtnSwitchTheme = ((System.Windows.Controls.Button)(target)); - return; - case 378: - this.BtnSwitch = ((System.Windows.Controls.Button)(target)); - - #line 4925 "..\..\..\MainWindow.xaml" - this.BtnSwitch.Click += new System.Windows.RoutedEventHandler(this.BtnSwitch_Click); - - #line default - #line hidden - return; - case 379: - this.BtnHideInkCanvas = ((System.Windows.Controls.Button)(target)); - - #line 4929 "..\..\..\MainWindow.xaml" - this.BtnHideInkCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnHideInkCanvas_Click); - - #line default - #line hidden - return; - case 380: - this.BtnCheckPPT = ((System.Windows.Controls.Button)(target)); - - #line 4933 "..\..\..\MainWindow.xaml" - this.BtnCheckPPT.Click += new System.Windows.RoutedEventHandler(this.BtnCheckPPT_Click); - - #line default - #line hidden - return; - case 381: - this.StackPanelPPTButtons = ((System.Windows.Controls.StackPanel)(target)); - return; - case 382: - this.BtnPPTSlideShow = ((System.Windows.Controls.Button)(target)); - - #line 4939 "..\..\..\MainWindow.xaml" - this.BtnPPTSlideShow.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShow_Click); - - #line default - #line hidden - return; - case 383: - this.BtnPPTSlideShowEnd = ((System.Windows.Controls.Button)(target)); - - #line 4945 "..\..\..\MainWindow.xaml" - this.BtnPPTSlideShowEnd.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShowEnd_Click); - - #line default - #line hidden - return; - case 384: - this.StackPanelPPTControls = ((System.Windows.Controls.StackPanel)(target)); - return; - case 385: - this.BtnPPTSlidesUp = ((System.Windows.Controls.Button)(target)); - - #line 4951 "..\..\..\MainWindow.xaml" - this.BtnPPTSlidesUp.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); - - #line default - #line hidden - return; - case 386: - this.BtnPPTSlidesDown = ((System.Windows.Controls.Button)(target)); - - #line 4956 "..\..\..\MainWindow.xaml" - this.BtnPPTSlidesDown.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); - - #line default - #line hidden - return; - case 387: - this.BtnSwitchSide = ((System.Windows.Controls.Button)(target)); - - #line 4963 "..\..\..\MainWindow.xaml" - this.BtnSwitchSide.Click += new System.Windows.RoutedEventHandler(this.BtnSwitchSide_Click); - - #line default - #line hidden - return; - case 388: - this.BtnHideControl = ((System.Windows.Controls.Button)(target)); - - #line 4968 "..\..\..\MainWindow.xaml" - this.BtnHideControl.Click += new System.Windows.RoutedEventHandler(this.BtnHideControl_Click); - - #line default - #line hidden - return; - case 389: - this.ViewBoxStackPanelShapes = ((System.Windows.Controls.Viewbox)(target)); - return; - case 390: - this.StackPanelShapes = ((System.Windows.Controls.StackPanel)(target)); - return; - case 391: - this.BtnFingerDragMode = ((System.Windows.Controls.Button)(target)); - - #line 4978 "..\..\..\MainWindow.xaml" - this.BtnFingerDragMode.Click += new System.Windows.RoutedEventHandler(this.BtnFingerDragMode_Click); - - #line default - #line hidden - return; - case 392: - - #line 4980 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.StackPanel)(target)).IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.StackPanel_IsVisibleChanged); - - #line default - #line hidden - return; - case 393: - - #line 4985 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); - - #line default - #line hidden - return; - case 394: - - #line 4990 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); - - #line default - #line hidden - return; - case 395: - this.BtnUndo = ((System.Windows.Controls.Button)(target)); - - #line 4997 "..\..\..\MainWindow.xaml" - this.BtnUndo.Click += new System.Windows.RoutedEventHandler(this.BtnUndo_Click); - - #line default - #line hidden - - #line 4999 "..\..\..\MainWindow.xaml" - this.BtnUndo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 396: - this.BtnRedo = ((System.Windows.Controls.Button)(target)); - - #line 5007 "..\..\..\MainWindow.xaml" - this.BtnRedo.Click += new System.Windows.RoutedEventHandler(this.BtnRedo_Click); - - #line default - #line hidden - - #line 5009 "..\..\..\MainWindow.xaml" - this.BtnRedo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); - - #line default - #line hidden - return; - case 397: - this.BtnClearAndHideCanvas = ((System.Windows.Controls.Button)(target)); - - #line 5019 "..\..\..\MainWindow.xaml" - this.BtnClearAndHideCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnSelect_Click); - - #line default - #line hidden - return; - case 398: - this.GridForLeftSideReservedSpace = ((System.Windows.Controls.Grid)(target)); - return; - case 399: - this.LeftBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 400: - this.PPTBtnLBBorder = ((System.Windows.Controls.Border)(target)); - return; - case 401: - this.PPTLBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5034 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5036 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5037 "..\..\..\MainWindow.xaml" - this.PPTLBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 402: - this.PPTLBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 403: - this.PPTLBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 404: - this.PPTLBPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5058 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5058 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5059 "..\..\..\MainWindow.xaml" - this.PPTLBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 405: - this.PPTLBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 406: - this.PPTLBNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5076 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5077 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5077 "..\..\..\MainWindow.xaml" - this.PPTLBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 407: - this.PPTLBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 408: - this.PPTLBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 409: - this.RightBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 410: - this.PPTBtnRBBorder = ((System.Windows.Controls.Border)(target)); - return; - case 411: - this.PPTRBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5106 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5108 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5109 "..\..\..\MainWindow.xaml" - this.PPTRBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 412: - this.PPTRBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 413: - this.PPTRBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 414: - this.PPTRBPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5130 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5130 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5131 "..\..\..\MainWindow.xaml" - this.PPTRBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 415: - this.PPTRBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 416: - this.PPTRBNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5148 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5149 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5149 "..\..\..\MainWindow.xaml" - this.PPTRBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 417: - this.PPTRBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 418: - this.PPTRBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 419: - this.LeftSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 420: - this.PPTBtnLSBorder = ((System.Windows.Controls.Border)(target)); - return; - case 421: - this.PPTLSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5182 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5184 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5184 "..\..\..\MainWindow.xaml" - this.PPTLSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 422: - this.PPTLSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 423: - this.PPTLSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 424: - this.PPTLSPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5204 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5204 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5205 "..\..\..\MainWindow.xaml" - this.PPTLSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 425: - this.PPTLSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 426: - this.PPTBtnPageNow = ((System.Windows.Controls.TextBlock)(target)); - return; - case 427: - this.PPTBtnPageTotal = ((System.Windows.Controls.TextBlock)(target)); - return; - case 428: - this.PPTLSNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5220 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5221 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5221 "..\..\..\MainWindow.xaml" - this.PPTLSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 429: - this.PPTLSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 430: - this.PPTLSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 431: - this.RightSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); - return; - case 432: - this.PPTBtnRSBorder = ((System.Windows.Controls.Border)(target)); - return; - case 433: - this.PPTRSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5248 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); - - #line default - #line hidden - - #line 5250 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); - - #line default - #line hidden - - #line 5250 "..\..\..\MainWindow.xaml" - this.PPTRSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); - - #line default - #line hidden - return; - case 434: - this.PPTRSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 435: - this.PPTRSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 436: - this.PPTRSPageButton = ((System.Windows.Controls.Border)(target)); - - #line 5270 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); - - #line default - #line hidden - - #line 5270 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); - - #line default - #line hidden - - #line 5271 "..\..\..\MainWindow.xaml" - this.PPTRSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); - - #line default - #line hidden - return; - case 437: - this.PPTRSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 438: - this.PPTRSNextButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 5286 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); - - #line default - #line hidden - - #line 5287 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); - - #line default - #line hidden - - #line 5287 "..\..\..\MainWindow.xaml" - this.PPTRSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); - - #line default - #line hidden - return; - case 439: - this.PPTRSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); - return; - case 440: - this.PPTRSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 441: - this.FloatingbarUIForInkReplay = ((System.Windows.Controls.Grid)(target)); - return; - case 442: - this.ViewboxFloatingBar = ((System.Windows.Controls.Viewbox)(target)); - return; - case 443: - this.ViewboxFloatingBarScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); - return; - case 444: - this.BorderFloatingBarMoveControls = ((System.Windows.Controls.Border)(target)); - - #line 5320 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarMoveControls.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseDown); - - #line default - #line hidden - - #line 5320 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarMoveControls.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); - - #line default - #line hidden - return; - case 445: - this.FloatingbarHeadIconImg = ((System.Windows.Controls.Image)(target)); - return; - case 446: - this.BorderFloatingBarMainControls = ((System.Windows.Controls.Border)(target)); - return; - case 447: - this.FloatingbarSelectionBGCanvas = ((System.Windows.Controls.Canvas)(target)); - return; - case 448: - this.FloatingbarSelectionBG = ((System.Windows.Controls.Border)(target)); - return; - case 449: - this.StackPanelFloatingBar = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 450: - this.Cursor_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5343 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5344 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5345 "..\..\..\MainWindow.xaml" - this.Cursor_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorIcon_Click); - - #line default - #line hidden - return; - case 451: - this.CursorToolbarIconImage = ((System.Windows.Controls.Image)(target)); - return; - case 452: - this.CursorIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 453: - this.SelectionToolBarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 454: - this.Pen_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5365 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5366 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5367 "..\..\..\MainWindow.xaml" - this.Pen_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); - - #line default - #line hidden - return; - case 455: - this.PenIcon = ((System.Windows.Controls.Image)(target)); - return; - case 456: - this.PenIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 457: - this.PenToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 458: - this.SymbolIconDelete = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 5387 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 5388 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 5389 "..\..\..\MainWindow.xaml" - this.SymbolIconDelete.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconDelete_MouseUp); - - #line default - #line hidden - return; - case 459: - this.ClearIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); - return; - case 460: - this.TrashBinToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); - return; - case 461: - this.StackPanelCanvasControls = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 462: - this.PenPalette = ((System.Windows.Controls.Border)(target)); - return; - case 463: - this.DefaultPenTabButton = ((System.Windows.Controls.Border)(target)); - - #line 5426 "..\..\..\MainWindow.xaml" - this.DefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); - - #line default - #line hidden - return; - case 464: - this.DefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 465: - this.DefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 466: - this.HighlightPenTabButton = ((System.Windows.Controls.Border)(target)); - - #line 5461 "..\..\..\MainWindow.xaml" - this.HighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); - - #line default - #line hidden - return; - case 467: - this.HighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 468: - this.HighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 469: - - #line 5497 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 5498 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); - - #line default - #line hidden - return; - case 470: - this.DefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 471: - this.ComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - - #line 5518 "..\..\..\MainWindow.xaml" - this.ComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); - - #line default - #line hidden - return; - case 472: - this.NibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - return; - case 473: - this.ToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - - #line 5539 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); - - #line default - #line hidden - return; - case 474: - - #line 5550 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); - - #line default - #line hidden - return; - case 475: - this.InkWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5568 "..\..\..\MainWindow.xaml" - this.InkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); - - #line default - #line hidden - return; - case 476: - this.InkAlphaSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5584 "..\..\..\MainWindow.xaml" - this.InkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); - - #line default - #line hidden - return; - case 477: - this.HighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 478: - this.HighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); - - #line 5605 "..\..\..\MainWindow.xaml" - this.HighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); - - #line default - #line hidden - return; - case 479: - this.DefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); - return; - case 480: - - #line 5627 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 5628 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); + #line 4712 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); + + #line default + #line hidden + return; + case 353: + this.BoardBorderTools = ((System.Windows.Controls.Border)(target)); + return; + case 354: + + #line 4763 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4764 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + + #line default + #line hidden + return; + case 355: + + #line 4771 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4772 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 356: + this.RandomDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 4791 "..\..\..\MainWindow.xaml" + this.RandomDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4792 "..\..\..\MainWindow.xaml" + this.RandomDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 357: + this.SingleDrawPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 4811 "..\..\..\MainWindow.xaml" + this.SingleDrawPanel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4812 "..\..\..\MainWindow.xaml" + this.SingleDrawPanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 358: + + #line 4834 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4835 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + + #line default + #line hidden + return; + case 359: + + #line 4854 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4855 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); + + #line default + #line hidden + return; + case 360: + + #line 4874 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4875 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); + + #line default + #line hidden + return; + case 361: + + #line 4897 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4898 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + + #line default + #line hidden + return; + case 362: + + #line 4917 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4918 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); + + #line default + #line hidden + return; + case 363: + + #line 4937 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4938 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + + #line default + #line hidden + return; + case 364: + + #line 4963 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 4964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + + #line default + #line hidden + return; + case 365: + this.ViewboxBlackboardRightSide = ((System.Windows.Controls.Viewbox)(target)); + return; + case 366: + this.BlackboardRightSide = ((System.Windows.Controls.Grid)(target)); + return; + case 367: + + #line 5000 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 368: + + #line 5025 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + return; + case 369: + this.BtnRightWhiteBoardSwitchPreviousGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 370: + this.BtnRightWhiteBoardSwitchPreviousLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 371: + this.BtnRightPageListWB = ((System.Windows.Controls.Border)(target)); + + #line 5048 "..\..\..\MainWindow.xaml" + this.BtnRightPageListWB.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardPageIndex_Click); + + #line default + #line hidden + return; + case 372: + this.BoardBorderRightPageListView = ((System.Windows.Controls.Border)(target)); + return; + case 373: + this.BlackBoardRightSidePageListScrollViewer = ((iNKORE.UI.WPF.Modern.Controls.ScrollViewerEx)(target)); + return; + case 374: + this.BlackBoardRightSidePageListView = ((System.Windows.Controls.ListView)(target)); + return; + case 376: + + #line 5111 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + return; + case 377: + this.BtnRightWhiteBoardSwitchNextGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 378: + this.BtnRightWhiteBoardSwitchNextLabel = ((System.Windows.Controls.TextBlock)(target)); + return; + case 379: + this.BtnWhiteBoardAdd = ((System.Windows.Controls.Button)(target)); + + #line 5148 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardAdd.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardAdd_Click); + + #line default + #line hidden + return; + case 380: + this.BtnWhiteBoardSwitchPrevious = ((System.Windows.Controls.Button)(target)); + + #line 5154 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchPrevious.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchPrevious_Click); + + #line default + #line hidden + + #line 5158 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchPrevious.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 381: + this.TextBlockWhiteBoardIndexInfo = ((System.Windows.Controls.TextBlock)(target)); + return; + case 382: + this.BtnWhiteBoardSwitchNext = ((System.Windows.Controls.Button)(target)); + + #line 5191 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchNext.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardSwitchNext_Click); + + #line default + #line hidden + + #line 5195 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardSwitchNext.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 383: + this.BtnWhiteBoardDelete = ((System.Windows.Controls.Button)(target)); + + #line 5219 "..\..\..\MainWindow.xaml" + this.BtnWhiteBoardDelete.Click += new System.Windows.RoutedEventHandler(this.BtnWhiteBoardDelete_Click); + + #line default + #line hidden + return; + case 384: + this.GridNotifications = ((System.Windows.Controls.Grid)(target)); + return; + case 385: + this.TextBlockNotice = ((System.Windows.Controls.TextBlock)(target)); + return; + case 386: + this.ViewBoxStackPanelMain = ((System.Windows.Controls.Viewbox)(target)); + return; + case 387: + this.StackPanelMain = ((System.Windows.Controls.StackPanel)(target)); + return; + case 388: + this.StackPanelControl = ((System.Windows.Controls.StackPanel)(target)); + return; + case 389: + this.BtnExit = ((System.Windows.Controls.Button)(target)); + + #line 5247 "..\..\..\MainWindow.xaml" + this.BtnExit.Click += new System.Windows.RoutedEventHandler(this.BtnExit_Click); + + #line default + #line hidden + return; + case 390: + this.BtnThickness = ((System.Windows.Controls.Button)(target)); + + #line 5251 "..\..\..\MainWindow.xaml" + this.BtnThickness.Click += new System.Windows.RoutedEventHandler(this.BtnThickness_Click); + + #line default + #line hidden + return; + case 391: + this.BtnSwitchTheme = ((System.Windows.Controls.Button)(target)); + return; + case 392: + this.BtnSwitch = ((System.Windows.Controls.Button)(target)); + + #line 5262 "..\..\..\MainWindow.xaml" + this.BtnSwitch.Click += new System.Windows.RoutedEventHandler(this.BtnSwitch_Click); + + #line default + #line hidden + return; + case 393: + this.BtnHideInkCanvas = ((System.Windows.Controls.Button)(target)); + + #line 5266 "..\..\..\MainWindow.xaml" + this.BtnHideInkCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnHideInkCanvas_Click); + + #line default + #line hidden + return; + case 394: + this.BtnCheckPPT = ((System.Windows.Controls.Button)(target)); + + #line 5270 "..\..\..\MainWindow.xaml" + this.BtnCheckPPT.Click += new System.Windows.RoutedEventHandler(this.BtnCheckPPT_Click); + + #line default + #line hidden + return; + case 395: + this.StackPanelPPTButtons = ((System.Windows.Controls.StackPanel)(target)); + return; + case 396: + this.BtnPPTSlideShow = ((System.Windows.Controls.Button)(target)); + + #line 5276 "..\..\..\MainWindow.xaml" + this.BtnPPTSlideShow.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShow_Click); + + #line default + #line hidden + return; + case 397: + this.BtnPPTSlideShowEnd = ((System.Windows.Controls.Button)(target)); + + #line 5282 "..\..\..\MainWindow.xaml" + this.BtnPPTSlideShowEnd.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlideShowEnd_Click); + + #line default + #line hidden + return; + case 398: + this.StackPanelPPTControls = ((System.Windows.Controls.StackPanel)(target)); + return; + case 399: + this.BtnPPTSlidesUp = ((System.Windows.Controls.Button)(target)); + + #line 5288 "..\..\..\MainWindow.xaml" + this.BtnPPTSlidesUp.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); + + #line default + #line hidden + return; + case 400: + this.BtnPPTSlidesDown = ((System.Windows.Controls.Button)(target)); + + #line 5293 "..\..\..\MainWindow.xaml" + this.BtnPPTSlidesDown.Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); + + #line default + #line hidden + return; + case 401: + this.BtnSwitchSide = ((System.Windows.Controls.Button)(target)); + + #line 5300 "..\..\..\MainWindow.xaml" + this.BtnSwitchSide.Click += new System.Windows.RoutedEventHandler(this.BtnSwitchSide_Click); + + #line default + #line hidden + return; + case 402: + this.BtnHideControl = ((System.Windows.Controls.Button)(target)); + + #line 5305 "..\..\..\MainWindow.xaml" + this.BtnHideControl.Click += new System.Windows.RoutedEventHandler(this.BtnHideControl_Click); + + #line default + #line hidden + return; + case 403: + this.ViewBoxStackPanelShapes = ((System.Windows.Controls.Viewbox)(target)); + return; + case 404: + this.StackPanelShapes = ((System.Windows.Controls.StackPanel)(target)); + return; + case 405: + this.BtnFingerDragMode = ((System.Windows.Controls.Button)(target)); + + #line 5315 "..\..\..\MainWindow.xaml" + this.BtnFingerDragMode.Click += new System.Windows.RoutedEventHandler(this.BtnFingerDragMode_Click); + + #line default + #line hidden + return; + case 406: + + #line 5317 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.StackPanel)(target)).IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.StackPanel_IsVisibleChanged); + + #line default + #line hidden + return; + case 407: + + #line 5322 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesUp_Click); + + #line default + #line hidden + return; + case 408: + + #line 5327 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnPPTSlidesDown_Click); + + #line default + #line hidden + return; + case 409: + this.BtnUndo = ((System.Windows.Controls.Button)(target)); + + #line 5334 "..\..\..\MainWindow.xaml" + this.BtnUndo.Click += new System.Windows.RoutedEventHandler(this.BtnUndo_Click); + + #line default + #line hidden + + #line 5336 "..\..\..\MainWindow.xaml" + this.BtnUndo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 410: + this.BtnRedo = ((System.Windows.Controls.Button)(target)); + + #line 5344 "..\..\..\MainWindow.xaml" + this.BtnRedo.Click += new System.Windows.RoutedEventHandler(this.BtnRedo_Click); + + #line default + #line hidden + + #line 5346 "..\..\..\MainWindow.xaml" + this.BtnRedo.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Btn_IsEnabledChanged); + + #line default + #line hidden + return; + case 411: + this.BtnClearAndHideCanvas = ((System.Windows.Controls.Button)(target)); + + #line 5356 "..\..\..\MainWindow.xaml" + this.BtnClearAndHideCanvas.Click += new System.Windows.RoutedEventHandler(this.BtnSelect_Click); + + #line default + #line hidden + return; + case 412: + this.GridForLeftSideReservedSpace = ((System.Windows.Controls.Grid)(target)); + return; + case 413: + this.LeftBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 414: + this.PPTBtnLBBorder = ((System.Windows.Controls.Border)(target)); + return; + case 415: + this.PPTLBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5371 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5373 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5374 "..\..\..\MainWindow.xaml" + this.PPTLBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 416: + this.PPTLBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 417: + this.PPTLBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 418: + this.PPTLBPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5395 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5395 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5396 "..\..\..\MainWindow.xaml" + this.PPTLBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 419: + this.PPTLBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 420: + this.PPTLBNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5413 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5414 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5414 "..\..\..\MainWindow.xaml" + this.PPTLBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 421: + this.PPTLBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 422: + this.PPTLBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 423: + this.RightBottomPanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 424: + this.PPTBtnRBBorder = ((System.Windows.Controls.Border)(target)); + return; + case 425: + this.PPTRBPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5443 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5445 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5446 "..\..\..\MainWindow.xaml" + this.PPTRBPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 426: + this.PPTRBPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 427: + this.PPTRBPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 428: + this.PPTRBPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5467 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5467 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5468 "..\..\..\MainWindow.xaml" + this.PPTRBPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 429: + this.PPTRBPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 430: + this.PPTRBNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5485 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5486 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5486 "..\..\..\MainWindow.xaml" + this.PPTRBNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 431: + this.PPTRBNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 432: + this.PPTRBNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 433: + this.LeftSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 434: + this.PPTBtnLSBorder = ((System.Windows.Controls.Border)(target)); + return; + case 435: + this.PPTLSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5519 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5521 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5521 "..\..\..\MainWindow.xaml" + this.PPTLSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 436: + this.PPTLSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 437: + this.PPTLSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 438: + this.PPTLSPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5541 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5541 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5542 "..\..\..\MainWindow.xaml" + this.PPTLSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 439: + this.PPTLSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 440: + this.PPTBtnPageNow = ((System.Windows.Controls.TextBlock)(target)); + return; + case 441: + this.PPTBtnPageTotal = ((System.Windows.Controls.TextBlock)(target)); + return; + case 442: + this.PPTLSNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5557 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5558 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5558 "..\..\..\MainWindow.xaml" + this.PPTLSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 443: + this.PPTLSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 444: + this.PPTLSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 445: + this.RightSidePanelForPPTNavigation = ((System.Windows.Controls.Viewbox)(target)); + return; + case 446: + this.PPTBtnRSBorder = ((System.Windows.Controls.Border)(target)); + return; + case 447: + this.PPTRSPreviousButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5585 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseUp); + + #line default + #line hidden + + #line 5587 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlPrevious_MouseDown); + + #line default + #line hidden + + #line 5587 "..\..\..\MainWindow.xaml" + this.PPTRSPreviousButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlPrevious_MouseLeave); + + #line default + #line hidden + return; + case 448: + this.PPTRSPreviousButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 449: + this.PPTRSPreviousButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 450: + this.PPTRSPageButton = ((System.Windows.Controls.Border)(target)); + + #line 5607 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseUp); + + #line default + #line hidden + + #line 5607 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.PPTNavigationBtn_MouseDown); + + #line default + #line hidden + + #line 5608 "..\..\..\MainWindow.xaml" + this.PPTRSPageButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PPTNavigationBtn_MouseLeave); + + #line default + #line hidden + return; + case 451: + this.PPTRSPageButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 452: + this.PPTRSNextButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 5623 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseUp); + + #line default + #line hidden + + #line 5624 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.GridPPTControlNext_MouseDown); + + #line default + #line hidden + + #line 5624 "..\..\..\MainWindow.xaml" + this.PPTRSNextButtonBorder.MouseLeave += new System.Windows.Input.MouseEventHandler(this.GridPPTControlNext_MouseLeave); + + #line default + #line hidden + return; + case 453: + this.PPTRSNextButtonFeedbackBorder = ((System.Windows.Controls.Border)(target)); + return; + case 454: + this.PPTRSNextButtonGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 455: + this.FloatingbarUIForInkReplay = ((System.Windows.Controls.Grid)(target)); + return; + case 456: + this.ViewboxFloatingBar = ((System.Windows.Controls.Viewbox)(target)); + return; + case 457: + this.ViewboxFloatingBarScaleTransform = ((System.Windows.Media.ScaleTransform)(target)); + return; + case 458: + this.BorderFloatingBarMoveControls = ((System.Windows.Controls.Border)(target)); + + #line 5657 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarMoveControls.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseDown); + + #line default + #line hidden + + #line 5657 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarMoveControls.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); + + #line default + #line hidden + return; + case 459: + this.FloatingbarHeadIconImg = ((System.Windows.Controls.Image)(target)); + return; + case 460: + this.BorderFloatingBarMainControls = ((System.Windows.Controls.Border)(target)); + return; + case 461: + this.FloatingbarSelectionBGCanvas = ((System.Windows.Controls.Canvas)(target)); + return; + case 462: + this.FloatingbarSelectionBG = ((System.Windows.Controls.Border)(target)); + return; + case 463: + this.StackPanelFloatingBar = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 464: + this.Cursor_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5680 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5681 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5682 "..\..\..\MainWindow.xaml" + this.Cursor_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorIcon_Click); + + #line default + #line hidden + return; + case 465: + this.CursorToolbarIconImage = ((System.Windows.Controls.Image)(target)); + return; + case 466: + this.CursorIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 467: + this.SelectionToolBarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 468: + this.Pen_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5702 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5703 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5704 "..\..\..\MainWindow.xaml" + this.Pen_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.PenIcon_Click); + + #line default + #line hidden + return; + case 469: + this.PenIcon = ((System.Windows.Controls.Image)(target)); + return; + case 470: + this.PenIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 471: + this.PenToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 472: + this.SymbolIconDelete = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 5724 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 5725 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 5726 "..\..\..\MainWindow.xaml" + this.SymbolIconDelete.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconDelete_MouseUp); + + #line default + #line hidden + return; + case 473: + this.ClearIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + return; + case 474: + this.TrashBinToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + return; + case 475: + this.StackPanelCanvasControls = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 476: + this.PenPalette = ((System.Windows.Controls.Border)(target)); + return; + case 477: + this.DefaultPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 5763 "..\..\..\MainWindow.xaml" + this.DefaultPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToDefaultPen); + + #line default + #line hidden + return; + case 478: + this.DefaultPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + return; + case 479: + this.DefaultPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 480: + this.HighlightPenTabButton = ((System.Windows.Controls.Border)(target)); + + #line 5798 "..\..\..\MainWindow.xaml" + this.HighlightPenTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToHighlighterPen); #line default #line hidden return; case 481: - this.ColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + this.HighlightPenTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 482: - this.ColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.HighlightPenTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 483: - this.BorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5650 "..\..\..\MainWindow.xaml" - this.BorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); + #line 5834 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 5835 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); #line default #line hidden return; case 484: - this.ViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); + this.DefaultPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 485: - this.BorderPenColorWhite = ((System.Windows.Controls.Border)(target)); + this.ComboBoxPenStyle = ((System.Windows.Controls.ComboBox)(target)); - #line 5668 "..\..\..\MainWindow.xaml" - this.BorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); + #line 5855 "..\..\..\MainWindow.xaml" + this.ComboBoxPenStyle.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxPenStyle_SelectionChanged); #line default #line hidden return; case 486: - this.ViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); + this.NibModeSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 487: - this.BorderPenColorRed = ((System.Windows.Controls.Border)(target)); + this.ToggleSwitchEnableNibMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 5685 "..\..\..\MainWindow.xaml" - this.BorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + #line 5876 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableNibMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableNibMode_Toggled); #line default #line hidden return; case 488: - this.ViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + + #line 5887 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)).Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableInkToShape_Toggled); + + #line default + #line hidden return; case 489: - this.BorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + this.InkWidthSlider = ((System.Windows.Controls.Slider)(target)); - #line 5703 "..\..\..\MainWindow.xaml" - this.BorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + #line 5905 "..\..\..\MainWindow.xaml" + this.InkWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkWidthSlider_ValueChanged); #line default #line hidden return; case 490: - this.ViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + this.InkAlphaSlider = ((System.Windows.Controls.Slider)(target)); + + #line 5921 "..\..\..\MainWindow.xaml" + this.InkAlphaSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.InkAlphaSlider_ValueChanged); + + #line default + #line hidden return; case 491: - this.BorderPenColorGreen = ((System.Windows.Controls.Border)(target)); - - #line 5728 "..\..\..\MainWindow.xaml" - this.BorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); - - #line default - #line hidden + this.HighlighterPenPropsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 492: - this.ViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + this.HighlighterWidthSlider = ((System.Windows.Controls.Slider)(target)); + + #line 5942 "..\..\..\MainWindow.xaml" + this.HighlighterWidthSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.HighlighterWidthSlider_ValueChanged); + + #line default + #line hidden return; case 493: - this.BorderPenColorBlue = ((System.Windows.Controls.Border)(target)); - - #line 5745 "..\..\..\MainWindow.xaml" - this.BorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); - - #line default - #line hidden + this.DefaultPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); return; case 494: - this.ViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); - return; - case 495: - this.BorderPenColorPink = ((System.Windows.Controls.Border)(target)); - #line 5762 "..\..\..\MainWindow.xaml" - this.BorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + #line 5964 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 5965 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Border)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ColorThemeSwitch_MouseUp); #line default #line hidden return; + case 495: + this.ColorThemeSwitchIcon = ((System.Windows.Controls.Image)(target)); + return; case 496: - this.ViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + this.ColorThemeSwitchTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 497: - this.BorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + this.BorderPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5779 "..\..\..\MainWindow.xaml" - this.BorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + #line 5987 "..\..\..\MainWindow.xaml" + this.BorderPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlack_Click); #line default #line hidden return; case 498: - this.ViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + this.ViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; case 499: - this.BorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + this.BorderPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 5797 "..\..\..\MainWindow.xaml" - this.BorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + #line 6005 "..\..\..\MainWindow.xaml" + this.BorderPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorWhite_Click); #line default #line hidden return; case 500: - this.ViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + this.ViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; case 501: - this.HighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BorderPenColorRed = ((System.Windows.Controls.Border)(target)); + + #line 6022 "..\..\..\MainWindow.xaml" + this.BorderPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorRed_Click); + + #line default + #line hidden return; case 502: + this.ViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 503: + this.BorderPenColorYellow = ((System.Windows.Controls.Border)(target)); + + #line 6040 "..\..\..\MainWindow.xaml" + this.BorderPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorYellow_Click); + + #line default + #line hidden + return; + case 504: + this.ViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 505: + this.BorderPenColorGreen = ((System.Windows.Controls.Border)(target)); + + #line 6065 "..\..\..\MainWindow.xaml" + this.BorderPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorGreen_Click); + + #line default + #line hidden + return; + case 506: + this.ViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 507: + this.BorderPenColorBlue = ((System.Windows.Controls.Border)(target)); + + #line 6082 "..\..\..\MainWindow.xaml" + this.BorderPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorBlue_Click); + + #line default + #line hidden + return; + case 508: + this.ViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 509: + this.BorderPenColorPink = ((System.Windows.Controls.Border)(target)); + + #line 6099 "..\..\..\MainWindow.xaml" + this.BorderPenColorPink.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorPink_Click); + + #line default + #line hidden + return; + case 510: + this.ViewboxBtnColorPinkContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 511: + this.BorderPenColorTeal = ((System.Windows.Controls.Border)(target)); + + #line 6116 "..\..\..\MainWindow.xaml" + this.BorderPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorTeal_Click); + + #line default + #line hidden + return; + case 512: + this.ViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 513: + this.BorderPenColorOrange = ((System.Windows.Controls.Border)(target)); + + #line 6134 "..\..\..\MainWindow.xaml" + this.BorderPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnColorOrange_Click); + + #line default + #line hidden + return; + case 514: + this.ViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); + return; + case 515: + this.HighlighterPenColorsPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 516: this.HighlighterPenColorBlack = ((System.Windows.Controls.Border)(target)); - #line 5830 "..\..\..\MainWindow.xaml" + #line 6167 "..\..\..\MainWindow.xaml" this.HighlighterPenColorBlack.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlack_Click); #line default #line hidden return; - case 503: + case 517: this.HighlighterPenViewboxBtnColorBlackContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 504: + case 518: this.HighlighterPenColorWhite = ((System.Windows.Controls.Border)(target)); - #line 5866 "..\..\..\MainWindow.xaml" + #line 6203 "..\..\..\MainWindow.xaml" this.HighlighterPenColorWhite.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorWhite_Click); #line default #line hidden return; - case 505: + case 519: this.HighlighterPenViewboxBtnColorWhiteContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 506: + case 520: this.HighlighterPenColorRed = ((System.Windows.Controls.Border)(target)); - #line 5900 "..\..\..\MainWindow.xaml" + #line 6237 "..\..\..\MainWindow.xaml" this.HighlighterPenColorRed.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorRed_Click); #line default #line hidden return; - case 507: + case 521: this.HighlighterPenViewboxBtnColorRedContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 508: + case 522: this.HighlighterPenColorYellow = ((System.Windows.Controls.Border)(target)); - #line 5934 "..\..\..\MainWindow.xaml" + #line 6271 "..\..\..\MainWindow.xaml" this.HighlighterPenColorYellow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorYellow_Click); #line default #line hidden return; - case 509: + case 523: this.HighlighterPenViewboxBtnColorYellowContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 510: + case 524: this.HighlighterPenColorGreen = ((System.Windows.Controls.Border)(target)); - #line 5968 "..\..\..\MainWindow.xaml" + #line 6305 "..\..\..\MainWindow.xaml" this.HighlighterPenColorGreen.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorGreen_Click); #line default #line hidden return; - case 511: + case 525: this.HighlighterPenViewboxBtnColorGreenContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 512: + case 526: this.HighlighterPenColorZinc = ((System.Windows.Controls.Border)(target)); - #line 6008 "..\..\..\MainWindow.xaml" + #line 6345 "..\..\..\MainWindow.xaml" this.HighlighterPenColorZinc.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorZinc_Click); #line default #line hidden return; - case 513: + case 527: this.HighlighterPenViewboxBtnColorZincContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 514: + case 528: this.HighlighterPenColorBlue = ((System.Windows.Controls.Border)(target)); - #line 6042 "..\..\..\MainWindow.xaml" + #line 6379 "..\..\..\MainWindow.xaml" this.HighlighterPenColorBlue.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorBlue_Click); #line default #line hidden return; - case 515: + case 529: this.HighlighterPenViewboxBtnColorBlueContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 516: + case 530: this.HighlighterPenPenColorPurple = ((System.Windows.Controls.Border)(target)); - #line 6077 "..\..\..\MainWindow.xaml" + #line 6414 "..\..\..\MainWindow.xaml" this.HighlighterPenPenColorPurple.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorPurple_Click); #line default #line hidden return; - case 517: + case 531: this.HighlighterPenViewboxBtnColorPurpleContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 518: + case 532: this.HighlighterPenColorTeal = ((System.Windows.Controls.Border)(target)); - #line 6111 "..\..\..\MainWindow.xaml" + #line 6448 "..\..\..\MainWindow.xaml" this.HighlighterPenColorTeal.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorTeal_Click); #line default #line hidden return; - case 519: + case 533: this.HighlighterPenViewboxBtnColorTealContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 520: + case 534: this.HighlighterPenColorOrange = ((System.Windows.Controls.Border)(target)); - #line 6145 "..\..\..\MainWindow.xaml" + #line 6482 "..\..\..\MainWindow.xaml" this.HighlighterPenColorOrange.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnHighlighterColorOrange_Click); #line default #line hidden return; - case 521: + case 535: this.HighlighterPenViewboxBtnColorOrangeContent = ((System.Windows.Controls.Viewbox)(target)); return; - case 522: + case 536: this.Eraser_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6187 "..\..\..\MainWindow.xaml" + #line 6524 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6188 "..\..\..\MainWindow.xaml" + #line 6525 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6189 "..\..\..\MainWindow.xaml" + #line 6526 "..\..\..\MainWindow.xaml" this.Eraser_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.EraserIcon_Click); #line default #line hidden return; - case 523: + case 537: this.CircleEraserToolbarIconImage = ((System.Windows.Controls.Image)(target)); return; - case 524: + case 538: this.CircleEraserIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 525: + case 539: this.CircleEraserToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 526: + case 540: this.EraserByStrokes_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6210 "..\..\..\MainWindow.xaml" + #line 6547 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6211 "..\..\..\MainWindow.xaml" + #line 6548 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6212 "..\..\..\MainWindow.xaml" + #line 6549 "..\..\..\MainWindow.xaml" this.EraserByStrokes_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.EraserIconByStrokes_Click); #line default #line hidden return; - case 527: + case 541: this.StrokeEraserToolbarIconImage = ((System.Windows.Controls.Image)(target)); return; - case 528: + case 542: this.StrokeEraserIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 529: + case 543: this.InkEraserToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 530: + case 544: this.SymbolIconSelect = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6233 "..\..\..\MainWindow.xaml" + #line 6570 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6234 "..\..\..\MainWindow.xaml" + #line 6571 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6235 "..\..\..\MainWindow.xaml" + #line 6572 "..\..\..\MainWindow.xaml" this.SymbolIconSelect.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSelect_MouseUp); #line default #line hidden return; - case 531: + case 545: this.LassoSelect = ((System.Windows.Controls.Image)(target)); return; - case 532: + case 546: this.LassoSelectIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 533: + case 547: this.LassoToolToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 534: + case 548: this.ShapeDrawFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6256 "..\..\..\MainWindow.xaml" + #line 6593 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6257 "..\..\..\MainWindow.xaml" + #line 6594 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6258 "..\..\..\MainWindow.xaml" + #line 6595 "..\..\..\MainWindow.xaml" this.ShapeDrawFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageDrawShape_MouseUp); #line default #line hidden return; - case 535: + case 549: this.ShapesIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; - case 536: + case 550: this.ShapesToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; - case 537: + case 551: this.BorderDrawShape = ((System.Windows.Controls.Border)(target)); return; - case 538: + case 552: this.BoardImageDrawLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6305 "..\..\..\MainWindow.xaml" + #line 6642 "..\..\..\MainWindow.xaml" this.BoardImageDrawLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6306 "..\..\..\MainWindow.xaml" + #line 6643 "..\..\..\MainWindow.xaml" this.BoardImageDrawLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawLine_Click); #line default #line hidden return; - case 539: + case 553: this.BoardImageDrawDashedLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6314 "..\..\..\MainWindow.xaml" + #line 6651 "..\..\..\MainWindow.xaml" this.BoardImageDrawDashedLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6315 "..\..\..\MainWindow.xaml" + #line 6652 "..\..\..\MainWindow.xaml" this.BoardImageDrawDashedLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedLine_Click); #line default #line hidden return; - case 540: + case 554: this.BoardImageDrawDotLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6324 "..\..\..\MainWindow.xaml" + #line 6661 "..\..\..\MainWindow.xaml" this.BoardImageDrawDotLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6325 "..\..\..\MainWindow.xaml" + #line 6662 "..\..\..\MainWindow.xaml" this.BoardImageDrawDotLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDotLine_Click); #line default #line hidden return; - case 541: + case 555: this.BoardImageDrawArrow = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6334 "..\..\..\MainWindow.xaml" + #line 6671 "..\..\..\MainWindow.xaml" this.BoardImageDrawArrow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6335 "..\..\..\MainWindow.xaml" + #line 6672 "..\..\..\MainWindow.xaml" this.BoardImageDrawArrow.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawArrow_Click); #line default #line hidden return; - case 542: + case 556: this.BoardImageDrawParallelLine = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6343 "..\..\..\MainWindow.xaml" + #line 6680 "..\..\..\MainWindow.xaml" this.BoardImageDrawParallelLine.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseDown); #line default #line hidden - #line 6344 "..\..\..\MainWindow.xaml" + #line 6681 "..\..\..\MainWindow.xaml" this.BoardImageDrawParallelLine.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParallelLine_Click); - #line default - #line hidden - return; - case 543: - - #line 6353 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); - - #line default - #line hidden - return; - case 544: - - #line 6362 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); - - #line default - #line hidden - return; - case 545: - - #line 6370 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); - - #line default - #line hidden - return; - case 546: - - #line 6380 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); - - #line default - #line hidden - return; - case 547: - - #line 6395 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); - - #line default - #line hidden - return; - case 548: - - #line 6398 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); - - #line default - #line hidden - return; - case 549: - - #line 6401 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); - - #line default - #line hidden - return; - case 550: - - #line 6404 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); - - #line default - #line hidden - return; - case 551: - - #line 6407 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); - - #line default - #line hidden - return; - case 552: - - #line 6412 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); - - #line default - #line hidden - return; - case 553: - - #line 6419 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); - - #line default - #line hidden - return; - case 554: - - #line 6427 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); - - #line default - #line hidden - return; - case 555: - - #line 6435 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); - - #line default - #line hidden - return; - case 556: - - #line 6445 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); - #line default #line hidden return; case 557: - #line 6448 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); + #line 6690 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 558: - #line 6450 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); + #line 6699 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 559: - #line 6452 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + #line 6707 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); #line default #line hidden return; case 560: - #line 6454 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + #line 6717 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); #line default #line hidden return; case 561: - #line 6458 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); + #line 6732 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate1_Click); #line default #line hidden return; case 562: - #line 6464 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + #line 6735 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate2_Click); #line default #line hidden return; case 563: - #line 6468 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + #line 6738 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate3_Click); #line default #line hidden return; case 564: - #line 6470 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); + #line 6741 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate4_Click); #line default #line hidden return; case 565: - #line 6474 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + #line 6744 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCoordinate5_Click); #line default #line hidden return; case 566: - #line 6487 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + #line 6749 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 567: - #line 6503 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); + #line 6756 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 568: - #line 6505 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); + #line 6764 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 569: - #line 6507 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + #line 6772 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); #line default #line hidden return; case 570: - #line 6509 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 6782 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangleCenter_Click); #line default #line hidden return; case 571: - #line 6512 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + #line 6785 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawEllipse_Click); #line default #line hidden return; case 572: - this.SymbolIconUndo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6520 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); - - #line default - #line hidden - - #line 6521 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6522 "..\..\..\MainWindow.xaml" - this.SymbolIconUndo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6787 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCircle_Click); #line default #line hidden return; case 573: - this.UndoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + + #line 6789 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawDashedCircle_Click); + + #line default + #line hidden return; case 574: - this.UndoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6791 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipse_Click); + + #line default + #line hidden return; case 575: - this.SymbolIconRedo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6548 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); - - #line default - #line hidden - - #line 6549 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6550 "..\..\..\MainWindow.xaml" - this.SymbolIconRedo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6795 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCenterEllipseWithFocalPoint_Click); #line default #line hidden return; case 576: - this.RedoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); + + #line 6801 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbola_Click); + + #line default + #line hidden return; case 577: - this.RedoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6805 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawHyperbolaWithFocalPoint_Click); + + #line default + #line hidden return; case 578: - this.CursorWithDelFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6576 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6577 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6578 "..\..\..\MainWindow.xaml" - this.CursorWithDelFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorWithDelIcon_Click); + #line 6807 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola1_Click); #line default #line hidden return; case 579: - this.ClearAndMouseToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + + #line 6811 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabolaWithFocalPoint_Click); + + #line default + #line hidden return; case 580: - this.EraserSizePanel = ((System.Windows.Controls.Border)(target)); + + #line 6824 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawParabola2_Click); + + #line default + #line hidden return; case 581: - this.ComboBoxEraserSizeFloatingBar = ((System.Windows.Controls.ComboBox)(target)); - #line 6621 "..\..\..\MainWindow.xaml" - this.ComboBoxEraserSizeFloatingBar.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); + #line 6840 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawRectangle_Click); #line default #line hidden return; case 582: - this.CircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6636 "..\..\..\MainWindow.xaml" - this.CircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); + #line 6842 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCylinder_Click); #line default #line hidden return; case 583: - this.CircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6844 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCone_Click); + + #line default + #line hidden return; case 584: - this.CircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + + #line 6846 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); + + #line default + #line hidden return; case 585: - this.RectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6662 "..\..\..\MainWindow.xaml" - this.RectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); + #line 6849 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BtnDrawCuboid_Click); #line default #line hidden return; case 586: - this.RectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.SymbolIconUndo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6857 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconUndo_MouseUp); + + #line default + #line hidden + + #line 6858 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 6859 "..\..\..\MainWindow.xaml" + this.SymbolIconUndo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden return; case 587: - this.RectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); + this.UndoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; case 588: - this.WhiteboardFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 6695 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6696 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6697 "..\..\..\MainWindow.xaml" - this.WhiteboardFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); - - #line default - #line hidden + this.UndoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 589: - this.WhiteboardToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.SymbolIconRedo = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 6885 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRedo_MouseUp); + + #line default + #line hidden + + #line 6886 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 6887 "..\..\..\MainWindow.xaml" + this.SymbolIconRedo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden return; case 590: - this.ToolsFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - - #line 6718 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); - - #line default - #line hidden - - #line 6719 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); - - #line default - #line hidden - - #line 6720 "..\..\..\MainWindow.xaml" - this.ToolsFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); - - #line default - #line hidden + this.RedoIconGeometry = ((System.Windows.Media.GeometryDrawing)(target)); return; case 591: - this.ToolsToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.RedoToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 592: - this.Fold_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + this.CursorWithDelFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6742 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + #line 6913 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6743 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + #line 6914 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); #line default #line hidden - #line 6744 "..\..\..\MainWindow.xaml" - this.Fold_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.FoldFloatingBar_MouseUp); + #line 6915 "..\..\..\MainWindow.xaml" + this.CursorWithDelFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CursorWithDelIcon_Click); #line default #line hidden return; case 593: - this.HideToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ClearAndMouseToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 594: - this.BorderTools = ((System.Windows.Controls.Border)(target)); + this.EraserSizePanel = ((System.Windows.Controls.Border)(target)); return; case 595: + this.ComboBoxEraserSizeFloatingBar = ((System.Windows.Controls.ComboBox)(target)); - #line 6781 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6782 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + #line 6958 "..\..\..\MainWindow.xaml" + this.ComboBoxEraserSizeFloatingBar.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBoxEraserSizeFloatingBar_SelectionChanged); #line default #line hidden return; case 596: + this.CircleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6789 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6790 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 6973 "..\..\..\MainWindow.xaml" + this.CircleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToCircleEraser); #line default #line hidden return; case 597: - - #line 6809 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6810 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); - - #line default - #line hidden + this.CircleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 598: - - #line 6829 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6830 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); - - #line default - #line hidden + this.CircleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 599: + this.RectangleEraserTabButton = ((System.Windows.Controls.Border)(target)); - #line 6852 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6853 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); + #line 6999 "..\..\..\MainWindow.xaml" + this.RectangleEraserTabButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SwitchToRectangleEraser); #line default #line hidden return; case 600: - - #line 6872 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6873 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); - - #line default - #line hidden + this.RectangleEraserTabButtonIndicator = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 601: - - #line 6892 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6893 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); - - #line default - #line hidden + this.RectangleEraserTabButtonText = ((System.Windows.Controls.TextBlock)(target)); return; case 602: + this.WhiteboardFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6915 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7032 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6916 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); + #line 7033 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7034 "..\..\..\MainWindow.xaml" + this.WhiteboardFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); #line default #line hidden return; case 603: - - #line 6935 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); - - #line default - #line hidden - - #line 6936 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); - - #line default - #line hidden + this.WhiteboardToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 604: + this.ToolsFloatingBarBtn = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6955 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7055 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); #line default #line hidden - #line 6956 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + #line 7056 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7057 "..\..\..\MainWindow.xaml" + this.ToolsFloatingBarBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconTools_MouseUp); #line default #line hidden return; case 605: - this.EnableTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + this.ToolsToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 606: + this.Fold_Icon = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); - #line 6992 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); + #line 7079 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.FloatingBarToolBtnMouseDownFeedback_Panel); + + #line default + #line hidden + + #line 7080 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseLeave += new System.Windows.Input.MouseEventHandler(this.FloatingBarToolBtnMouseLeaveFeedback_Panel); + + #line default + #line hidden + + #line 7081 "..\..\..\MainWindow.xaml" + this.Fold_Icon.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.FoldFloatingBar_MouseUp); #line default #line hidden return; case 607: - this.EnableTwoFingerGestureBtn = ((System.Windows.Controls.Image)(target)); + this.HideToolbarTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 608: - this.gestureiconText = ((System.Windows.Controls.TextBlock)(target)); + this.BorderTools = ((System.Windows.Controls.Border)(target)); return; case 609: - this.TwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + + #line 7118 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7119 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Image)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CloseBordertools_MouseUp); + + #line default + #line hidden return; case 610: - this.ToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7025 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); + #line 7126 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7127 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); #line default #line hidden return; case 611: - this.TwoFingerGestureSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); + + #line 7146 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7147 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden return; case 612: - this.ToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7049 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + #line 7166 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7167 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); #line default #line hidden return; case 613: - this.ToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7074 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); + #line 7189 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7190 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSaveStrokes_MouseUp); #line default #line hidden return; case 614: - this.ToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7099 "..\..\..\MainWindow.xaml" - this.ToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + #line 7209 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7210 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconOpenStrokes_MouseUp); #line default #line hidden return; case 615: - this.BorderFloatingBarExitPPTBtn = ((System.Windows.Controls.Border)(target)); - #line 7118 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarExitPPTBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + #line 7229 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7118 "..\..\..\MainWindow.xaml" - this.BorderFloatingBarExitPPTBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImagePPTControlEnd_MouseUp); + #line 7230 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.GridInkReplayButton_MouseUp); #line default #line hidden return; case 616: - this.GridForFloatingBarDraging = ((System.Windows.Controls.Grid)(target)); - #line 7137 "..\..\..\MainWindow.xaml" - this.GridForFloatingBarDraging.MouseMove += new System.Windows.Input.MouseEventHandler(this.SymbolIconEmoji_MouseMove); + #line 7252 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7137 "..\..\..\MainWindow.xaml" - this.GridForFloatingBarDraging.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); + #line 7253 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconScreenshot_MouseUp); #line default #line hidden return; case 617: - this.InkCanvasForInkReplay = ((System.Windows.Controls.InkCanvas)(target)); - #line 7140 "..\..\..\MainWindow.xaml" - this.InkCanvasForInkReplay.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvasForInkReplay_MouseDown); + #line 7272 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7273 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.OperatingGuideWindowIcon_MouseUp); #line default #line hidden return; case 618: - this.BorderInkReplayToolBox = ((System.Windows.Controls.Border)(target)); - return; - case 619: - this.InkReplayPanelStatusText = ((System.Windows.Controls.TextBlock)(target)); - return; - case 620: - this.InkReplayPlayPauseBorder = ((System.Windows.Controls.Border)(target)); - #line 7169 "..\..\..\MainWindow.xaml" - this.InkReplayPlayPauseBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseDown); + #line 7292 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); #line default #line hidden - #line 7170 "..\..\..\MainWindow.xaml" - this.InkReplayPlayPauseBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseUp); + #line 7293 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconSettings_Click); + + #line default + #line hidden + return; + case 619: + this.EnableTwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); + return; + case 620: + + #line 7329 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.TwoFingerGestureBorder_MouseUp); #line default #line hidden return; case 621: - this.InkReplayPlayButtonImage = ((System.Windows.Controls.Image)(target)); + this.EnableTwoFingerGestureBtn = ((System.Windows.Controls.Image)(target)); return; case 622: - this.InkReplayPauseButtonImage = ((System.Windows.Controls.Image)(target)); + this.gestureiconText = ((System.Windows.Controls.TextBlock)(target)); return; case 623: - this.InkReplayStopButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 7222 "..\..\..\MainWindow.xaml" - this.InkReplayStopButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7223 "..\..\..\MainWindow.xaml" - this.InkReplayStopButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseUp); - - #line default - #line hidden + this.TwoFingerGestureBorder = ((System.Windows.Controls.Border)(target)); return; case 624: - this.InkReplayReplayButtonBorder = ((System.Windows.Controls.Border)(target)); + this.ToggleSwitchEnableMultiTouchMode = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7245 "..\..\..\MainWindow.xaml" - this.InkReplayReplayButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7246 "..\..\..\MainWindow.xaml" - this.InkReplayReplayButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseUp); + #line 7362 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableMultiTouchMode.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableMultiTouchMode_Toggled); #line default #line hidden return; case 625: - this.InkReplaySpeedButtonBorder = ((System.Windows.Controls.Border)(target)); - - #line 7265 "..\..\..\MainWindow.xaml" - this.InkReplaySpeedButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseDown); - - #line default - #line hidden - - #line 7266 "..\..\..\MainWindow.xaml" - this.InkReplaySpeedButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseUp); - - #line default - #line hidden + this.TwoFingerGestureSimpleStackPanel = ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)); return; case 626: - this.InkReplaySpeedTextBlock = ((System.Windows.Controls.TextBlock)(target)); + this.ToggleSwitchEnableTwoFingerTranslate = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 7386 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerTranslate.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerTranslate_Toggled); + + #line default + #line hidden return; case 627: - this.LeftSidePanel = ((System.Windows.Controls.Viewbox)(target)); + this.ToggleSwitchEnableTwoFingerZoom = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); - #line 7298 "..\..\..\MainWindow.xaml" - this.LeftSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.LeftUnFoldButtonDisplayQuickPanel_MouseUp); + #line 7411 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerZoom.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerZoom_Toggled); #line default #line hidden return; case 628: - this.LeftUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + this.ToggleSwitchEnableTwoFingerRotation = ((iNKORE.UI.WPF.Modern.Controls.ToggleSwitch)(target)); + + #line 7436 "..\..\..\MainWindow.xaml" + this.ToggleSwitchEnableTwoFingerRotation.Toggled += new System.Windows.RoutedEventHandler(this.ToggleSwitchEnableTwoFingerRotation_Toggled); + + #line default + #line hidden return; case 629: - this.LeftUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + this.BorderFloatingBarExitPPTBtn = ((System.Windows.Controls.Border)(target)); + + #line 7455 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarExitPPTBtn.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseDown); + + #line default + #line hidden + + #line 7455 "..\..\..\MainWindow.xaml" + this.BorderFloatingBarExitPPTBtn.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImagePPTControlEnd_MouseUp); + + #line default + #line hidden return; case 630: + this.GridForFloatingBarDraging = ((System.Windows.Controls.Grid)(target)); - #line 7314 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 7474 "..\..\..\MainWindow.xaml" + this.GridForFloatingBarDraging.MouseMove += new System.Windows.Input.MouseEventHandler(this.SymbolIconEmoji_MouseMove); + + #line default + #line hidden + + #line 7474 "..\..\..\MainWindow.xaml" + this.GridForFloatingBarDraging.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconEmoji_MouseUp); #line default #line hidden return; case 631: + this.InkCanvasForInkReplay = ((System.Windows.Controls.InkCanvas)(target)); - #line 7322 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + #line 7477 "..\..\..\MainWindow.xaml" + this.InkCanvasForInkReplay.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvasForInkReplay_MouseDown); #line default #line hidden return; case 632: - - #line 7331 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); - - #line default - #line hidden + this.BorderInkReplayToolBox = ((System.Windows.Controls.Border)(target)); return; case 633: + this.InkReplayPanelStatusText = ((System.Windows.Controls.TextBlock)(target)); + return; + case 634: + this.InkReplayPlayPauseBorder = ((System.Windows.Controls.Border)(target)); - #line 7338 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + #line 7506 "..\..\..\MainWindow.xaml" + this.InkReplayPlayPauseBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseDown); #line default #line hidden - return; - case 634: - #line 7346 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); + #line 7507 "..\..\..\MainWindow.xaml" + this.InkReplayPlayPauseBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayPlayPauseBorder_OnMouseUp); #line default #line hidden return; case 635: - - #line 7354 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); - - #line default - #line hidden + this.InkReplayPlayButtonImage = ((System.Windows.Controls.Image)(target)); return; case 636: - this.RightSidePanel = ((System.Windows.Controls.Viewbox)(target)); + this.InkReplayPauseButtonImage = ((System.Windows.Controls.Image)(target)); + return; + case 637: + this.InkReplayStopButtonBorder = ((System.Windows.Controls.Border)(target)); - #line 7363 "..\..\..\MainWindow.xaml" - this.RightSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.RightUnFoldButtonDisplayQuickPanel_MouseUp); + #line 7559 "..\..\..\MainWindow.xaml" + this.InkReplayStopButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7560 "..\..\..\MainWindow.xaml" + this.InkReplayStopButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayStopButtonBorder_OnMouseUp); #line default #line hidden return; - case 637: - this.RightUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); - return; case 638: - this.RightUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + this.InkReplayReplayButtonBorder = ((System.Windows.Controls.Border)(target)); + + #line 7582 "..\..\..\MainWindow.xaml" + this.InkReplayReplayButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7583 "..\..\..\MainWindow.xaml" + this.InkReplayReplayButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplayReplayButtonBorder_OnMouseUp); + + #line default + #line hidden return; case 639: + this.InkReplaySpeedButtonBorder = ((System.Windows.Controls.Border)(target)); - #line 7387 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + #line 7602 "..\..\..\MainWindow.xaml" + this.InkReplaySpeedButtonBorder.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseDown); + + #line default + #line hidden + + #line 7603 "..\..\..\MainWindow.xaml" + this.InkReplaySpeedButtonBorder.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.InkReplaySpeedButtonBorder_OnMouseUp); #line default #line hidden return; case 640: - - #line 7395 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); - - #line default - #line hidden + this.InkReplaySpeedTextBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 641: + this.LeftSidePanel = ((System.Windows.Controls.Viewbox)(target)); - #line 7404 "..\..\..\MainWindow.xaml" - ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + #line 7635 "..\..\..\MainWindow.xaml" + this.LeftSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.LeftUnFoldButtonDisplayQuickPanel_MouseUp); #line default #line hidden return; case 642: + this.LeftUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + return; + case 643: + this.LeftUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 644: - #line 7411 "..\..\..\MainWindow.xaml" + #line 7651 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 645: + + #line 7659 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 646: + + #line 7668 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 647: + + #line 7675 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); #line default #line hidden return; - case 643: + case 648: - #line 7419 "..\..\..\MainWindow.xaml" + #line 7683 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); #line default #line hidden return; - case 644: + case 649: - #line 7427 "..\..\..\MainWindow.xaml" + #line 7691 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); + + #line default + #line hidden + return; + case 650: + this.RightSidePanel = ((System.Windows.Controls.Viewbox)(target)); + + #line 7700 "..\..\..\MainWindow.xaml" + this.RightSidePanel.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.RightUnFoldButtonDisplayQuickPanel_MouseUp); + + #line default + #line hidden + return; + case 651: + this.RightUnFoldBtnImgChevron = ((System.Windows.Controls.Image)(target)); + return; + case 652: + this.RightUnFoldButtonQuickPanel = ((System.Windows.Controls.Viewbox)(target)); + return; + case 653: + + #line 7724 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRandOne_MouseUp); + + #line default + #line hidden + return; + case 654: + + #line 7732 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.SymbolIconRand_MouseUp); + + #line default + #line hidden + return; + case 655: + + #line 7741 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageCountdownTimer_MouseUp); + + #line default + #line hidden + return; + case 656: + + #line 7748 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ImageBlackboard_MouseUp); + + #line default + #line hidden + return; + case 657: + + #line 7756 "..\..\..\MainWindow.xaml" + ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.UnFoldFloatingBar_MouseUp); + + #line default + #line hidden + return; + case 658: + + #line 7764 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.HideQuickPanel_MouseUp); #line default @@ -9446,17 +9558,17 @@ namespace Ink_Canvas { void System.Windows.Markup.IStyleConnector.Connect(int connectionId, object target) { switch (connectionId) { - case 207: + case 221: - #line 2703 "..\..\..\MainWindow.xaml" + #line 3040 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BlackBoardLeftSidePageListView_OnMouseUp); #line default #line hidden break; - case 361: + case 375: - #line 4741 "..\..\..\MainWindow.xaml" + #line 5078 "..\..\..\MainWindow.xaml" ((iNKORE.UI.WPF.Modern.Controls.SimpleStackPanel)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.BlackBoardRightSidePageListView_OnMouseUp); #line default