ModuleView.xaml.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. using FlowChartModule.绘制模块;
  2. using Prism.Ioc;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Diagnostics;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Controls;
  11. using System.Windows.Data;
  12. using System.Windows.Documents;
  13. using System.Windows.Input;
  14. using System.Windows.Media;
  15. using System.Windows.Media.Imaging;
  16. using System.Windows.Navigation;
  17. using System.Windows.Shapes;
  18. using static System.Formats.Asn1.AsnWriter;
  19. namespace FlowChartModule.Views
  20. {
  21. /// <summary>
  22. /// ModuleView.xaml 的交互逻辑
  23. /// </summary>
  24. public partial class ModuleView : UserControl
  25. {
  26. public Element _element;
  27. public DrawModule drawModule;
  28. double scale=1;
  29. private Point _mousedownPoint;
  30. private bool _isMouseDown=false;
  31. public ModuleView(IContainerProvider containerProvider)
  32. {
  33. InitializeComponent();
  34. drawModule=containerProvider.Resolve<DrawModule>();
  35. drawModule.Canvas = this.DrawingContainer;
  36. this.MouseUp += ModuleView_MouseUp;
  37. //Pantransform.X = -10000;
  38. //Pantransform.Y = -10000;
  39. }
  40. private void ModuleView_MouseUp(object sender, MouseButtonEventArgs e)
  41. {
  42. ParentCanvasGrid.ReleaseMouseCapture();
  43. Connection_Point._isMouseDown = false;
  44. _isMouseDown = false;
  45. drawModule.DrawRectangle(e.GetPosition(this.DrawingContainer));
  46. if ( drawModule.CurrentFlowClickElement != null )
  47. {
  48. drawModule.CurrentFlowClickElement.connection_Lines.Remove(drawModule.Connection_Line);
  49. DrawingContainer.Children.Remove(drawModule.Connection_Line.path);
  50. }
  51. drawModule.CurrentFlowClickElement = null;
  52. drawModule.isMouseDown = false;
  53. //drawModule.Connection_Line
  54. }
  55. private void Window_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
  56. {
  57. if ( Keyboard.IsKeyDown(Key.LeftCtrl) )
  58. {
  59. if ( e.Delta < 0 )
  60. {
  61. scale -= 0.01;
  62. }
  63. else
  64. {
  65. scale += 0.01;
  66. }
  67. // scale += (double)e.Delta / 35000;
  68. ScaleTransform transfrom = new ScaleTransform();
  69. transfrom.ScaleX = transfrom.ScaleY = scale;
  70. this.DrawingContainer.RenderTransform = transfrom;
  71. }
  72. }
  73. private Pen CreateAndFreezePen()
  74. {
  75. // 创建Pen
  76. Pen pen = new Pen(Brushes.Black, 1);
  77. // 冻结Pen
  78. if ( pen.CanFreeze )
  79. {
  80. pen.Freeze();
  81. }
  82. return pen;
  83. }
  84. private void ParentCanvasGrid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  85. {
  86. if (!drawModule.isMouseDown)
  87. {
  88. _isMouseDown = true;
  89. _mousedownPoint = e.GetPosition(this.ParentCanvasGrid);
  90. ParentCanvasGrid.CaptureMouse();
  91. }
  92. if ( drawModule.CurrentFlowClickElement != null && Connection_Point._isMouseDown )
  93. {
  94. drawModule.Connection_Line= new Connection_Line(DrawingContainer);
  95. Point position;
  96. Point position1 = drawModule.CurrentFlowClickElement.left.ellipse.TransformToVisual(this.DrawingContainer).Transform(new Point(0, 0));
  97. Point position2 = drawModule.CurrentFlowClickElement.right.ellipse.TransformToVisual(this.DrawingContainer).Transform(new Point(0, 0));
  98. Point position3 = drawModule.CurrentFlowClickElement.up.ellipse.TransformToVisual(this.DrawingContainer).Transform(new Point(0, 0));
  99. Point position4 = drawModule.CurrentFlowClickElement.down.ellipse.TransformToVisual(this.DrawingContainer).Transform(new Point(0, 0));
  100. Point position5= e.GetPosition(this.DrawingContainer);
  101. bool isHas = false;
  102. if ( Math.Abs(position1.X - position5.X) < 40 && Math.Abs(position1.Y - position5.Y) < 40 && !isHas )
  103. {
  104. isHas = true;
  105. position =new Point(position1.X+6,position1.Y+6);
  106. }
  107. if ( Math.Abs(position2.X - position5.X) < 40 && Math.Abs(position2.Y - position5.Y) < 40 && !isHas )
  108. {
  109. isHas = true;
  110. position = new Point(position2.X + 6, position2.Y + 6);
  111. }
  112. if ( Math.Abs(position3.X - position5.X) < 40 && Math.Abs(position3.Y - position5.Y) < 40 && !isHas )
  113. {
  114. isHas = true;
  115. position = new Point(position3.X + 6, position3.Y + 6);
  116. }
  117. if ( Math.Abs(position4.X - position5.X) < 40 && Math.Abs(position4.Y - position5.Y) < 40 && !isHas )
  118. {
  119. isHas = true;
  120. position = new Point(position4.X + 6, position4.Y + 6);
  121. }
  122. if ( isHas ) {
  123. drawModule.Connection_Line.curveModel.StartPoint = position;
  124. drawModule.Connection_Line.curveModel.EndPoint = position;
  125. drawModule.Connection_Line.Drewbezier(this.DrawingContainer);
  126. drawModule.Connection_Line.Startelement = drawModule.CurrentFlowClickElement;
  127. drawModule.CurrentFlowClickElement.connection_Lines.Add(drawModule.Connection_Line);
  128. }
  129. }
  130. }
  131. private void ParentCanvasGrid_MouseMove(object sender, MouseEventArgs e)
  132. {
  133. if (_isMouseDown)
  134. {
  135. Point point=e.GetPosition(ParentCanvasGrid);
  136. Pantransform.X -= _mousedownPoint.X - point.X;
  137. Pantransform.Y -= _mousedownPoint.Y - point.Y;
  138. _mousedownPoint = point;
  139. }
  140. if ( drawModule.CurrentFlowClickElement != null &&Connection_Point._isMouseDown)
  141. {
  142. drawModule.Connection_Line.curveModel.EndPoint = e.GetPosition(this.DrawingContainer);
  143. drawModule.Connection_Line.DrewbezierRef(this.DrawingContainer);
  144. }
  145. }
  146. }
  147. }