FlowchartNode.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LYFZ.Model;
  6. namespace LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls
  7. {
  8. /// <summary>
  9. /// 流程图节点
  10. /// </summary>
  11. public class FlowchartNode
  12. {
  13. ComponentLibrary.PanelEx panelNode = new ComponentLibrary.PanelEx();
  14. ComponentLibrary.LabelEx labelText = new ComponentLibrary.LabelEx();
  15. public FlowchartNode(FlowchartNodeType nType, string nodeText="未知")
  16. {
  17. this.panelNode.Size = new System.Drawing.Size(48,48);
  18. switch (nType)
  19. {
  20. case FlowchartNodeType.蓝色节点:
  21. this.panelNode.BackgroundImage = LYFZ.Software.Properties.Resources.节点1;
  22. this.labelText.ForeColor = System.Drawing.Color.White;
  23. break;
  24. case FlowchartNodeType.白色节点:
  25. this.panelNode.BackgroundImage = LYFZ.Software.Properties.Resources.节点2;
  26. this.labelText.ForeColor = System.Drawing.Color.DodgerBlue;
  27. break;
  28. default:
  29. this.panelNode.BackgroundImage = LYFZ.Software.Properties.Resources.节点1;
  30. this.labelText.ForeColor = System.Drawing.Color.DodgerBlue;
  31. break;
  32. }
  33. this.panelNode.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  34. this.labelText.BackColor = System.Drawing.Color.Transparent;
  35. this.labelText.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.labelText.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  37. //this.labelText.Location = new System.Drawing.Point(0, 0);
  38. // this.labelText.Size = new System.Drawing.Size(48, 48);
  39. this.labelText.Text = nodeText;
  40. this.labelText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  41. this.panelNode.Controls.Add(this.labelText);
  42. }
  43. public string NodeText
  44. {
  45. set { this.labelText.Text = value; }
  46. get { return this.labelText.Text.Trim(); }
  47. }
  48. public ComponentLibrary.PanelEx PanelNode
  49. {
  50. get { return this.panelNode; }
  51. }
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. public Model_ErpOrderDigital DigitalItem { get {return digitalItem; } set { digitalItem = value; } }
  56. LYFZ.Model.Model_ErpOrderDigital digitalItem = null;
  57. /// <summary>
  58. ///
  59. /// </summary>
  60. public Model_ErpOrdersPhotography PhotographyItem { get { return photographyItem; } set { photographyItem = value; } }
  61. LYFZ.Model.Model_ErpOrdersPhotography photographyItem = null;
  62. }
  63. }
  64. namespace LYFZ
  65. {
  66. public enum FlowchartNodeType
  67. {
  68. 蓝色节点 = 0,
  69. 白色节点 = 1
  70. }
  71. }