华谊自己改写的工作流

FlowNodeConfigForm.Designer.cs 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. namespace FlowEditor
  2. {
  3. partial class FlowNodeConfigForm
  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.components = new System.ComponentModel.Container();
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.tbNodeType = new System.Windows.Forms.TextBox();
  31. this.btAutoCreateID = new System.Windows.Forms.Button();
  32. this.tbNodeNote = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.tbNodeName = new System.Windows.Forms.TextBox();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.tbNodeID = new System.Windows.Forms.TextBox();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.groupBox2 = new System.Windows.Forms.GroupBox();
  40. this.dgvOutputList = new System.Windows.Forms.DataGridView();
  41. this.iDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.typeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.objNodeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.objNodePortDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.outputPortBindingSource = new System.Windows.Forms.BindingSource(this.components);
  47. this.btModifyOutputPort = new System.Windows.Forms.Button();
  48. this.btAddOutputPort = new System.Windows.Forms.Button();
  49. this.btDelOutputPort = new System.Windows.Forms.Button();
  50. this.btOK = new System.Windows.Forms.Button();
  51. this.btCancel = new System.Windows.Forms.Button();
  52. this.groupBox3 = new System.Windows.Forms.GroupBox();
  53. this.busineNodeConfigurator = new FlowEditor.BusinessConfigurator.DefBusinessConfigurator.DefBusineNodeConfigurator();
  54. this.groupBox1.SuspendLayout();
  55. this.groupBox2.SuspendLayout();
  56. ((System.ComponentModel.ISupportInitialize)(this.dgvOutputList)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.outputPortBindingSource)).BeginInit();
  58. this.groupBox3.SuspendLayout();
  59. this.SuspendLayout();
  60. //
  61. // groupBox1
  62. //
  63. this.groupBox1.Controls.Add(this.tbNodeType);
  64. this.groupBox1.Controls.Add(this.btAutoCreateID);
  65. this.groupBox1.Controls.Add(this.tbNodeNote);
  66. this.groupBox1.Controls.Add(this.label3);
  67. this.groupBox1.Controls.Add(this.tbNodeName);
  68. this.groupBox1.Controls.Add(this.label2);
  69. this.groupBox1.Controls.Add(this.tbNodeID);
  70. this.groupBox1.Controls.Add(this.label4);
  71. this.groupBox1.Controls.Add(this.label1);
  72. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  73. this.groupBox1.Name = "groupBox1";
  74. this.groupBox1.Size = new System.Drawing.Size(423, 203);
  75. this.groupBox1.TabIndex = 0;
  76. this.groupBox1.TabStop = false;
  77. this.groupBox1.Text = "基本信息";
  78. //
  79. // tbNodeType
  80. //
  81. this.tbNodeType.Location = new System.Drawing.Point(78, 15);
  82. this.tbNodeType.Name = "tbNodeType";
  83. this.tbNodeType.Size = new System.Drawing.Size(159, 21);
  84. this.tbNodeType.TabIndex = 23;
  85. //
  86. // btAutoCreateID
  87. //
  88. this.btAutoCreateID.Location = new System.Drawing.Point(340, 41);
  89. this.btAutoCreateID.Name = "btAutoCreateID";
  90. this.btAutoCreateID.Size = new System.Drawing.Size(75, 23);
  91. this.btAutoCreateID.TabIndex = 22;
  92. this.btAutoCreateID.Text = "自动生成";
  93. this.btAutoCreateID.UseVisualStyleBackColor = true;
  94. //
  95. // tbNodeNote
  96. //
  97. this.tbNodeNote.Location = new System.Drawing.Point(78, 70);
  98. this.tbNodeNote.Multiline = true;
  99. this.tbNodeNote.Name = "tbNodeNote";
  100. this.tbNodeNote.Size = new System.Drawing.Size(337, 127);
  101. this.tbNodeNote.TabIndex = 19;
  102. //
  103. // label3
  104. //
  105. this.label3.AutoSize = true;
  106. this.label3.Location = new System.Drawing.Point(19, 70);
  107. this.label3.Name = "label3";
  108. this.label3.Size = new System.Drawing.Size(53, 12);
  109. this.label3.TabIndex = 15;
  110. this.label3.Text = "节点备注";
  111. //
  112. // tbNodeName
  113. //
  114. this.tbNodeName.Location = new System.Drawing.Point(305, 14);
  115. this.tbNodeName.Name = "tbNodeName";
  116. this.tbNodeName.Size = new System.Drawing.Size(110, 21);
  117. this.tbNodeName.TabIndex = 20;
  118. //
  119. // label2
  120. //
  121. this.label2.AutoSize = true;
  122. this.label2.Location = new System.Drawing.Point(244, 18);
  123. this.label2.Name = "label2";
  124. this.label2.Size = new System.Drawing.Size(53, 12);
  125. this.label2.TabIndex = 14;
  126. this.label2.Text = "节点名称";
  127. //
  128. // tbNodeID
  129. //
  130. this.tbNodeID.Location = new System.Drawing.Point(78, 42);
  131. this.tbNodeID.Name = "tbNodeID";
  132. this.tbNodeID.Size = new System.Drawing.Size(256, 21);
  133. this.tbNodeID.TabIndex = 18;
  134. //
  135. // label4
  136. //
  137. this.label4.AutoSize = true;
  138. this.label4.Location = new System.Drawing.Point(19, 17);
  139. this.label4.Name = "label4";
  140. this.label4.Size = new System.Drawing.Size(53, 12);
  141. this.label4.TabIndex = 17;
  142. this.label4.Text = "节点类型";
  143. //
  144. // label1
  145. //
  146. this.label1.AutoSize = true;
  147. this.label1.Location = new System.Drawing.Point(19, 45);
  148. this.label1.Name = "label1";
  149. this.label1.Size = new System.Drawing.Size(41, 12);
  150. this.label1.TabIndex = 16;
  151. this.label1.Text = "节点ID";
  152. //
  153. // groupBox2
  154. //
  155. this.groupBox2.Controls.Add(this.dgvOutputList);
  156. this.groupBox2.Controls.Add(this.btModifyOutputPort);
  157. this.groupBox2.Controls.Add(this.btAddOutputPort);
  158. this.groupBox2.Controls.Add(this.btDelOutputPort);
  159. this.groupBox2.Location = new System.Drawing.Point(441, 12);
  160. this.groupBox2.Name = "groupBox2";
  161. this.groupBox2.Size = new System.Drawing.Size(355, 203);
  162. this.groupBox2.TabIndex = 1;
  163. this.groupBox2.TabStop = false;
  164. this.groupBox2.Text = "下级节点";
  165. //
  166. // dgvOutputList
  167. //
  168. this.dgvOutputList.AllowUserToAddRows = false;
  169. this.dgvOutputList.AllowUserToDeleteRows = false;
  170. this.dgvOutputList.AllowUserToResizeRows = false;
  171. this.dgvOutputList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  172. | System.Windows.Forms.AnchorStyles.Right)));
  173. this.dgvOutputList.AutoGenerateColumns = false;
  174. this.dgvOutputList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  175. this.dgvOutputList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  176. this.iDDataGridViewTextBoxColumn,
  177. this.typeDataGridViewTextBoxColumn,
  178. this.nameDataGridViewTextBoxColumn,
  179. this.objNodeDataGridViewTextBoxColumn,
  180. this.objNodePortDataGridViewTextBoxColumn});
  181. this.dgvOutputList.DataSource = this.outputPortBindingSource;
  182. this.dgvOutputList.Location = new System.Drawing.Point(6, 15);
  183. this.dgvOutputList.MultiSelect = false;
  184. this.dgvOutputList.Name = "dgvOutputList";
  185. this.dgvOutputList.ReadOnly = true;
  186. this.dgvOutputList.RowTemplate.Height = 23;
  187. this.dgvOutputList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  188. this.dgvOutputList.Size = new System.Drawing.Size(342, 151);
  189. this.dgvOutputList.TabIndex = 2;
  190. //
  191. // iDDataGridViewTextBoxColumn
  192. //
  193. this.iDDataGridViewTextBoxColumn.DataPropertyName = "ID";
  194. this.iDDataGridViewTextBoxColumn.HeaderText = "ID";
  195. this.iDDataGridViewTextBoxColumn.Name = "iDDataGridViewTextBoxColumn";
  196. this.iDDataGridViewTextBoxColumn.ReadOnly = true;
  197. //
  198. // typeDataGridViewTextBoxColumn
  199. //
  200. this.typeDataGridViewTextBoxColumn.DataPropertyName = "Type";
  201. this.typeDataGridViewTextBoxColumn.HeaderText = "Type";
  202. this.typeDataGridViewTextBoxColumn.Name = "typeDataGridViewTextBoxColumn";
  203. this.typeDataGridViewTextBoxColumn.ReadOnly = true;
  204. this.typeDataGridViewTextBoxColumn.Visible = false;
  205. //
  206. // nameDataGridViewTextBoxColumn
  207. //
  208. this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name";
  209. this.nameDataGridViewTextBoxColumn.HeaderText = "名称";
  210. this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
  211. this.nameDataGridViewTextBoxColumn.ReadOnly = true;
  212. //
  213. // objNodeDataGridViewTextBoxColumn
  214. //
  215. this.objNodeDataGridViewTextBoxColumn.DataPropertyName = "ObjNode";
  216. this.objNodeDataGridViewTextBoxColumn.HeaderText = "下级节点";
  217. this.objNodeDataGridViewTextBoxColumn.Name = "objNodeDataGridViewTextBoxColumn";
  218. this.objNodeDataGridViewTextBoxColumn.ReadOnly = true;
  219. //
  220. // objNodePortDataGridViewTextBoxColumn
  221. //
  222. this.objNodePortDataGridViewTextBoxColumn.DataPropertyName = "ObjNodePort";
  223. this.objNodePortDataGridViewTextBoxColumn.HeaderText = "ObjNodePort";
  224. this.objNodePortDataGridViewTextBoxColumn.Name = "objNodePortDataGridViewTextBoxColumn";
  225. this.objNodePortDataGridViewTextBoxColumn.ReadOnly = true;
  226. this.objNodePortDataGridViewTextBoxColumn.Visible = false;
  227. //
  228. // outputPortBindingSource
  229. //
  230. this.outputPortBindingSource.AllowNew = false;
  231. this.outputPortBindingSource.DataSource = typeof(FlowEditor.WorkFlow.OutputPort);
  232. //
  233. // btModifyOutputPort
  234. //
  235. this.btModifyOutputPort.Location = new System.Drawing.Point(196, 174);
  236. this.btModifyOutputPort.Name = "btModifyOutputPort";
  237. this.btModifyOutputPort.Size = new System.Drawing.Size(75, 23);
  238. this.btModifyOutputPort.TabIndex = 4;
  239. this.btModifyOutputPort.Text = "修改";
  240. this.btModifyOutputPort.UseVisualStyleBackColor = true;
  241. this.btModifyOutputPort.Click += new System.EventHandler(this.btModifyOutputPort_Click);
  242. //
  243. // btAddOutputPort
  244. //
  245. this.btAddOutputPort.Location = new System.Drawing.Point(115, 174);
  246. this.btAddOutputPort.Name = "btAddOutputPort";
  247. this.btAddOutputPort.Size = new System.Drawing.Size(75, 23);
  248. this.btAddOutputPort.TabIndex = 4;
  249. this.btAddOutputPort.Text = "添加";
  250. this.btAddOutputPort.UseVisualStyleBackColor = true;
  251. this.btAddOutputPort.Click += new System.EventHandler(this.btAddOutputPort_Click);
  252. //
  253. // btDelOutputPort
  254. //
  255. this.btDelOutputPort.Location = new System.Drawing.Point(273, 174);
  256. this.btDelOutputPort.Name = "btDelOutputPort";
  257. this.btDelOutputPort.Size = new System.Drawing.Size(75, 23);
  258. this.btDelOutputPort.TabIndex = 4;
  259. this.btDelOutputPort.Text = "删除";
  260. this.btDelOutputPort.UseVisualStyleBackColor = true;
  261. this.btDelOutputPort.Click += new System.EventHandler(this.btDelOutputPort_Click);
  262. //
  263. // btOK
  264. //
  265. this.btOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  266. this.btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  267. this.btOK.Location = new System.Drawing.Point(639, 604);
  268. this.btOK.Name = "btOK";
  269. this.btOK.Size = new System.Drawing.Size(75, 23);
  270. this.btOK.TabIndex = 2;
  271. this.btOK.Text = "确定";
  272. this.btOK.UseVisualStyleBackColor = true;
  273. this.btOK.Click += new System.EventHandler(this.btOK_Click);
  274. //
  275. // btCancel
  276. //
  277. this.btCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  278. this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  279. this.btCancel.Location = new System.Drawing.Point(723, 604);
  280. this.btCancel.Name = "btCancel";
  281. this.btCancel.Size = new System.Drawing.Size(75, 23);
  282. this.btCancel.TabIndex = 2;
  283. this.btCancel.Text = "取消";
  284. this.btCancel.UseVisualStyleBackColor = true;
  285. //
  286. // groupBox3
  287. //
  288. this.groupBox3.Controls.Add(this.busineNodeConfigurator);
  289. this.groupBox3.Location = new System.Drawing.Point(12, 221);
  290. this.groupBox3.Name = "groupBox3";
  291. this.groupBox3.Size = new System.Drawing.Size(784, 377);
  292. this.groupBox3.TabIndex = 3;
  293. this.groupBox3.TabStop = false;
  294. this.groupBox3.Text = "业务节点信息";
  295. //
  296. // busineNodeConfigurator
  297. //
  298. this.busineNodeConfigurator.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  299. | System.Windows.Forms.AnchorStyles.Right)));
  300. this.busineNodeConfigurator.AssignParticipatorList = null;
  301. this.busineNodeConfigurator.EnableAssignOtherNodeParticipator = false;
  302. this.busineNodeConfigurator.EnableRepeal = false;
  303. this.busineNodeConfigurator.EnableRepealLock = false;
  304. this.busineNodeConfigurator.Flow = null;
  305. this.busineNodeConfigurator.FormInfo = "";
  306. this.busineNodeConfigurator.Location = new System.Drawing.Point(6, 17);
  307. this.busineNodeConfigurator.Name = "busineNodeConfigurator";
  308. this.busineNodeConfigurator.ObjNode = null;
  309. this.busineNodeConfigurator.ParticipatorInfo = "";
  310. this.busineNodeConfigurator.RollbackList = null;
  311. this.busineNodeConfigurator.Size = new System.Drawing.Size(771, 343);
  312. this.busineNodeConfigurator.TabIndex = 0;
  313. this.busineNodeConfigurator.UserInfo = "";
  314. this.busineNodeConfigurator.Load += new System.EventHandler(this.busineNodeConfigurator_Load_1);
  315. //
  316. // FlowNodeConfigForm
  317. //
  318. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  319. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  320. this.ClientSize = new System.Drawing.Size(805, 633);
  321. this.Controls.Add(this.groupBox3);
  322. this.Controls.Add(this.btCancel);
  323. this.Controls.Add(this.btOK);
  324. this.Controls.Add(this.groupBox2);
  325. this.Controls.Add(this.groupBox1);
  326. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  327. this.Name = "FlowNodeConfigForm";
  328. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  329. this.Text = "编辑节点信息";
  330. this.Load += new System.EventHandler(this.FlowInfoEditForm_Load);
  331. this.groupBox1.ResumeLayout(false);
  332. this.groupBox1.PerformLayout();
  333. this.groupBox2.ResumeLayout(false);
  334. ((System.ComponentModel.ISupportInitialize)(this.dgvOutputList)).EndInit();
  335. ((System.ComponentModel.ISupportInitialize)(this.outputPortBindingSource)).EndInit();
  336. this.groupBox3.ResumeLayout(false);
  337. this.ResumeLayout(false);
  338. }
  339. #endregion
  340. private System.Windows.Forms.GroupBox groupBox1;
  341. private System.Windows.Forms.Button btAutoCreateID;
  342. private System.Windows.Forms.TextBox tbNodeNote;
  343. private System.Windows.Forms.Label label3;
  344. private System.Windows.Forms.TextBox tbNodeName;
  345. private System.Windows.Forms.Label label2;
  346. private System.Windows.Forms.TextBox tbNodeID;
  347. private System.Windows.Forms.Label label4;
  348. private System.Windows.Forms.Label label1;
  349. private System.Windows.Forms.GroupBox groupBox2;
  350. private System.Windows.Forms.TextBox tbNodeType;
  351. private System.Windows.Forms.DataGridView dgvOutputList;
  352. private System.Windows.Forms.DataGridViewTextBoxColumn iDDataGridViewTextBoxColumn;
  353. private System.Windows.Forms.DataGridViewTextBoxColumn typeDataGridViewTextBoxColumn;
  354. private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn;
  355. private System.Windows.Forms.DataGridViewTextBoxColumn objNodeDataGridViewTextBoxColumn;
  356. private System.Windows.Forms.DataGridViewTextBoxColumn objNodePortDataGridViewTextBoxColumn;
  357. private System.Windows.Forms.BindingSource outputPortBindingSource;
  358. private System.Windows.Forms.Button btOK;
  359. private System.Windows.Forms.Button btCancel;
  360. private System.Windows.Forms.Button btDelOutputPort;
  361. private System.Windows.Forms.Button btModifyOutputPort;
  362. private System.Windows.Forms.Button btAddOutputPort;
  363. private System.Windows.Forms.GroupBox groupBox3;
  364. private BusinessConfigurator.DefBusinessConfigurator.DefBusineNodeConfigurator busineNodeConfigurator;
  365. }
  366. }