mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
99 lines
2.9 KiB
C#
99 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using AIStudio.Wpf.DiagramDesigner.Models;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class EllipseDrawingDesignerItemViewModel : DrawingDesignerItemViewModelBase
|
|
{
|
|
public EllipseDrawingDesignerItemViewModel()
|
|
{
|
|
}
|
|
|
|
public EllipseDrawingDesignerItemViewModel(IDiagramViewModel root, Point startPoint, bool erasable) : base(root, DrawMode.ErasableRectangle, startPoint, erasable)
|
|
{
|
|
}
|
|
|
|
public EllipseDrawingDesignerItemViewModel(IDiagramViewModel root, List<Point> points, bool erasable) : base(root, DrawMode.ErasableRectangle, points, erasable)
|
|
{
|
|
|
|
}
|
|
|
|
public EllipseDrawingDesignerItemViewModel(IDiagramViewModel root, SelectableItemBase designer) : base(root, designer)
|
|
{
|
|
|
|
}
|
|
|
|
public EllipseDrawingDesignerItemViewModel(IDiagramViewModel root, SerializableItem serializableItem, string serializableType) : base(root, serializableItem, serializableType)
|
|
{
|
|
|
|
}
|
|
|
|
protected override void InitNewDrawing()
|
|
{
|
|
if (IsFinish)
|
|
{
|
|
Geometry = new EllipseGeometry(new Rect(Points[0], Points[1]));
|
|
}
|
|
base.InitNewDrawing();
|
|
}
|
|
|
|
|
|
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[0] - point).Length < ColorViewModel.LineWidth)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
if (Keyboard.IsKeyDown(Key.LeftShift))//圆形
|
|
{
|
|
var len =Math.Abs(point.X - Points[0].X);//按X轴放大
|
|
point = new Point(Points[0].X + (point.X > Points[0].X ? len : -len), Points[0].Y + (point.Y > Points[0].Y ? len : -len));
|
|
}
|
|
|
|
if (Points.Count == 2)
|
|
{
|
|
Points[1] = point;
|
|
}
|
|
else
|
|
{
|
|
Points.Add(point);
|
|
}
|
|
Geometry = new EllipseGeometry(new Rect(Points[0], Points[1]));
|
|
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);
|
|
}
|
|
}
|
|
}
|