1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
namespace LB_VisionFlowNode
{
    partial class FlowNodeEditor
    {
        /// <summary> 
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary> 
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        #region 组件设计器生成的代码
 
        /// <summary> 
        /// 设计器支持所需的方法 - 不要修改
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FlowNodeEditor));
            tsp_Top = new ToolStrip();
            btn_Run = new ToolStripButton();
            btn_Clear = new ToolStripButton();
            btn_Save = new ToolStripButton();
            btn_Load = new ToolStripButton();
            pnl_FlowNodeEditor = new Panel();
            tsp_Top.SuspendLayout();
            SuspendLayout();
            // 
            // tsp_Top
            // 
            tsp_Top.BackColor = Color.FromArgb(39, 51, 63);
            tsp_Top.Items.AddRange(new ToolStripItem[] { btn_Run, btn_Clear, btn_Save, btn_Load });
            tsp_Top.Location = new Point(0, 0);
            tsp_Top.Name = "tsp_Top";
            tsp_Top.Size = new Size(460, 28);
            tsp_Top.TabIndex = 14;
            tsp_Top.Text = "toolStrip1";
            // 
            // btn_Run
            // 
            btn_Run.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btn_Run.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            btn_Run.ForeColor = SystemColors.Control;
            btn_Run.Image = (Image)resources.GetObject("btn_Run.Image");
            btn_Run.ImageTransparentColor = Color.Magenta;
            btn_Run.Name = "btn_Run";
            btn_Run.Size = new Size(78, 25);
            btn_Run.Text = "运行测试";
            btn_Run.Click += btn_Run_Click;
            // 
            // btn_Clear
            // 
            btn_Clear.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btn_Clear.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            btn_Clear.ForeColor = SystemColors.Control;
            btn_Clear.Image = (Image)resources.GetObject("btn_Clear.Image");
            btn_Clear.ImageTransparentColor = Color.Magenta;
            btn_Clear.Name = "btn_Clear";
            btn_Clear.Size = new Size(78, 25);
            btn_Clear.Text = "清空节点";
            btn_Clear.Click += btn_Clear_Click;
            // 
            // btn_Save
            // 
            btn_Save.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btn_Save.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            btn_Save.ForeColor = SystemColors.Control;
            btn_Save.Image = (Image)resources.GetObject("btn_Save.Image");
            btn_Save.ImageTransparentColor = Color.Magenta;
            btn_Save.Name = "btn_Save";
            btn_Save.Size = new Size(110, 25);
            btn_Save.Text = "保存所有节点";
            btn_Save.Click += btn_Save_Click;
            // 
            // btn_Load
            // 
            btn_Load.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btn_Load.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            btn_Load.ForeColor = SystemColors.Control;
            btn_Load.Image = (Image)resources.GetObject("btn_Load.Image");
            btn_Load.ImageTransparentColor = Color.Magenta;
            btn_Load.Name = "btn_Load";
            btn_Load.Size = new Size(110, 25);
            btn_Load.Text = "加载所有节点";
            btn_Load.Click += btn_Load_Click;
            // 
            // pnl_FlowNodeEditor
            // 
            pnl_FlowNodeEditor.AutoScroll = true;
            pnl_FlowNodeEditor.BackColor = Color.FromArgb(39, 51, 63);
            pnl_FlowNodeEditor.Dock = DockStyle.Fill;
            pnl_FlowNodeEditor.Location = new Point(0, 28);
            pnl_FlowNodeEditor.MinimumSize = new Size(261, 61);
            pnl_FlowNodeEditor.Name = "pnl_FlowNodeEditor";
            pnl_FlowNodeEditor.Size = new Size(460, 301);
            pnl_FlowNodeEditor.TabIndex = 15;
            // 
            // FlowNodeEditor
            // 
            AutoScaleDimensions = new SizeF(96F, 96F);
            AutoScaleMode = AutoScaleMode.Dpi;
            Controls.Add(pnl_FlowNodeEditor);
            Controls.Add(tsp_Top);
            Name = "FlowNodeEditor";
            Size = new Size(460, 329);
            tsp_Top.ResumeLayout(false);
            tsp_Top.PerformLayout();
            ResumeLayout(false);
            PerformLayout();
        }
 
        #endregion
        private FlowPanel pnl_Main;
        private ToolStrip tsp_Top;
        private ToolStripButton btn_Run;
        private ToolStripButton btn_Clear;
        private ToolStripButton btn_Save;
        private ToolStripButton btn_Load;
        private Panel pnl_FlowNodeEditor;
    }
}