mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
87 lines
2.4 KiB
C#
87 lines
2.4 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Documents;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|||
|
|
{
|
|||
|
|
public class PolylineDrawingDesignerItemViewModel : DrawingDesignerItemViewModelBase
|
|||
|
|
{
|
|||
|
|
public PolylineDrawingDesignerItemViewModel()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public PolylineDrawingDesignerItemViewModel(IDiagramViewModel root) : base(root)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public PolylineDrawingDesignerItemViewModel(IDiagramViewModel root, Point startPoint, bool erasable) : base(root, DrawMode.Line, startPoint, erasable)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public PolylineDrawingDesignerItemViewModel(IDiagramViewModel root, List<Point> points, bool erasable) : base(root, DrawMode.Line, points, erasable)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override bool OnMouseMove(IInputElement sender, MouseEventArgs e)
|
|||
|
|
{
|
|||
|
|
if (e.LeftButton == MouseButtonState.Pressed)
|
|||
|
|
{
|
|||
|
|
var point = e.GetPosition(sender);
|
|||
|
|
if (Points == null || Points.Count == 0)//没有起始点
|
|||
|
|
{
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if ((Points.LastOrDefault() - point).Length < ColorViewModel.LineWidth)
|
|||
|
|
{
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
Points.Add(point);
|
|||
|
|
|
|||
|
|
if (Geometry is PathGeometry geometry)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
geometry = new PathGeometry();
|
|||
|
|
var figure = new PathFigure { StartPoint = Points[0] };
|
|||
|
|
geometry.Figures.Add(figure);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
LineSegment arc = new LineSegment(point, true);// { IsSmoothJoin = true };
|
|||
|
|
geometry.Figures[0].Segments.Add(arc);
|
|||
|
|
Geometry = geometry;
|
|||
|
|
|
|||
|
|
IsFinish = true;
|
|||
|
|
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override bool OnMouseDown(IInputElement sender, MouseButtonEventArgs e)
|
|||
|
|
{
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override bool OnMouseUp(IInputElement sender, MouseButtonEventArgs e)
|
|||
|
|
{
|
|||
|
|
return base.OnMouseUp(sender, e);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|