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" />
-
-
-
-
-
-
-
-
-
-
+ Click="BtnCloseSettings_Click">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/MainWindow_cs/MW_SimulatePressure&InkToShape.cs b/Ink Canvas/MainWindow_cs/MW_SimulatePressure&InkToShape.cs
index bf67dd37..2deb2968 100644
--- a/Ink Canvas/MainWindow_cs/MW_SimulatePressure&InkToShape.cs
+++ b/Ink Canvas/MainWindow_cs/MW_SimulatePressure&InkToShape.cs
@@ -13,6 +13,8 @@ namespace Ink_Canvas {
public partial class MainWindow : Window {
private StrokeCollection newStrokes = new StrokeCollection();
private List circles = new List();
+ private const double SNAP_THRESHOLD = 15.0; // Distance threshold for endpoint snapping
+ private const double LINE_STRAIGHTEN_THRESHOLD = 0.15; // Threshold for line straightening
private void inkCanvas_StrokeCollected(object sender, InkCanvasStrokeCollectedEventArgs e) {
if (Settings.Canvas.FitToCurve == true) drawingAttributes.FitToCurve = false;
@@ -20,108 +22,146 @@ namespace Ink_Canvas {
try {
inkCanvas.Opacity = 1;
- // 直线自动拉直功能
- if (Settings.Canvas.AutoStraightenLine && e.Stroke.StylusPoints.Count > 1 && drawingShapeMode == 0 && penType == 0) {
- // 获取起点和终点
- StylusPoint startPoint = e.Stroke.StylusPoints[0];
- StylusPoint endPoint = e.Stroke.StylusPoints[e.Stroke.StylusPoints.Count - 1];
-
- // 计算直线长度
- double length = Math.Sqrt(Math.Pow(endPoint.X - startPoint.X, 2) + Math.Pow(endPoint.Y - startPoint.Y, 2));
-
- // 判断是否需要拉直
- if (length >= Settings.Canvas.AutoStraightenLineThreshold) {
- // 判断是否符合直线特征(计算点到直线的最大距离)
- double maxDistance = 0;
- for (int i = 1; i < e.Stroke.StylusPoints.Count - 1; i++) {
- StylusPoint point = e.Stroke.StylusPoints[i];
- double distance = DistanceFromPointToLine(point, startPoint, endPoint);
- maxDistance = Math.Max(maxDistance, distance);
+ // 应用屏蔽压感功能 - 如果启用,所有笔画都使用统一粗细
+ if (Settings.Canvas.DisablePressure) {
+ var uniformPoints = new StylusPointCollection();
+ foreach (StylusPoint point in e.Stroke.StylusPoints) {
+ StylusPoint newPoint = new StylusPoint(point.X, point.Y, 0.5f); // 统一压感值为0.5
+ uniformPoints.Add(newPoint);
+ }
+ e.Stroke.StylusPoints = uniformPoints;
+ }
+ // 应用压感触屏模式 - 如果启用并且检测到触屏输入
+ else if (Settings.Canvas.EnablePressureTouchMode) {
+ bool isTouchInput = true;
+ foreach (StylusPoint point in e.Stroke.StylusPoints) {
+ // 检测是否为压感笔输入(压感笔的PressureFactor不等于0.5或0)
+ if ((point.PressureFactor > 0.501 || point.PressureFactor < 0.5) && point.PressureFactor != 0) {
+ isTouchInput = false;
+ break;
}
-
- // 如果最大距离小于线长的15%,认为是直线
- if (maxDistance < length * 0.15) {
- // 创建新的直线点集合
- StylusPointCollection newPoints = new StylusPointCollection();
-
- // 直线端点吸附功能
- if (Settings.Canvas.LineEndpointSnapping) {
- bool startPointSnapped = false;
- bool endPointSnapped = false;
-
- // 获取画布上的所有笔画
- StrokeCollection allStrokes = inkCanvas.Strokes;
-
- // 排除当前笔画
- StrokeCollection otherStrokes = new StrokeCollection();
- foreach (Stroke stroke in allStrokes) {
- if (stroke != e.Stroke) {
- otherStrokes.Add(stroke);
+ }
+
+ // 如果是触屏输入,则应用模拟压感
+ if (isTouchInput) {
+ switch (Settings.Canvas.InkStyle) {
+ case 1:
+ if (penType == 0)
+ try {
+ var stylusPoints = new StylusPointCollection();
+ var n = e.Stroke.StylusPoints.Count - 1;
+
+ for (var i = 0; i <= n; i++) {
+ var speed = GetPointSpeed(e.Stroke.StylusPoints[Math.Max(i - 1, 0)].ToPoint(),
+ e.Stroke.StylusPoints[i].ToPoint(),
+ e.Stroke.StylusPoints[Math.Min(i + 1, n)].ToPoint());
+ var point = new StylusPoint();
+ if (speed >= 0.25)
+ point.PressureFactor = (float)(0.5 - 0.3 * (Math.Min(speed, 1.5) - 0.3) / 1.2);
+ else if (speed >= 0.05)
+ point.PressureFactor = (float)0.5;
+ else
+ point.PressureFactor = (float)(0.5 + 0.4 * (0.05 - speed) / 0.05);
+
+ point.X = e.Stroke.StylusPoints[i].X;
+ point.Y = e.Stroke.StylusPoints[i].Y;
+ stylusPoints.Add(point);
+ }
+
+ e.Stroke.StylusPoints = stylusPoints;
}
- }
-
- // 查找最近的端点
- double minStartDistance = Settings.Canvas.LineEndpointSnappingThreshold;
- double minEndDistance = Settings.Canvas.LineEndpointSnappingThreshold;
- StylusPoint nearestToStart = startPoint;
- StylusPoint nearestToEnd = endPoint;
-
- foreach (Stroke stroke in otherStrokes) {
- // 只考虑直线(只有两个点的笔画)
- if (stroke.StylusPoints.Count == 2) {
- StylusPoint strokeStart = stroke.StylusPoints[0];
- StylusPoint strokeEnd = stroke.StylusPoints[1];
-
- // 计算当前笔画起点到其他笔画端点的距离
- double distanceToStrokeStart = Distance(startPoint, strokeStart);
- double distanceToStrokeEnd = Distance(startPoint, strokeEnd);
-
- // 如果距离小于阈值且小于当前最小距离,更新最近点
- if (distanceToStrokeStart < minStartDistance) {
- minStartDistance = distanceToStrokeStart;
- nearestToStart = strokeStart;
- startPointSnapped = true;
+ catch { }
+ break;
+ case 0:
+ if (penType == 0)
+ try {
+ var stylusPoints = new StylusPointCollection();
+ var n = e.Stroke.StylusPoints.Count - 1;
+ var pressure = 0.1;
+ var x = 10;
+ if (n == 1) return;
+ if (n >= x) {
+ for (var i = 0; i < n - x; i++) {
+ var point = new StylusPoint();
+
+ point.PressureFactor = (float)0.5;
+ point.X = e.Stroke.StylusPoints[i].X;
+ point.Y = e.Stroke.StylusPoints[i].Y;
+ stylusPoints.Add(point);
+ }
+
+ for (var i = n - x; i <= n; i++) {
+ var point = new StylusPoint();
+
+ point.PressureFactor = (float)((0.5 - pressure) * (n - i) / x + pressure);
+ point.X = e.Stroke.StylusPoints[i].X;
+ point.Y = e.Stroke.StylusPoints[i].Y;
+ stylusPoints.Add(point);
+ }
}
- if (distanceToStrokeEnd < minStartDistance) {
- minStartDistance = distanceToStrokeEnd;
- nearestToStart = strokeEnd;
- startPointSnapped = true;
- }
-
- // 计算当前笔画终点到其他笔画端点的距离
- double distanceEndToStrokeStart = Distance(endPoint, strokeStart);
- double distanceEndToStrokeEnd = Distance(endPoint, strokeEnd);
-
- // 如果距离小于阈值且小于当前最小距离,更新最近点
- if (distanceEndToStrokeStart < minEndDistance) {
- minEndDistance = distanceEndToStrokeStart;
- nearestToEnd = strokeStart;
- endPointSnapped = true;
- }
- if (distanceEndToStrokeEnd < minEndDistance) {
- minEndDistance = distanceEndToStrokeEnd;
- nearestToEnd = strokeEnd;
- endPointSnapped = true;
+ else {
+ for (var i = 0; i <= n; i++) {
+ var point = new StylusPoint();
+
+ point.PressureFactor = (float)(0.4 * (n - i) / n + pressure);
+ point.X = e.Stroke.StylusPoints[i].X;
+ point.Y = e.Stroke.StylusPoints[i].Y;
+ stylusPoints.Add(point);
+ }
}
+
+ e.Stroke.StylusPoints = stylusPoints;
}
- }
-
- // 应用吸附结果
- newPoints.Add(startPointSnapped ? nearestToStart : startPoint);
- newPoints.Add(endPointSnapped ? nearestToEnd : endPoint);
- } else {
- // 不启用吸附,直接使用原始端点
- newPoints.Add(startPoint);
- newPoints.Add(endPoint);
- }
-
- // 替换原有笔迹
- e.Stroke.StylusPoints = newPoints;
+ catch { }
+ break;
}
}
}
- if (Settings.InkToShape.IsInkToShapeEnabled && drawingShapeMode == 0 && !isInMultiTouchMode && penType == 0) {
+ // Apply line straightening and endpoint snapping if ink-to-shape is enabled
+ if (Settings.InkToShape.IsInkToShapeEnabled) {
+ // Check if this stroke could be a straight line
+ if (IsPotentialStraightLine(e.Stroke)) {
+ // Get start and end points of the stroke
+ Point startPoint = e.Stroke.StylusPoints[0].ToPoint();
+ Point endPoint = e.Stroke.StylusPoints[e.Stroke.StylusPoints.Count - 1].ToPoint();
+
+ // Try to snap endpoints to existing strokes
+ bool snapped = false;
+ if (Settings.InkToShape.IsInkToShapeRectangle || Settings.InkToShape.IsInkToShapeTriangle) {
+ Point[] snappedPoints = GetSnappedEndpoints(startPoint, endPoint);
+ if (snappedPoints != null) {
+ startPoint = snappedPoints[0];
+ endPoint = snappedPoints[1];
+ snapped = true;
+ }
+ }
+
+ // Create straight line stroke
+ if (snapped || ShouldStraightenLine(e.Stroke)) {
+ StylusPointCollection straightLinePoints = CreateStraightLine(startPoint, endPoint);
+ Stroke straightStroke = new Stroke(straightLinePoints) {
+ DrawingAttributes = inkCanvas.DefaultDrawingAttributes.Clone()
+ };
+
+ // Replace the original stroke with the straightened one
+ SetNewBackupOfStroke();
+ _currentCommitType = CommitReason.ShapeRecognition;
+ inkCanvas.Strokes.Remove(e.Stroke);
+ inkCanvas.Strokes.Add(straightStroke);
+ _currentCommitType = CommitReason.UserInput;
+
+ // We can't modify e.Stroke directly, but we need to update newStrokes
+ // to ensure proper shape recognition for the straightened line
+ if (newStrokes.Contains(e.Stroke)) {
+ newStrokes.Remove(e.Stroke);
+ newStrokes.Add(straightStroke);
+ }
+ }
+ }
+ }
+
+ if (Settings.InkToShape.IsInkToShapeEnabled && !Environment.Is64BitProcess) {
void InkToShapeProcess() {
try {
newStrokes.Add(e.Stroke);
@@ -422,27 +462,13 @@ namespace Ink_Canvas {
InkToShapeProcess();
}
- // 如果启用了屏蔽压感功能,强制所有点的压感值为0.5
- if (Settings.Canvas.DisablePressure) {
- var stylusPoints = new StylusPointCollection();
- foreach (var point in e.Stroke.StylusPoints) {
- var newPoint = new StylusPoint(point.X, point.Y, 0.5f);
- stylusPoints.Add(newPoint);
- }
- e.Stroke.StylusPoints = stylusPoints;
- return; // 跳过后续的压感处理
- }
-
- // 检查是否是压感笔书写,如果启用了压感触屏模式则跳过此检查
- if (!Settings.Canvas.EnablePressureTouchMode) {
- foreach (var stylusPoint in e.Stroke.StylusPoints)
- //LogHelper.WriteLogToFile(stylusPoint.PressureFactor.ToString(), LogHelper.LogType.Info);
- // 检查是否是压感笔书写
- //if (stylusPoint.PressureFactor != 0.5 && stylusPoint.PressureFactor != 0)
- if ((stylusPoint.PressureFactor > 0.501 || stylusPoint.PressureFactor < 0.5) &&
- stylusPoint.PressureFactor != 0)
- return;
- }
+ foreach (var stylusPoint in e.Stroke.StylusPoints)
+ //LogHelper.WriteLogToFile(stylusPoint.PressureFactor.ToString(), LogHelper.LogType.Info);
+ // 检查是否是压感笔书写
+ //if (stylusPoint.PressureFactor != 0.5 && stylusPoint.PressureFactor != 0)
+ if ((stylusPoint.PressureFactor > 0.501 || stylusPoint.PressureFactor < 0.5) &&
+ stylusPoint.PressureFactor != 0)
+ return;
try {
if (e.Stroke.StylusPoints.Count > 3) {
@@ -538,6 +564,124 @@ namespace Ink_Canvas {
if (Settings.Canvas.FitToCurve == true) drawingAttributes.FitToCurve = true;
}
+ // New method: Checks if a stroke is potentially a straight line
+ private bool IsPotentialStraightLine(Stroke stroke) {
+ // Minimum length for line detection
+ if (stroke.StylusPoints.Count < 5)
+ return false;
+
+ Point start = stroke.StylusPoints.First().ToPoint();
+ Point end = stroke.StylusPoints.Last().ToPoint();
+ double lineLength = GetDistance(start, end);
+
+ // Line should be longer than 30 pixels
+ return lineLength > 30;
+ }
+
+ // New method: Determines if a stroke should be straightened into a line
+ private bool ShouldStraightenLine(Stroke stroke) {
+ // Basic implementation: check if points roughly follow a straight line
+ Point start = stroke.StylusPoints.First().ToPoint();
+ Point end = stroke.StylusPoints.Last().ToPoint();
+
+ // Calculate max deviation from the straight line between start and end
+ double maxDeviation = 0;
+ double lineLength = GetDistance(start, end);
+
+ // Calculate deviation for each point
+ foreach (StylusPoint sp in stroke.StylusPoints) {
+ Point p = sp.ToPoint();
+ double deviation = DistanceFromLineToPoint(start, end, p);
+ maxDeviation = Math.Max(maxDeviation, deviation);
+ }
+
+ // If maximum deviation is less than threshold relative to line length
+ return (maxDeviation / lineLength) < LINE_STRAIGHTEN_THRESHOLD;
+ }
+
+ // New method: Creates a straight line stroke between two points
+ private StylusPointCollection CreateStraightLine(Point start, Point end) {
+ StylusPointCollection points = new StylusPointCollection();
+
+ // Create a more natural pressure profile for the line
+ if (Settings.InkToShape.IsInkToShapeNoFakePressureRectangle == true || penType == 1) {
+ points.Add(new StylusPoint(start.X, start.Y));
+ points.Add(new StylusPoint(end.X, end.Y));
+ } else {
+ points.Add(new StylusPoint(start.X, start.Y, 0.4f));
+
+ // Add a middle point with higher pressure
+ Point midPoint = new Point((start.X + end.X) / 2, (start.Y + end.Y) / 2);
+ points.Add(new StylusPoint(midPoint.X, midPoint.Y, 0.8f));
+
+ points.Add(new StylusPoint(end.X, end.Y, 0.4f));
+ }
+
+ return points;
+ }
+
+ // New method: Gets distance from point to a line defined by two points
+ private double DistanceFromLineToPoint(Point lineStart, Point lineEnd, Point point) {
+ // Calculate distance from point to line defined by lineStart and lineEnd
+ double lineLength = GetDistance(lineStart, lineEnd);
+ if (lineLength == 0) return GetDistance(point, lineStart);
+
+ // Calculate the cross product to get the perpendicular distance
+ double distance = Math.Abs((lineEnd.Y - lineStart.Y) * point.X -
+ (lineEnd.X - lineStart.X) * point.Y +
+ lineEnd.X * lineStart.Y - lineEnd.Y * lineStart.X) / lineLength;
+ return distance;
+ }
+
+ // New method: Attempts to snap endpoints to existing stroke endpoints
+ private Point[] GetSnappedEndpoints(Point start, Point end) {
+ bool startSnapped = false;
+ bool endSnapped = false;
+ Point snappedStart = start;
+ Point snappedEnd = end;
+
+ // Check all strokes in canvas for potential snap points
+ foreach (Stroke stroke in inkCanvas.Strokes) {
+ if (stroke.StylusPoints.Count == 0) continue;
+
+ // Get stroke endpoints
+ Point strokeStart = stroke.StylusPoints.First().ToPoint();
+ Point strokeEnd = stroke.StylusPoints.Last().ToPoint();
+
+ // Check if start point should snap to an endpoint
+ if (!startSnapped) {
+ if (GetDistance(start, strokeStart) < SNAP_THRESHOLD) {
+ snappedStart = strokeStart;
+ startSnapped = true;
+ } else if (GetDistance(start, strokeEnd) < SNAP_THRESHOLD) {
+ snappedStart = strokeEnd;
+ startSnapped = true;
+ }
+ }
+
+ // Check if end point should snap to an endpoint
+ if (!endSnapped) {
+ if (GetDistance(end, strokeStart) < SNAP_THRESHOLD) {
+ snappedEnd = strokeStart;
+ endSnapped = true;
+ } else if (GetDistance(end, strokeEnd) < SNAP_THRESHOLD) {
+ snappedEnd = strokeEnd;
+ endSnapped = true;
+ }
+ }
+
+ // If both endpoints are snapped, we're done
+ if (startSnapped && endSnapped) break;
+ }
+
+ // Return snapped points if any snapping occurred
+ if (startSnapped || endSnapped) {
+ return new Point[] { snappedStart, snappedEnd };
+ }
+
+ return null;
+ }
+
private void SetNewBackupOfStroke() {
lastTouchDownStrokeCollection = inkCanvas.Strokes.Clone();
var whiteboardIndex = CurrentWhiteboardIndex;
@@ -656,31 +800,5 @@ namespace Ink_Canvas {
public StylusPoint GetCenterPoint(StylusPoint point1, StylusPoint point2) {
return new StylusPoint((point1.X + point2.X) / 2, (point1.Y + point2.Y) / 2);
}
-
- ///
- /// 计算点到直线的距离
- ///
- /// 点
- /// 直线起点
- /// 直线终点
- /// 距离
- private double DistanceFromPointToLine(StylusPoint point, StylusPoint lineStart, StylusPoint lineEnd) {
- double lineLength = Math.Sqrt(Math.Pow(lineEnd.X - lineStart.X, 2) + Math.Pow(lineEnd.Y - lineStart.Y, 2));
- if (lineLength == 0) return 0;
-
- double area = Math.Abs(
- (lineEnd.X - lineStart.X) * (lineStart.Y - point.Y) -
- (lineStart.X - point.X) * (lineEnd.Y - lineStart.Y)
- );
-
- return area / lineLength;
- }
-
- ///
- /// 计算两点之间的距离
- ///
- private double Distance(StylusPoint p1, StylusPoint p2) {
- return Math.Sqrt(Math.Pow(p2.X - p1.X, 2) + Math.Pow(p2.Y - p1.Y, 2));
- }
}
}
\ 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.csproj.ResolveComReference.cache b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.ResolveComReference.cache
index c475a20c..152b8627 100644
Binary files a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.ResolveComReference.cache and b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.csproj.ResolveComReference.cache differ
diff --git a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources
index b37af4e5..5de98a0d 100644
Binary files a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources and b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.g.resources differ
diff --git a/Ink Canvas/obj/Debug/net472/MainWindow.g.cs b/Ink Canvas/obj/Debug/net472/MainWindow.g.cs
index 9d60eebd..ef614347 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}" "3534D393809CDD9697B78029AB0FBB8706EB7F66"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -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..ef614347 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}" "3534D393809CDD9697B78029AB0FBB8706EB7F66"
//------------------------------------------------------------------------------
//
// 此代码由工具生成。
@@ -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