Element.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. using FlowChartModule.Model;
  2. using ParentService.ParentService;
  3. using Prism.Ioc;
  4. using Prism.Regions;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows;
  11. using System.Windows.Controls;
  12. using System.Windows.Media;
  13. using System.Windows.Shapes;
  14. using System.Xml.Linq;
  15. namespace FlowChartModule.绘制模块
  16. {
  17. public class Element
  18. {
  19. public Guid Id = Guid.NewGuid();
  20. public ParentClass parentClass;
  21. public Canvas rect;
  22. public string text;
  23. public string SourcesName;
  24. public DrawModule drawModule;
  25. public Connection_Point up;
  26. public Connection_Point down;
  27. public Connection_Point left;
  28. public Connection_Point right;
  29. public List<Connection_Line> connection_Lines=new List<Connection_Line>();
  30. public IContainerProvider _container;
  31. public string _Name;
  32. #region 控件拖动判断
  33. public bool isMouseDown=false;
  34. #endregion
  35. public Element(string name, IContainerProvider container,bool iscp=false, bool isLoad = true)
  36. {
  37. _container = container;
  38. rect = new Canvas();
  39. rect.Height = 50;
  40. rect.Width = 110;
  41. rect.Tag = this;
  42. Canvas.SetZIndex(rect,1);
  43. Rectangle rectangle = new Rectangle()
  44. {
  45. Width = 110,
  46. Height = 50,
  47. Fill = Brushes.LightBlue,
  48. Stroke = Brushes.Black,
  49. StrokeThickness = 2,
  50. RadiusX = 10,
  51. RadiusY = 10
  52. };
  53. rect.Children.Add(rectangle);
  54. if ( iscp )
  55. {
  56. up = new Connection_Point(new Point(( int ) ( rectangle.Width / 2 - 6 ), 0 - 6), rect, connection_Lines);
  57. down = new Connection_Point(new Point(( int ) ( rectangle.Width / 2 - 6 ), ( int ) rectangle.Height - 6), rect, connection_Lines);
  58. left = new Connection_Point(new Point(0 - 6, ( int ) ( rectangle.Height / 2 - 6 )), rect, connection_Lines);
  59. right = new Connection_Point(new Point(( int ) rectangle.Width - 6, ( int ) ( rectangle.Height / 2 - 6 )), rect, connection_Lines);
  60. }
  61. TextBlock textBlock= new TextBlock()
  62. {
  63. Text = name,
  64. FontSize = 10,
  65. Width = 110,
  66. VerticalAlignment = VerticalAlignment.Center,
  67. HorizontalAlignment = HorizontalAlignment.Center,
  68. Foreground = Brushes.White,
  69. } ;
  70. Canvas.SetLeft(textBlock, 10);
  71. Canvas.SetTop(textBlock, 10);
  72. rect.Children.Add(textBlock);
  73. drawModule = container.Resolve<DrawModule>();
  74. if ( isLoad )
  75. {
  76. rect.MouseDown += Rect_MouseDown;
  77. rect.MouseUp += Rect_MouseUp;
  78. }
  79. }
  80. private void Rect_MouseUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
  81. {
  82. isMouseDown = false;
  83. drawModule.CurrentSelectElement = null;
  84. }
  85. private void Rect_MouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
  86. {
  87. isMouseDown = true;
  88. drawModule.CurrentSelectElement = this.Clone();
  89. }
  90. public void RequestNavigate(IRegionManager _regionManager)
  91. {
  92. _regionManager.RequestNavigate("ContentRegion", SourcesName);
  93. }
  94. public Element Clone()
  95. {
  96. Element element=new Element(this._Name,_container,true);
  97. element._Name = _Name;
  98. element.SourcesName = SourcesName;
  99. GetConcreteVisitor visitor = new GetConcreteVisitor(); // 创建访问者实例
  100. element.parentClass = parentClass.GetServices(visitor);
  101. element.rect.MouseUp -= element.Rect_MouseUp;
  102. element.rect.MouseDown -= element.Rect_MouseDown;
  103. return element;
  104. }
  105. }
  106. }