华谊自己改写的工作流

AddAFlowNodeForm.Designer.cs 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. namespace FlowEditor
  2. {
  3. partial class AddAFlowNodeForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btOK = new System.Windows.Forms.Button();
  29. this.btCancel = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.tbNodeID = new System.Windows.Forms.TextBox();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.tbNodeName = new System.Windows.Forms.TextBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.tbNodeNote = new System.Windows.Forms.TextBox();
  36. this.cbNodeType = new System.Windows.Forms.ComboBox();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.btAutoCreateID = new System.Windows.Forms.Button();
  39. this.SuspendLayout();
  40. //
  41. // btOK
  42. //
  43. this.btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  44. this.btOK.Location = new System.Drawing.Point(250, 152);
  45. this.btOK.Name = "btOK";
  46. this.btOK.Size = new System.Drawing.Size(75, 23);
  47. this.btOK.TabIndex = 0;
  48. this.btOK.Text = "确定";
  49. this.btOK.UseVisualStyleBackColor = true;
  50. this.btOK.Click += new System.EventHandler(this.btOK_Click);
  51. //
  52. // btCancel
  53. //
  54. this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  55. this.btCancel.Location = new System.Drawing.Point(331, 152);
  56. this.btCancel.Name = "btCancel";
  57. this.btCancel.Size = new System.Drawing.Size(75, 23);
  58. this.btCancel.TabIndex = 0;
  59. this.btCancel.Text = "取消";
  60. this.btCancel.UseVisualStyleBackColor = true;
  61. this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
  62. //
  63. // label1
  64. //
  65. this.label1.AutoSize = true;
  66. this.label1.Location = new System.Drawing.Point(10, 38);
  67. this.label1.Name = "label1";
  68. this.label1.Size = new System.Drawing.Size(41, 12);
  69. this.label1.TabIndex = 1;
  70. this.label1.Text = "节点ID";
  71. //
  72. // tbNodeID
  73. //
  74. this.tbNodeID.Location = new System.Drawing.Point(69, 35);
  75. this.tbNodeID.Name = "tbNodeID";
  76. this.tbNodeID.Size = new System.Drawing.Size(256, 21);
  77. this.tbNodeID.TabIndex = 2;
  78. //
  79. // label2
  80. //
  81. this.label2.AutoSize = true;
  82. this.label2.Location = new System.Drawing.Point(235, 11);
  83. this.label2.Name = "label2";
  84. this.label2.Size = new System.Drawing.Size(53, 12);
  85. this.label2.TabIndex = 1;
  86. this.label2.Text = "节点名称";
  87. //
  88. // tbNodeName
  89. //
  90. this.tbNodeName.Location = new System.Drawing.Point(296, 7);
  91. this.tbNodeName.Name = "tbNodeName";
  92. this.tbNodeName.Size = new System.Drawing.Size(110, 21);
  93. this.tbNodeName.TabIndex = 2;
  94. //
  95. // label3
  96. //
  97. this.label3.AutoSize = true;
  98. this.label3.Location = new System.Drawing.Point(10, 63);
  99. this.label3.Name = "label3";
  100. this.label3.Size = new System.Drawing.Size(53, 12);
  101. this.label3.TabIndex = 1;
  102. this.label3.Text = "节点备注";
  103. //
  104. // tbNodeNote
  105. //
  106. this.tbNodeNote.Location = new System.Drawing.Point(69, 63);
  107. this.tbNodeNote.Multiline = true;
  108. this.tbNodeNote.Name = "tbNodeNote";
  109. this.tbNodeNote.Size = new System.Drawing.Size(337, 83);
  110. this.tbNodeNote.TabIndex = 2;
  111. //
  112. // cbNodeType
  113. //
  114. this.cbNodeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  115. this.cbNodeType.FormattingEnabled = true;
  116. this.cbNodeType.Location = new System.Drawing.Point(69, 7);
  117. this.cbNodeType.Name = "cbNodeType";
  118. this.cbNodeType.Size = new System.Drawing.Size(159, 20);
  119. this.cbNodeType.TabIndex = 3;
  120. //
  121. // label4
  122. //
  123. this.label4.AutoSize = true;
  124. this.label4.Location = new System.Drawing.Point(10, 10);
  125. this.label4.Name = "label4";
  126. this.label4.Size = new System.Drawing.Size(53, 12);
  127. this.label4.TabIndex = 1;
  128. this.label4.Text = "节点类型";
  129. //
  130. // btAutoCreateID
  131. //
  132. this.btAutoCreateID.Location = new System.Drawing.Point(331, 34);
  133. this.btAutoCreateID.Name = "btAutoCreateID";
  134. this.btAutoCreateID.Size = new System.Drawing.Size(75, 23);
  135. this.btAutoCreateID.TabIndex = 4;
  136. this.btAutoCreateID.Text = "自动生成";
  137. this.btAutoCreateID.UseVisualStyleBackColor = true;
  138. this.btAutoCreateID.Click += new System.EventHandler(this.btAutoCreateID_Click);
  139. //
  140. // AddAFlowNodeForm
  141. //
  142. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  143. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  144. this.ClientSize = new System.Drawing.Size(408, 178);
  145. this.Controls.Add(this.btAutoCreateID);
  146. this.Controls.Add(this.cbNodeType);
  147. this.Controls.Add(this.tbNodeNote);
  148. this.Controls.Add(this.label3);
  149. this.Controls.Add(this.tbNodeName);
  150. this.Controls.Add(this.label2);
  151. this.Controls.Add(this.tbNodeID);
  152. this.Controls.Add(this.label4);
  153. this.Controls.Add(this.label1);
  154. this.Controls.Add(this.btCancel);
  155. this.Controls.Add(this.btOK);
  156. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  157. this.MaximizeBox = false;
  158. this.MinimizeBox = false;
  159. this.Name = "AddAFlowNodeForm";
  160. this.ShowInTaskbar = false;
  161. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  162. this.Text = "新建节点";
  163. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AddAFlowNodeForm_FormClosing);
  164. this.Load += new System.EventHandler(this.AddAFlowNodeForm_Load);
  165. this.ResumeLayout(false);
  166. this.PerformLayout();
  167. }
  168. #endregion
  169. private System.Windows.Forms.Button btOK;
  170. private System.Windows.Forms.Button btCancel;
  171. private System.Windows.Forms.Label label1;
  172. private System.Windows.Forms.TextBox tbNodeID;
  173. private System.Windows.Forms.Label label2;
  174. private System.Windows.Forms.TextBox tbNodeName;
  175. private System.Windows.Forms.Label label3;
  176. private System.Windows.Forms.TextBox tbNodeNote;
  177. private System.Windows.Forms.ComboBox cbNodeType;
  178. private System.Windows.Forms.Label label4;
  179. private System.Windows.Forms.Button btAutoCreateID;
  180. }
  181. }