| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- namespace FlowEditor
- {
- partial class AddAFlowNodeForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.btOK = new System.Windows.Forms.Button();
- this.btCancel = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.tbNodeID = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.tbNodeName = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.tbNodeNote = new System.Windows.Forms.TextBox();
- this.cbNodeType = new System.Windows.Forms.ComboBox();
- this.label4 = new System.Windows.Forms.Label();
- this.btAutoCreateID = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // btOK
- //
- this.btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.btOK.Location = new System.Drawing.Point(250, 152);
- this.btOK.Name = "btOK";
- this.btOK.Size = new System.Drawing.Size(75, 23);
- this.btOK.TabIndex = 0;
- this.btOK.Text = "确定";
- this.btOK.UseVisualStyleBackColor = true;
- this.btOK.Click += new System.EventHandler(this.btOK_Click);
- //
- // btCancel
- //
- this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btCancel.Location = new System.Drawing.Point(331, 152);
- this.btCancel.Name = "btCancel";
- this.btCancel.Size = new System.Drawing.Size(75, 23);
- this.btCancel.TabIndex = 0;
- this.btCancel.Text = "取消";
- this.btCancel.UseVisualStyleBackColor = true;
- this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(10, 38);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(41, 12);
- this.label1.TabIndex = 1;
- this.label1.Text = "节点ID";
- //
- // tbNodeID
- //
- this.tbNodeID.Location = new System.Drawing.Point(69, 35);
- this.tbNodeID.Name = "tbNodeID";
- this.tbNodeID.Size = new System.Drawing.Size(256, 21);
- this.tbNodeID.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(235, 11);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 1;
- this.label2.Text = "节点名称";
- //
- // tbNodeName
- //
- this.tbNodeName.Location = new System.Drawing.Point(296, 7);
- this.tbNodeName.Name = "tbNodeName";
- this.tbNodeName.Size = new System.Drawing.Size(110, 21);
- this.tbNodeName.TabIndex = 2;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(10, 63);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 1;
- this.label3.Text = "节点备注";
- //
- // tbNodeNote
- //
- this.tbNodeNote.Location = new System.Drawing.Point(69, 63);
- this.tbNodeNote.Multiline = true;
- this.tbNodeNote.Name = "tbNodeNote";
- this.tbNodeNote.Size = new System.Drawing.Size(337, 83);
- this.tbNodeNote.TabIndex = 2;
- //
- // cbNodeType
- //
- this.cbNodeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbNodeType.FormattingEnabled = true;
- this.cbNodeType.Location = new System.Drawing.Point(69, 7);
- this.cbNodeType.Name = "cbNodeType";
- this.cbNodeType.Size = new System.Drawing.Size(159, 20);
- this.cbNodeType.TabIndex = 3;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(10, 10);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(53, 12);
- this.label4.TabIndex = 1;
- this.label4.Text = "节点类型";
- //
- // btAutoCreateID
- //
- this.btAutoCreateID.Location = new System.Drawing.Point(331, 34);
- this.btAutoCreateID.Name = "btAutoCreateID";
- this.btAutoCreateID.Size = new System.Drawing.Size(75, 23);
- this.btAutoCreateID.TabIndex = 4;
- this.btAutoCreateID.Text = "自动生成";
- this.btAutoCreateID.UseVisualStyleBackColor = true;
- this.btAutoCreateID.Click += new System.EventHandler(this.btAutoCreateID_Click);
- //
- // AddAFlowNodeForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(408, 178);
- this.Controls.Add(this.btAutoCreateID);
- this.Controls.Add(this.cbNodeType);
- this.Controls.Add(this.tbNodeNote);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.tbNodeName);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.tbNodeID);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.btCancel);
- this.Controls.Add(this.btOK);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "AddAFlowNodeForm";
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "新建节点";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AddAFlowNodeForm_FormClosing);
- this.Load += new System.EventHandler(this.AddAFlowNodeForm_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button btOK;
- private System.Windows.Forms.Button btCancel;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox tbNodeID;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox tbNodeName;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TextBox tbNodeNote;
- private System.Windows.Forms.ComboBox cbNodeType;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button btAutoCreateID;
- }
- }
|