using Ink_Canvas.Helpers;
using iNKORE.UI.WPF.Controls;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;
using Point = System.Windows.Point;
namespace Ink_Canvas
{
public partial class MainWindow : Window
{
#region Floating Control
///
/// 存储最后一次鼠标按下的边界对象
///
private object lastBorderMouseDownObject;
///
/// 处理边界鼠标按下事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 如果发送者是 RandomDrawPanel 或 SingleDrawPanel,且它们被隐藏,则不处理事件
/// 否则存储当前鼠标按下的对象
///
private void Border_MouseDown(object sender, MouseButtonEventArgs e)
{
// 如果发送者是 RandomDrawPanel 或 SingleDrawPanel,且它们被隐藏,则不处理事件
if (sender is SimpleStackPanel panel)
{
if ((panel == RandomDrawPanel || panel == SingleDrawPanel) &&
panel.Visibility != Visibility.Visible)
{
return;
}
}
lastBorderMouseDownObject = sender;
}
///
/// 处理墨迹选择克隆鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 执行墨迹克隆操作并记录日志
///
private void BorderStrokeSelectionClone_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
try
{
var strokes = inkCanvas.GetSelectedStrokes();
if (strokes.Count > 0)
{
// 直接执行克隆操作,与图片克隆保持一致
CloneStrokes(strokes);
LogHelper.WriteLogToFile($"墨迹克隆完成: {strokes.Count} 个墨迹");
}
}
catch (Exception ex)
{
LogHelper.WriteLogToFile($"墨迹克隆失败: {ex.Message}", LogHelper.LogType.Error);
}
}
///
/// 处理墨迹选择克隆到新画板鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 克隆选中的墨迹到新画板并清除当前选择
///
private void BorderStrokeSelectionCloneToNewBoard_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
var strokes = inkCanvas.GetSelectedStrokes();
inkCanvas.Select(new StrokeCollection());
CloneStrokesToNewBoard(strokes);
}
///
/// 处理墨迹选择删除鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 调用 SymbolIconDelete_MouseUp 方法执行删除操作
///
private void BorderStrokeSelectionDelete_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
SymbolIconDelete_MouseUp(sender, e);
}
///
/// 处理笔宽减小鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 调用 ChangeStrokeThickness 方法减小笔宽
///
private void GridPenWidthDecrease_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
ChangeStrokeThickness(0.8);
}
///
/// 处理笔宽增大鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 调用 ChangeStrokeThickness 方法增大笔宽
///
private void GridPenWidthIncrease_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
ChangeStrokeThickness(1.25);
}
///
/// 更改选中墨迹的粗细
///
/// 缩放倍数
///
/// 对选中的每个墨迹应用缩放倍数
/// 确保新的粗细在允许的范围内
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void ChangeStrokeThickness(double multipler)
{
foreach (var stroke in inkCanvas.GetSelectedStrokes())
{
var newWidth = stroke.DrawingAttributes.Width * multipler;
var newHeight = stroke.DrawingAttributes.Height * multipler;
if (!(newWidth >= DrawingAttributes.MinWidth) || !(newWidth <= DrawingAttributes.MaxWidth)
|| !(newHeight >= DrawingAttributes.MinHeight) ||
!(newHeight <= DrawingAttributes.MaxHeight)) continue;
stroke.DrawingAttributes.Width = newWidth;
stroke.DrawingAttributes.Height = newHeight;
}
if (DrawingAttributesHistory.Count > 0)
{
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
}
///
/// 处理笔宽恢复默认鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 将选中墨迹的粗细恢复为默认值
///
private void GridPenWidthRestore_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
foreach (var stroke in inkCanvas.GetSelectedStrokes())
{
stroke.DrawingAttributes.Width = inkCanvas.DefaultDrawingAttributes.Width;
stroke.DrawingAttributes.Height = inkCanvas.DefaultDrawingAttributes.Height;
}
}
///
/// 处理水平翻转鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 对选中的墨迹应用水平翻转变换
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void ImageFlipHorizontal_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
var m = new Matrix();
// Find center of element and then transform to get current location of center
var fe = e.Source as FrameworkElement;
var center = new Point(fe.ActualWidth / 2, fe.ActualHeight / 2);
center = new Point(inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Width / 2,
inkCanvas.GetSelectionBounds().Top + inkCanvas.GetSelectionBounds().Height / 2);
center = m.Transform(center); // 转换为矩阵缩放和旋转的中心点
// Update matrix to reflect translation/rotation
m.ScaleAt(-1, 1, center.X, center.Y); // 缩放
var targetStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in targetStrokes) stroke.Transform(m, false);
if (DrawingAttributesHistory.Count > 0)
{
//var collecion = new StrokeCollection();
//foreach (var item in DrawingAttributesHistory)
//{
// collecion.Add(item.Key);
//}
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
//updateBorderStrokeSelectionControlLocation();
}
///
/// 处理垂直翻转鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 对选中的墨迹应用垂直翻转变换
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void ImageFlipVertical_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
var m = new Matrix();
// Find center of element and then transform to get current location of center
var fe = e.Source as FrameworkElement;
var center = new Point(fe.ActualWidth / 2, fe.ActualHeight / 2);
center = new Point(inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Width / 2,
inkCanvas.GetSelectionBounds().Top + inkCanvas.GetSelectionBounds().Height / 2);
center = m.Transform(center); // 转换为矩阵缩放和旋转的中心点
// Update matrix to reflect translation/rotation
m.ScaleAt(1, -1, center.X, center.Y); // 缩放
var targetStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in targetStrokes) stroke.Transform(m, false);
if (DrawingAttributesHistory.Count > 0)
{
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
}
// ... existing code ...
///
/// 处理顺时针旋转45度鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 对选中的墨迹应用45度旋转变换
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void ImageRotate45_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
var m = new Matrix();
// Find center of element and then transform to get current location of center
var fe = e.Source as FrameworkElement;
var center = new Point(fe.ActualWidth / 2, fe.ActualHeight / 2);
center = new Point(inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Width / 2,
inkCanvas.GetSelectionBounds().Top + inkCanvas.GetSelectionBounds().Height / 2);
center = m.Transform(center); // 转换为矩阵缩放和旋转的中心点
// Update matrix to reflect translation/rotation
m.RotateAt(45, center.X, center.Y); // 顺时针旋转45度
var targetStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in targetStrokes) stroke.Transform(m, false);
if (DrawingAttributesHistory.Count > 0)
{
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
}
///
/// 处理顺时针旋转90度鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 只有当鼠标按下和释放的是同一个对象时才处理
/// 对选中的墨迹应用90度旋转变换
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void ImageRotate90_MouseUp(object sender, MouseButtonEventArgs e)
{
if (lastBorderMouseDownObject != sender) return;
var m = new Matrix();
// Find center of element and then transform to get current location of center
var fe = e.Source as FrameworkElement;
var center = new Point(fe.ActualWidth / 2, fe.ActualHeight / 2);
center = new Point(inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Width / 2,
inkCanvas.GetSelectionBounds().Top + inkCanvas.GetSelectionBounds().Height / 2);
center = m.Transform(center); // 转换为矩阵缩放和旋转的中心点
// Update matrix to reflect translation/rotation
m.RotateAt(90, center.X, center.Y); // 旋转
var targetStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in targetStrokes) stroke.Transform(m, false);
if (DrawingAttributesHistory.Count > 0)
{
var collecion = new StrokeCollection();
foreach (var item in DrawingAttributesHistory)
{
collecion.Add(item.Key);
}
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
}
#endregion
///
/// 墨迹选择覆盖层鼠标按下状态
///
private bool isGridInkCanvasSelectionCoverMouseDown;
///
/// 墨迹拖动状态
///
private bool isStrokeDragging = false;
///
/// 墨迹拖动起始点
///
private Point strokeDragStartPoint;
///
/// 墨迹选择克隆集合
///
private StrokeCollection StrokesSelectionClone = new StrokeCollection();
// 选择框和选择点相关变量
///
/// 调整大小状态
///
private bool isResizing = false;
///
/// 当前调整把手
///
private string currentResizeHandle = "";
///
/// 调整起始点
///
private Point resizeStartPoint;
///
/// 原始选择边界
///
private Rect originalSelectionBounds;
///
/// 处理墨迹选择覆盖层鼠标按下事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 如果有选中的墨迹,检查点击位置是否在选择框边界内
/// 如果在边界内,开始拖动墨迹
/// 如果在边界外,取消选择
///
private void GridInkCanvasSelectionCover_MouseDown(object sender, MouseButtonEventArgs e)
{
isGridInkCanvasSelectionCoverMouseDown = true;
// 检查是否有选中的墨迹
if (inkCanvas.GetSelectedStrokes().Count > 0)
{
// 获取鼠标点击位置
var clickPoint = e.GetPosition(inkCanvas);
var selectionBounds = inkCanvas.GetSelectionBounds();
// 检查点击位置是否在选择框边界内
if (clickPoint.X >= selectionBounds.Left &&
clickPoint.X <= selectionBounds.Right &&
clickPoint.Y >= selectionBounds.Top &&
clickPoint.Y <= selectionBounds.Bottom)
{
// 只有在选择框边界内才允许拖动
isStrokeDragging = true;
strokeDragStartPoint = clickPoint;
GridInkCanvasSelectionCover.CaptureMouse();
GridInkCanvasSelectionCover.Cursor = Cursors.SizeAll;
}
else
{
// 点击在选择框外,取消选择
inkCanvas.Select(new StrokeCollection());
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
}
}
}
///
/// 处理墨迹选择覆盖层鼠标移动事件
///
/// 事件发送者
/// 鼠标事件参数
///
/// 如果正在拖动墨迹,执行拖动操作
/// 如果鼠标在选中区域移动,更新墨迹选中栏位置
///
private void GridInkCanvasSelectionCover_MouseMove(object sender, MouseEventArgs e)
{
if (!isGridInkCanvasSelectionCoverMouseDown) return;
// 如果正在拖动墨迹,执行拖动操作
if (isStrokeDragging && GridInkCanvasSelectionCover.IsMouseCaptured)
{
var currentPoint = e.GetPosition(inkCanvas);
var delta = currentPoint - strokeDragStartPoint;
// 创建变换矩阵
var matrix = new Matrix();
matrix.Translate(delta.X, delta.Y);
// 对选中的墨迹应用变换
var selectedStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in selectedStrokes)
{
stroke.Transform(matrix, false);
}
// 更新选中栏位置
updateBorderStrokeSelectionControlLocation();
// 更新起始点
strokeDragStartPoint = currentPoint;
}
else if (inkCanvas.GetSelectedStrokes().Count > 0)
{
// 当鼠标在选中区域移动时,更新墨迹选中栏位置
updateBorderStrokeSelectionControlLocation();
}
}
///
/// 处理墨迹选择覆盖层鼠标释放事件
///
/// 事件发送者
/// 鼠标按钮事件参数
///
/// 结束墨迹拖动
/// 只有在没有选中墨迹时才隐藏选中栏
///
private void GridInkCanvasSelectionCover_MouseUp(object sender, MouseButtonEventArgs e)
{
if (!isGridInkCanvasSelectionCoverMouseDown) return;
// 结束墨迹拖动
if (isStrokeDragging)
{
isStrokeDragging = false;
GridInkCanvasSelectionCover.ReleaseMouseCapture();
GridInkCanvasSelectionCover.Cursor = Cursors.Arrow;
}
isGridInkCanvasSelectionCoverMouseDown = false;
// 只有在没有选中墨迹时才隐藏选中栏
if (inkCanvas.GetSelectedStrokes().Count == 0)
{
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
}
}
///
/// 处理选择按钮点击事件
///
/// 事件发送者
/// 路由事件参数
///
/// 如果当前是选择模式,检查是否全选
/// 如果全选,则切换到墨迹模式再切换回选择模式
/// 如果不是全选,则选择所有有效墨迹
/// 如果当前不是选择模式,则切换到选择模式
///
private void BtnSelect_Click(object sender, RoutedEventArgs e)
{
forceEraser = true;
drawingShapeMode = 0;
inkCanvas.IsManipulationEnabled = false;
if (inkCanvas.EditingMode == InkCanvasEditingMode.Select)
{
if (inkCanvas.GetSelectedStrokes().Count == inkCanvas.Strokes.Count)
{
// 使用集中化的工具模式切换方法
SetCurrentToolMode(InkCanvasEditingMode.Ink,
() => { SetCurrentToolMode(InkCanvasEditingMode.Select); });
}
else
{
var selectedStrokes = new StrokeCollection();
foreach (var stroke in inkCanvas.Strokes)
if (stroke.GetBounds().Width > 0 && stroke.GetBounds().Height > 0)
selectedStrokes.Add(stroke);
inkCanvas.Select(selectedStrokes);
}
}
else
{
// 使用集中化的工具模式切换方法
SetCurrentToolMode(InkCanvasEditingMode.Select);
}
}
///
/// 墨迹选择控件宽度
///
private double BorderStrokeSelectionControlWidth = 490.0;
///
/// 墨迹选择控件高度
///
private double BorderStrokeSelectionControlHeight = 80.0;
///
/// 程序更改墨迹选择状态
///
private bool isProgramChangeStrokeSelection;
///
/// 处理墨迹画布选择更改事件
///
/// 事件发送者
/// 事件参数
///
/// 优先检查墨迹选择状态
/// 如果有墨迹被选中,显示墨迹选择栏和选择框
/// 如果有图片元素被选中,不显示选择框
/// 如果没有选中任何内容,隐藏选择框
///
private void inkCanvas_SelectionChanged(object sender, EventArgs e)
{
if (isProgramChangeStrokeSelection) return;
// 优先检查墨迹选择状态
if (inkCanvas.GetSelectedStrokes().Count > 0)
{
// 有墨迹被选中,清除图片选择状态
if (currentSelectedElement != null)
{
currentSelectedElement = null;
// 隐藏图片选择工具栏
if (BorderImageSelectionControl != null)
{
BorderImageSelectionControl.Visibility = Visibility.Collapsed;
}
}
// 显示墨迹选择栏和选择框
GridInkCanvasSelectionCover.Visibility = Visibility.Visible;
BorderStrokeSelectionClone.Background = Brushes.Transparent;
updateBorderStrokeSelectionControlLocation();
UpdateSelectionDisplay();
return;
}
// 检查是否有图片元素被选中(通过InkCanvas的选中元素)
var selectedElements = inkCanvas.GetSelectedElements();
bool hasImageElement = selectedElements.Any(element => element is Image);
// 如果有图片元素被选中,不显示选择框
if (hasImageElement)
{
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
HideSelectionDisplay();
return;
}
// 检查是否有图片元素被选中(通过currentSelectedElement)
if (currentSelectedElement != null && currentSelectedElement is Image)
{
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
HideSelectionDisplay();
return;
}
// 没有选中任何内容,隐藏选择框
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
HideSelectionDisplay();
}
///
/// 更新墨迹选中栏位置
///
///
/// 计算墨迹选中栏的位置,确保在墨迹下方显示
/// 如果选中栏会超出屏幕底部,则显示在墨迹上方
/// 如果上方也没有空间,则显示在顶部
///
private void updateBorderStrokeSelectionControlLocation()
{
var borderLeft = (inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Right -
BorderStrokeSelectionControlWidth) / 2;
var borderTop = inkCanvas.GetSelectionBounds().Bottom + 10; // 在墨迹下方10像素处显示
if (borderLeft < 0) borderLeft = 0;
if (borderTop < 0) borderTop = 0;
if (Width - borderLeft < BorderStrokeSelectionControlWidth || double.IsNaN(borderLeft))
borderLeft = Width - BorderStrokeSelectionControlWidth;
if (Height - borderTop < BorderStrokeSelectionControlHeight || double.IsNaN(borderTop))
borderTop = Height - BorderStrokeSelectionControlHeight;
// 确保墨迹选中栏始终显示在墨迹下方
// 如果选中栏会超出屏幕底部,则显示在墨迹上方
if (borderTop + BorderStrokeSelectionControlHeight > Height)
{
borderTop = inkCanvas.GetSelectionBounds().Top - BorderStrokeSelectionControlHeight - 10;
if (borderTop < 0) borderTop = 10; // 如果上方也没有空间,则显示在顶部
}
BorderStrokeSelectionControl.Margin = new Thickness(borderLeft, borderTop, 0, 0);
}
///
/// 处理墨迹选择覆盖层操作开始事件
///
/// 事件发送者
/// 操作开始事件参数
///
/// 设置操作模式为所有模式
///
private void GridInkCanvasSelectionCover_ManipulationStarting(object sender, ManipulationStartingEventArgs e)
{
e.Mode = ManipulationModes.All;
}
///
/// 处理墨迹选择覆盖层操作完成事件
///
/// 事件发送者
/// 操作完成事件参数
///
/// 如果有 StrokeManipulationHistory,则提交历史记录
/// 如果有 DrawingAttributesHistory,则提交历史记录
///
private void GridInkCanvasSelectionCover_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
{
if (StrokeManipulationHistory?.Count > 0)
{
timeMachine.CommitStrokeManipulationHistory(StrokeManipulationHistory);
foreach (var item in StrokeManipulationHistory)
{
StrokeInitialHistory[item.Key] = item.Value.Item2;
}
StrokeManipulationHistory = null;
}
if (DrawingAttributesHistory.Count > 0)
{
timeMachine.CommitStrokeDrawingAttributesHistory(DrawingAttributesHistory);
DrawingAttributesHistory = new Dictionary>();
foreach (var item in DrawingAttributesHistoryFlag)
{
item.Value.Clear();
}
}
}
///
/// 处理选择覆盖层的操作增量事件,将来自触摸或操作的平移、缩放和旋转应用到当前选中的墨迹上并更新选择控件位置。
///
/// 触发事件的元素(通常为选择覆盖层)。
/// 包含平移、缩放和旋转增量的 ManipulationDeltaEventArgs。
///
/// - 当只有单指触摸且已有选中墨迹时,不在此处处理拖动(由 TouchMove 处理)。
/// - 三指及以上触摸时禁用缩放。
/// - 若 StrokesSelectionClone 非空,则对其内的墨迹应用变换;否则在允许两指旋转时也会应用旋转变换。
/// - 处理完成后会刷新并更新边框/选择控件的位置。
///
private void GridInkCanvasSelectionCover_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
{
try
{
if (dec.Count >= 1)
{
// 单指时,让TouchMove处理拖动
if (dec.Count == 1 && inkCanvas.GetSelectedStrokes().Count > 0)
{
return;
}
bool disableScale = dec.Count >= 3;
var md = e.DeltaManipulation;
var trans = md.Translation; // 获得位移矢量
var rotate = md.Rotation; // 获得旋转角度
var scale = md.Scale; // 获得缩放倍数
var m = new Matrix();
// Find center of element and then transform to get current location of center
var fe = e.Source as FrameworkElement;
var center = new Point(fe.ActualWidth / 2, fe.ActualHeight / 2);
center = new Point(inkCanvas.GetSelectionBounds().Left + inkCanvas.GetSelectionBounds().Width / 2,
inkCanvas.GetSelectionBounds().Top + inkCanvas.GetSelectionBounds().Height / 2);
center = m.Transform(center); // 转换为矩阵缩放和旋转的中心点
// Update matrix to reflect translation/rotation
m.Translate(trans.X, trans.Y); // 移动
if (!disableScale)
m.ScaleAt(scale.X, scale.Y, center.X, center.Y); // 缩放
var strokes = inkCanvas.GetSelectedStrokes();
if (StrokesSelectionClone.Count != 0)
strokes = StrokesSelectionClone;
else if (Settings.Gesture.IsEnableTwoFingerRotationOnSelection)
m.RotateAt(rotate, center.X, center.Y); // 旋转
// 应用变换到选中的墨迹
foreach (var stroke in strokes)
{
stroke.Transform(m, false);
}
updateBorderStrokeSelectionControlLocation();
}
}
catch (Exception ex)
{
LogHelper.WriteLogToFile($"墨迹ManipulationDelta错误: {ex.Message}", LogHelper.LogType.Error);
}
}
///
/// 处理选区覆盖层的触摸按下事件:记录触摸设备 ID,并在第一个触点时保存选择中心与用于拖拽的初始触点位置。
///
/// 事件源(触摸事件的发送者)。
/// 触摸事件参数,包含触点位置与设备 ID。
private void GridInkCanvasSelectionCover_TouchDown(object sender, TouchEventArgs e)
{
dec.Add(e.TouchDevice.Id);
//设备1个的时候,记录中心点
if (dec.Count == 1)
{
var touchPoint = e.GetTouchPoint(null);
centerPoint = touchPoint.Position;
lastTouchPointOnGridInkCanvasCover = touchPoint.Position;
var touchPointInCanvas = e.GetTouchPoint(inkCanvas);
lastDragPointInCanvas = touchPointInCanvas.Position;
}
}
///
/// 处理选区覆盖层的触摸结束事件:更新触摸跟踪状态并根据触摸位置和当前选区状态显示或隐藏选区覆盖层与克隆集合。
///
/// 触发事件的对象(通常为选区覆盖层)。
/// 触摸事件参数,包含触点信息。
private void GridInkCanvasSelectionCover_TouchUp(object sender, TouchEventArgs e)
{
dec.Remove(e.TouchDevice.Id);
if (dec.Count >= 1) return;
isProgramChangeStrokeSelection = false;
lastDragPointInCanvas = new Point(0, 0);
var touchUpPoint = e.GetTouchPoint(null).Position;
if (lastTouchPointOnGridInkCanvasCover == touchUpPoint)
{
var touchPointInCanvas = e.GetTouchPoint(inkCanvas).Position;
var selectionBounds = inkCanvas.GetSelectionBounds();
if (!(touchPointInCanvas.X < selectionBounds.Left) &&
!(touchPointInCanvas.Y < selectionBounds.Top) &&
!(touchPointInCanvas.X > selectionBounds.Right) &&
!(touchPointInCanvas.Y > selectionBounds.Bottom))
{
return;
}
isProgramChangeStrokeSelection = true;
inkCanvas.Select(new StrokeCollection());
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
isProgramChangeStrokeSelection = false;
StrokesSelectionClone = new StrokeCollection();
}
else if (inkCanvas.GetSelectedStrokes().Count == 0)
{
GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed;
StrokesSelectionClone = new StrokeCollection();
}
else
{
GridInkCanvasSelectionCover.Visibility = Visibility.Visible;
StrokesSelectionClone = new StrokeCollection();
}
}
///
/// 处理触摸移动事件,按单指拖动并平移当前选中的墨迹,同时更新选择控件的位置。
///
/// 仅在存在选中墨迹且当前仅有一个触摸点时生效;若起始触摸点未记录(lastDragPointInCanvas 为 (0,0))则不移动。只有当触摸位移在任一方向超过 1 像素时,才对每条选中墨迹应用平移变换,并更新选择控件位置与最后触摸点。
private void GridInkCanvasSelectionCover_TouchMove(object sender, TouchEventArgs e)
{
// 处理触摸移动事件 - 用于拖动选中的墨迹
if (inkCanvas.GetSelectedStrokes().Count > 0 && dec.Count == 1)
{
var currentTouchPoint = e.GetTouchPoint(inkCanvas).Position;
// 检查是否有有效的起始触摸点
if (lastDragPointInCanvas != new Point(0, 0))
{
var delta = currentTouchPoint - lastDragPointInCanvas;
// 只有当移动距离足够大时才进行拖动(避免微小移动造成的抖动)
if (Math.Abs(delta.X) > 1 || Math.Abs(delta.Y) > 1)
{
// 创建变换矩阵
var matrix = new Matrix();
matrix.Translate(delta.X, delta.Y);
// 对选中的墨迹应用变换
var selectedStrokes = inkCanvas.GetSelectedStrokes();
foreach (var stroke in selectedStrokes)
{
stroke.Transform(matrix, false);
}
// 更新选中栏位置
updateBorderStrokeSelectionControlLocation();
// 更新最后触摸点
lastDragPointInCanvas = currentTouchPoint;
}
}
}
}
private Point lastTouchPointOnGridInkCanvasCover = new Point(0, 0);
private Point lastDragPointInCanvas = new Point(0, 0);
///
/// 切换到选择(套索)工具模式并同步光标显示。
///
///
/// 同时取消强制橡皮擦和点式橡皮擦状态,并将绘制形状模式重置为默认(0)。
///
private void LassoSelect_Click(object sender, RoutedEventArgs e)
{
forceEraser = false;
forcePointEraser = false;
drawingShapeMode = 0;
// 使用集中化的工具模式切换方法
SetCurrentToolMode(InkCanvasEditingMode.Select);
SetCursorBasedOnEditingMode(inkCanvas);
}
///
/// 处理套索选择按钮点击事件
///
/// 事件发送者
/// 路由事件参数
///
/// 设置工具模式为选择模式
/// 启用墨迹画布的操作支持
/// 设置光标为选择模式光标
///
private void BtnLassoSelect_Click(object sender, RoutedEventArgs e)
{
forceEraser = false;
forcePointEraser = false;
drawingShapeMode = 0;
// 使用集中化的工具模式切换方法
SetCurrentToolMode(InkCanvasEditingMode.Select);
inkCanvas.IsManipulationEnabled = true;
SetCursorBasedOnEditingMode(inkCanvas);
}
#region UIElement Selection and Resize
///
/// 获取UI元素的边界
///
/// UI元素
/// UI元素的边界矩形
///
/// 如果元素是FrameworkElement,获取其位置和大小
/// 如果元素有RenderTransform,尝试使用变换后的边界
/// 如果变换失败,回退到简单计算
/// 如果元素不是FrameworkElement,返回空矩形
///
private Rect GetUIElementBounds(UIElement element)
{
if (element is FrameworkElement fe)
{
var left = InkCanvas.GetLeft(element);
var top = InkCanvas.GetTop(element);
if (double.IsNaN(left)) left = 0;
if (double.IsNaN(top)) top = 0;
var width = fe.ActualWidth > 0 ? fe.ActualWidth : fe.Width;
var height = fe.ActualHeight > 0 ? fe.ActualHeight : fe.Height;
// 检查是否有RenderTransform
if (fe.RenderTransform != null && fe.RenderTransform != Transform.Identity)
{
try
{
// 如果有变换,使用变换后的边界
var transform = element.TransformToAncestor(inkCanvas);
var elementBounds = new Rect(0, 0, width, height);
var transformedBounds = transform.TransformBounds(elementBounds);
return transformedBounds;
}
catch
{
// 变换失败时回退到简单计算
return new Rect(left, top, width, height);
}
}
// 没有变换时直接使用位置和大小
return new Rect(left, top, width, height);
}
return new Rect(0, 0, 0, 0);
}
#endregion
#region Selection Display and Resize Handles
///
/// 在画布上显示当前选中墨迹的可视选择框与调整控件(如有选中墨迹则显示,否则隐藏)。
///
///
/// 如果没有选中任何墨迹,隐藏选择显示;否则计算选区边界,将选择框在所有方向各扩展 8 像素,设置选择框的位置与尺寸,并更新调整句柄的位置后显示句柄画布。
///
private void UpdateSelectionDisplay()
{
if (inkCanvas.GetSelectedStrokes().Count == 0)
{
HideSelectionDisplay();
return;
}
var selectionBounds = inkCanvas.GetSelectionBounds();
// 向外扩展8像素
double expandOffset = 8;
// 更新选择框,向外扩展8像素
SelectionRectangle.Visibility = Visibility.Visible;
SelectionRectangle.Margin = new Thickness(selectionBounds.Left - expandOffset, selectionBounds.Top - expandOffset, 0, 0);
SelectionRectangle.Width = selectionBounds.Width + expandOffset * 2;
SelectionRectangle.Height = selectionBounds.Height + expandOffset * 2;
// 更新选择点位置
UpdateSelectionHandles(selectionBounds);
SelectionHandlesCanvas.Visibility = Visibility.Visible;
}
///
/// 隐藏选择显示
///
///
/// 隐藏选择矩形和选择把手画布
///
private void HideSelectionDisplay()
{
SelectionRectangle.Visibility = Visibility.Collapsed;
SelectionHandlesCanvas.Visibility = Visibility.Collapsed;
}
///
/// 根据给定的选择边界定位并设置八个缩放/移动把手的位置,四个把手在各边外扩展 8 像素,四个角把手完全位于外部。
///
/// 当前选区在画布坐标系中的边界矩形(未包含用于显示的 8 像素外扩展)。
private void UpdateSelectionHandles(Rect bounds)
{
// 四个边选择点,向外扩展8像素
TopHandle.Margin = new Thickness(bounds.Left + bounds.Width / 2 - 4, bounds.Top - 12, 0, 0);
BottomHandle.Margin = new Thickness(bounds.Left + bounds.Width / 2 - 4, bounds.Bottom + 4, 0, 0);
LeftHandle.Margin = new Thickness(bounds.Left - 12, bounds.Top + bounds.Height / 2 - 4, 0, 0);
RightHandle.Margin = new Thickness(bounds.Right + 4, bounds.Top + bounds.Height / 2 - 4, 0, 0);
// 四个角选择点,完全位于选择框外部
TopLeftHandle.Margin = new Thickness(bounds.Left - 12, bounds.Top - 12, 0, 0);
TopRightHandle.Margin = new Thickness(bounds.Right + 4, bounds.Top - 12, 0, 0);
BottomLeftHandle.Margin = new Thickness(bounds.Left - 12, bounds.Bottom + 4, 0, 0);
BottomRightHandle.Margin = new Thickness(bounds.Right + 4, bounds.Bottom + 4, 0, 0);
}
///
/// 在用户按下选择框的缩放把手时开始缩放操作。
///
///
/// 记录缩放开始位置和当前选区的初始边界,设置当前活动把手并捕获鼠标以便后续移动/释放事件处理。
///
/// 触发事件的缩放把手,预期为一个 Rectangle。
/// 包含鼠标按下事件的位置信息和处理标志的 实例。
private void SelectionHandle_MouseDown(object sender, MouseButtonEventArgs e)
{
if (sender is Rectangle handle)
{
isResizing = true;
currentResizeHandle = handle.Name;
resizeStartPoint = e.GetPosition(inkCanvas);
originalSelectionBounds = inkCanvas.GetSelectionBounds();
handle.CaptureMouse();
e.Handled = true;
}
}
///
/// 处理选择把手鼠标移动事件
///
/// 事件发送者
/// 鼠标事件参数
///
/// 如果正在调整大小,计算新的边界
/// 应用新的边界到选中的墨迹
/// 更新选择框显示
///
private void SelectionHandle_MouseMove(object sender, MouseEventArgs e)
{
if (!isResizing || !(sender is Rectangle handle)) return;
var currentPoint = e.GetPosition(inkCanvas);
var delta = new Point(currentPoint.X - resizeStartPoint.X, currentPoint.Y - resizeStartPoint.Y);
var newBounds = CalculateNewBounds(originalSelectionBounds, delta, currentResizeHandle);
// 应用新的边界到选中的墨迹
ApplyBoundsToStrokes(newBounds);
// 更新选择框显示
UpdateSelectionDisplay();
}
///
/// 在选择框的大小调整句柄上释放鼠标时结束调整操作、释放句柄的鼠标捕获并将事件标记为已处理。
///
/// 触发事件的对象,应为表示调整句柄的 。
/// 鼠标事件参数;在处理后该事件会被标记为已处理。
private void SelectionHandle_MouseUp(object sender, MouseButtonEventArgs e)
{
if (sender is Rectangle handle)
{
isResizing = false;
currentResizeHandle = "";
handle.ReleaseMouseCapture();
e.Handled = true;
}
}
///
/// 在触摸按下选择调整句柄时开始调整操作并记录初始状态(活动句柄、起始点和当前选区边界)。
///
/// 触发事件的调整句柄(应为 Rectangle)。
/// 触摸事件数据;方法会标记事件为已处理并使用其触点相对于 inkCanvas 的位置。
private void SelectionHandle_TouchDown(object sender, TouchEventArgs e)
{
if (sender is Rectangle handle)
{
isResizing = true;
currentResizeHandle = handle.Name;
var touchPoint = e.GetTouchPoint(inkCanvas);
resizeStartPoint = touchPoint.Position;
originalSelectionBounds = inkCanvas.GetSelectionBounds();
e.Handled = true;
}
}
///
/// 在触摸移动时根据拖动更新选区的边界并将其应用到当前所选的墨迹。
///
/// 触发事件的调整句柄(应为一个 Rectangle)。
/// 包含触摸位置和状态的事件参数。
/// 计算新的选择边界、将其应用到所选墨迹并刷新选择显示;将事件标记为已处理。
private void SelectionHandle_TouchMove(object sender, TouchEventArgs e)
{
if (!isResizing || !(sender is Rectangle handle)) return;
var touchPoint = e.GetTouchPoint(inkCanvas);
var currentPoint = touchPoint.Position;
var delta = new Point(currentPoint.X - resizeStartPoint.X, currentPoint.Y - resizeStartPoint.Y);
var newBounds = CalculateNewBounds(originalSelectionBounds, delta, currentResizeHandle);
// 应用新的边界到选中的墨迹
ApplyBoundsToStrokes(newBounds);
// 更新选择框显示
UpdateSelectionDisplay();
e.Handled = true;
}
///
/// 结束触摸对选择框调整大小的交互,重置调整状态并标记事件已处理。
///
/// 触发事件的调整句柄(Rectangle)。
/// 触摸事件数据;方法会将其标记为已处理。
private void SelectionHandle_TouchUp(object sender, TouchEventArgs e)
{
if (sender is Rectangle handle)
{
isResizing = false;
currentResizeHandle = "";
e.Handled = true;
}
}
///
/// 根据指定的拖动增量和所操作的调整柄,计算并返回调整后的边界矩形。
///
/// 调整前的原始边界矩形。
/// 从初始位置到当前拖动位置的偏移量,用于更新对应边或角的位置和尺寸。
/// 被拖动的调整柄的名称,支持的值:`TopLeftHandle`、`TopRightHandle`、`BottomLeftHandle`、`BottomRightHandle`、`TopHandle`、`BottomHandle`、`LeftHandle`、`RightHandle`。
/// 应用偏移并强制最小宽高限制(10×10)后的新的边界矩形。
private Rect CalculateNewBounds(Rect originalBounds, Point delta, string handleName)
{
var newBounds = originalBounds;
double newWidth = originalBounds.Width;
double newHeight = originalBounds.Height;
double newX = originalBounds.X;
double newY = originalBounds.Y;
switch (handleName)
{
case "TopLeftHandle":
newX = originalBounds.X + delta.X;
newY = originalBounds.Y + delta.Y;
newWidth = originalBounds.Width - delta.X;
newHeight = originalBounds.Height - delta.Y;
break;
case "TopRightHandle":
newY = originalBounds.Y + delta.Y;
newWidth = originalBounds.Width + delta.X;
newHeight = originalBounds.Height - delta.Y;
break;
case "BottomLeftHandle":
newX = originalBounds.X + delta.X;
newWidth = originalBounds.Width - delta.X;
newHeight = originalBounds.Height + delta.Y;
break;
case "BottomRightHandle":
newWidth = originalBounds.Width + delta.X;
newHeight = originalBounds.Height + delta.Y;
break;
case "TopHandle":
newY = originalBounds.Y + delta.Y;
newHeight = originalBounds.Height - delta.Y;
break;
case "BottomHandle":
newHeight = originalBounds.Height + delta.Y;
break;
case "LeftHandle":
newX = originalBounds.X + delta.X;
newWidth = originalBounds.Width - delta.X;
break;
case "RightHandle":
newWidth = originalBounds.Width + delta.X;
break;
}
// 确保最小尺寸和正值
if (newWidth < 10) newWidth = 10;
if (newHeight < 10) newHeight = 10;
// 创建新的Rect,确保所有值都是有效的
newBounds = new Rect(newX, newY, newWidth, newHeight);
return newBounds;
}
///
/// 应用新的边界到选中的墨迹
///
/// 新的边界矩形
///
/// 计算缩放比例和平移量
/// 创建变换矩阵
/// 应用变换到选中的墨迹
///
private void ApplyBoundsToStrokes(Rect newBounds)
{
var selectedStrokes = inkCanvas.GetSelectedStrokes();
if (selectedStrokes.Count == 0) return;
var originalBounds = inkCanvas.GetSelectionBounds();
// 计算缩放比例
var scaleX = newBounds.Width / originalBounds.Width;
var scaleY = newBounds.Height / originalBounds.Height;
// 计算平移量
var translateX = newBounds.X - originalBounds.X;
var translateY = newBounds.Y - originalBounds.Y;
// 创建变换矩阵
var matrix = new Matrix();
matrix.Translate(translateX, translateY);
matrix.ScaleAt(scaleX, scaleY, originalBounds.X + originalBounds.Width / 2, originalBounds.Y + originalBounds.Height / 2);
// 应用变换到选中的墨迹
foreach (var stroke in selectedStrokes)
{
stroke.Transform(matrix, false);
}
}
#endregion
}
}