You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

AddJobForm.Designer.cs 18 kB

15 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class AddJobForm
  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.btnAdd = new System.Windows.Forms.Button();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.cboJobType = new System.Windows.Forms.ComboBox();
  31. this.cboTriggerType = new System.Windows.Forms.ComboBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.txtJobGroup = new System.Windows.Forms.TextBox();
  34. this.txtJobName = new System.Windows.Forms.TextBox();
  35. this.txtTriggerName = new System.Windows.Forms.TextBox();
  36. this.txtTriggerDescription = new System.Windows.Forms.TextBox();
  37. this.txtCronExpression = new System.Windows.Forms.TextBox();
  38. this.txtTriggerGroup = new System.Windows.Forms.TextBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.label4 = new System.Windows.Forms.Label();
  42. this.label5 = new System.Windows.Forms.Label();
  43. this.label6 = new System.Windows.Forms.Label();
  44. this.label7 = new System.Windows.Forms.Label();
  45. this.label8 = new System.Windows.Forms.Label();
  46. this.lblJobDescription = new System.Windows.Forms.Label();
  47. this.txtJobDescription = new System.Windows.Forms.TextBox();
  48. this.jobDataListView = new System.Windows.Forms.ListView();
  49. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  50. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  51. this.label10 = new System.Windows.Forms.Label();
  52. this.label11 = new System.Windows.Forms.Label();
  53. this.txtKey = new System.Windows.Forms.TextBox();
  54. this.label12 = new System.Windows.Forms.Label();
  55. this.txtValue = new System.Windows.Forms.TextBox();
  56. this.btnAddKeyValue = new System.Windows.Forms.Button();
  57. this.btnDelete = new System.Windows.Forms.Button();
  58. this.SuspendLayout();
  59. //
  60. // btnAdd
  61. //
  62. this.btnAdd.Location = new System.Drawing.Point(32, 273);
  63. this.btnAdd.Name = "btnAdd";
  64. this.btnAdd.Size = new System.Drawing.Size(75, 23);
  65. this.btnAdd.TabIndex = 0;
  66. this.btnAdd.Text = "Add";
  67. this.btnAdd.UseVisualStyleBackColor = true;
  68. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  69. //
  70. // btnCancel
  71. //
  72. this.btnCancel.Location = new System.Drawing.Point(140, 273);
  73. this.btnCancel.Name = "btnCancel";
  74. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  75. this.btnCancel.TabIndex = 1;
  76. this.btnCancel.Text = "Cancel";
  77. this.btnCancel.UseVisualStyleBackColor = true;
  78. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  79. //
  80. // cboJobType
  81. //
  82. this.cboJobType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  83. this.cboJobType.FormattingEnabled = true;
  84. this.cboJobType.Location = new System.Drawing.Point(131, 13);
  85. this.cboJobType.Name = "cboJobType";
  86. this.cboJobType.Size = new System.Drawing.Size(277, 21);
  87. this.cboJobType.TabIndex = 2;
  88. //
  89. // cboTriggerType
  90. //
  91. this.cboTriggerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  92. this.cboTriggerType.FormattingEnabled = true;
  93. this.cboTriggerType.Location = new System.Drawing.Point(131, 122);
  94. this.cboTriggerType.Name = "cboTriggerType";
  95. this.cboTriggerType.Size = new System.Drawing.Size(277, 21);
  96. this.cboTriggerType.TabIndex = 3;
  97. //
  98. // label1
  99. //
  100. this.label1.AutoSize = true;
  101. this.label1.Location = new System.Drawing.Point(29, 17);
  102. this.label1.Name = "label1";
  103. this.label1.Size = new System.Drawing.Size(54, 13);
  104. this.label1.TabIndex = 4;
  105. this.label1.Text = "Job Type:";
  106. //
  107. // txtJobGroup
  108. //
  109. this.txtJobGroup.Location = new System.Drawing.Point(131, 41);
  110. this.txtJobGroup.Name = "txtJobGroup";
  111. this.txtJobGroup.Size = new System.Drawing.Size(277, 20);
  112. this.txtJobGroup.TabIndex = 5;
  113. //
  114. // txtJobName
  115. //
  116. this.txtJobName.Location = new System.Drawing.Point(131, 68);
  117. this.txtJobName.Name = "txtJobName";
  118. this.txtJobName.Size = new System.Drawing.Size(277, 20);
  119. this.txtJobName.TabIndex = 6;
  120. //
  121. // txtTriggerName
  122. //
  123. this.txtTriggerName.Location = new System.Drawing.Point(131, 177);
  124. this.txtTriggerName.Name = "txtTriggerName";
  125. this.txtTriggerName.Size = new System.Drawing.Size(277, 20);
  126. this.txtTriggerName.TabIndex = 8;
  127. //
  128. // txtTriggerDescription
  129. //
  130. this.txtTriggerDescription.Location = new System.Drawing.Point(131, 204);
  131. this.txtTriggerDescription.Name = "txtTriggerDescription";
  132. this.txtTriggerDescription.Size = new System.Drawing.Size(277, 20);
  133. this.txtTriggerDescription.TabIndex = 7;
  134. //
  135. // txtCronExpression
  136. //
  137. this.txtCronExpression.Location = new System.Drawing.Point(131, 231);
  138. this.txtCronExpression.Name = "txtCronExpression";
  139. this.txtCronExpression.Size = new System.Drawing.Size(277, 20);
  140. this.txtCronExpression.TabIndex = 10;
  141. //
  142. // txtTriggerGroup
  143. //
  144. this.txtTriggerGroup.Location = new System.Drawing.Point(131, 150);
  145. this.txtTriggerGroup.Name = "txtTriggerGroup";
  146. this.txtTriggerGroup.Size = new System.Drawing.Size(277, 20);
  147. this.txtTriggerGroup.TabIndex = 9;
  148. //
  149. // label2
  150. //
  151. this.label2.AutoSize = true;
  152. this.label2.Location = new System.Drawing.Point(29, 44);
  153. this.label2.Name = "label2";
  154. this.label2.Size = new System.Drawing.Size(59, 13);
  155. this.label2.TabIndex = 11;
  156. this.label2.Text = "Job Group:";
  157. //
  158. // label3
  159. //
  160. this.label3.AutoSize = true;
  161. this.label3.Location = new System.Drawing.Point(29, 71);
  162. this.label3.Name = "label3";
  163. this.label3.Size = new System.Drawing.Size(58, 13);
  164. this.label3.TabIndex = 12;
  165. this.label3.Text = "Job Name:";
  166. //
  167. // label4
  168. //
  169. this.label4.AutoSize = true;
  170. this.label4.Location = new System.Drawing.Point(29, 125);
  171. this.label4.Name = "label4";
  172. this.label4.Size = new System.Drawing.Size(70, 13);
  173. this.label4.TabIndex = 13;
  174. this.label4.Text = "Trigger Type:";
  175. //
  176. // label5
  177. //
  178. this.label5.AutoSize = true;
  179. this.label5.Location = new System.Drawing.Point(29, 207);
  180. this.label5.Name = "label5";
  181. this.label5.Size = new System.Drawing.Size(99, 13);
  182. this.label5.TabIndex = 14;
  183. this.label5.Text = "Trigger Description:";
  184. //
  185. // label6
  186. //
  187. this.label6.AutoSize = true;
  188. this.label6.Location = new System.Drawing.Point(29, 180);
  189. this.label6.Name = "label6";
  190. this.label6.Size = new System.Drawing.Size(74, 13);
  191. this.label6.TabIndex = 15;
  192. this.label6.Text = "Trigger Name:";
  193. //
  194. // label7
  195. //
  196. this.label7.AutoSize = true;
  197. this.label7.Location = new System.Drawing.Point(29, 153);
  198. this.label7.Name = "label7";
  199. this.label7.Size = new System.Drawing.Size(75, 13);
  200. this.label7.TabIndex = 16;
  201. this.label7.Text = "Trigger Group:";
  202. //
  203. // label8
  204. //
  205. this.label8.AutoSize = true;
  206. this.label8.Location = new System.Drawing.Point(29, 234);
  207. this.label8.Name = "label8";
  208. this.label8.Size = new System.Drawing.Size(86, 13);
  209. this.label8.TabIndex = 17;
  210. this.label8.Text = "Cron Expression:";
  211. //
  212. // lblJobDescription
  213. //
  214. this.lblJobDescription.AutoSize = true;
  215. this.lblJobDescription.Location = new System.Drawing.Point(29, 98);
  216. this.lblJobDescription.Name = "lblJobDescription";
  217. this.lblJobDescription.Size = new System.Drawing.Size(83, 13);
  218. this.lblJobDescription.TabIndex = 19;
  219. this.lblJobDescription.Text = "Job Description:";
  220. //
  221. // txtJobDescription
  222. //
  223. this.txtJobDescription.Location = new System.Drawing.Point(131, 95);
  224. this.txtJobDescription.Name = "txtJobDescription";
  225. this.txtJobDescription.Size = new System.Drawing.Size(277, 20);
  226. this.txtJobDescription.TabIndex = 18;
  227. //
  228. // jobDataListView
  229. //
  230. this.jobDataListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  231. this.columnHeader1,
  232. this.columnHeader2});
  233. this.jobDataListView.FullRowSelect = true;
  234. this.jobDataListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
  235. this.jobDataListView.Location = new System.Drawing.Point(559, 43);
  236. this.jobDataListView.MultiSelect = false;
  237. this.jobDataListView.Name = "jobDataListView";
  238. this.jobDataListView.Size = new System.Drawing.Size(233, 99);
  239. this.jobDataListView.TabIndex = 20;
  240. this.jobDataListView.UseCompatibleStateImageBehavior = false;
  241. this.jobDataListView.View = System.Windows.Forms.View.Details;
  242. //
  243. // columnHeader1
  244. //
  245. this.columnHeader1.Text = "Key";
  246. this.columnHeader1.Width = 82;
  247. //
  248. // columnHeader2
  249. //
  250. this.columnHeader2.Text = "Value";
  251. this.columnHeader2.Width = 145;
  252. //
  253. // label10
  254. //
  255. this.label10.AutoSize = true;
  256. this.label10.Location = new System.Drawing.Point(556, 17);
  257. this.label10.Name = "label10";
  258. this.label10.Size = new System.Drawing.Size(53, 13);
  259. this.label10.TabIndex = 21;
  260. this.label10.Text = "Job Data:";
  261. //
  262. // label11
  263. //
  264. this.label11.AutoSize = true;
  265. this.label11.Location = new System.Drawing.Point(560, 162);
  266. this.label11.Name = "label11";
  267. this.label11.Size = new System.Drawing.Size(28, 13);
  268. this.label11.TabIndex = 23;
  269. this.label11.Text = "Key:";
  270. //
  271. // txtKey
  272. //
  273. this.txtKey.Location = new System.Drawing.Point(604, 159);
  274. this.txtKey.Name = "txtKey";
  275. this.txtKey.Size = new System.Drawing.Size(188, 20);
  276. this.txtKey.TabIndex = 22;
  277. //
  278. // label12
  279. //
  280. this.label12.AutoSize = true;
  281. this.label12.Location = new System.Drawing.Point(560, 188);
  282. this.label12.Name = "label12";
  283. this.label12.Size = new System.Drawing.Size(37, 13);
  284. this.label12.TabIndex = 25;
  285. this.label12.Text = "Value:";
  286. //
  287. // txtValue
  288. //
  289. this.txtValue.Location = new System.Drawing.Point(604, 185);
  290. this.txtValue.Name = "txtValue";
  291. this.txtValue.Size = new System.Drawing.Size(188, 20);
  292. this.txtValue.TabIndex = 24;
  293. //
  294. // btnAddKeyValue
  295. //
  296. this.btnAddKeyValue.Location = new System.Drawing.Point(559, 211);
  297. this.btnAddKeyValue.Name = "btnAddKeyValue";
  298. this.btnAddKeyValue.Size = new System.Drawing.Size(50, 23);
  299. this.btnAddKeyValue.TabIndex = 26;
  300. this.btnAddKeyValue.Text = "Add";
  301. this.btnAddKeyValue.UseVisualStyleBackColor = true;
  302. this.btnAddKeyValue.Click += new System.EventHandler(this.btnAddKeyValue_Click);
  303. //
  304. // btnDelete
  305. //
  306. this.btnDelete.Location = new System.Drawing.Point(798, 41);
  307. this.btnDelete.Name = "btnDelete";
  308. this.btnDelete.Size = new System.Drawing.Size(52, 23);
  309. this.btnDelete.TabIndex = 27;
  310. this.btnDelete.Text = "Delete";
  311. this.btnDelete.UseVisualStyleBackColor = true;
  312. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  313. //
  314. // AddJobForm
  315. //
  316. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  317. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  318. this.ClientSize = new System.Drawing.Size(1044, 338);
  319. this.Controls.Add(this.btnDelete);
  320. this.Controls.Add(this.btnAddKeyValue);
  321. this.Controls.Add(this.label12);
  322. this.Controls.Add(this.txtValue);
  323. this.Controls.Add(this.label11);
  324. this.Controls.Add(this.txtKey);
  325. this.Controls.Add(this.label10);
  326. this.Controls.Add(this.jobDataListView);
  327. this.Controls.Add(this.lblJobDescription);
  328. this.Controls.Add(this.txtJobDescription);
  329. this.Controls.Add(this.label8);
  330. this.Controls.Add(this.label7);
  331. this.Controls.Add(this.label6);
  332. this.Controls.Add(this.label5);
  333. this.Controls.Add(this.label4);
  334. this.Controls.Add(this.label3);
  335. this.Controls.Add(this.label2);
  336. this.Controls.Add(this.txtCronExpression);
  337. this.Controls.Add(this.txtTriggerGroup);
  338. this.Controls.Add(this.txtTriggerName);
  339. this.Controls.Add(this.txtTriggerDescription);
  340. this.Controls.Add(this.txtJobName);
  341. this.Controls.Add(this.txtJobGroup);
  342. this.Controls.Add(this.label1);
  343. this.Controls.Add(this.cboTriggerType);
  344. this.Controls.Add(this.cboJobType);
  345. this.Controls.Add(this.btnCancel);
  346. this.Controls.Add(this.btnAdd);
  347. this.Name = "AddJobForm";
  348. this.Text = "AddJobForm";
  349. this.ResumeLayout(false);
  350. this.PerformLayout();
  351. }
  352. #endregion
  353. private System.Windows.Forms.Button btnAdd;
  354. private System.Windows.Forms.Button btnCancel;
  355. private System.Windows.Forms.ComboBox cboJobType;
  356. private System.Windows.Forms.ComboBox cboTriggerType;
  357. private System.Windows.Forms.Label label1;
  358. private System.Windows.Forms.TextBox txtJobGroup;
  359. private System.Windows.Forms.TextBox txtJobName;
  360. private System.Windows.Forms.TextBox txtTriggerName;
  361. private System.Windows.Forms.TextBox txtTriggerDescription;
  362. private System.Windows.Forms.TextBox txtCronExpression;
  363. private System.Windows.Forms.TextBox txtTriggerGroup;
  364. private System.Windows.Forms.Label label2;
  365. private System.Windows.Forms.Label label3;
  366. private System.Windows.Forms.Label label4;
  367. private System.Windows.Forms.Label label5;
  368. private System.Windows.Forms.Label label6;
  369. private System.Windows.Forms.Label label7;
  370. private System.Windows.Forms.Label label8;
  371. private System.Windows.Forms.Label lblJobDescription;
  372. private System.Windows.Forms.TextBox txtJobDescription;
  373. private System.Windows.Forms.ListView jobDataListView;
  374. private System.Windows.Forms.Label label10;
  375. private System.Windows.Forms.Label label11;
  376. private System.Windows.Forms.TextBox txtKey;
  377. private System.Windows.Forms.Label label12;
  378. private System.Windows.Forms.TextBox txtValue;
  379. private System.Windows.Forms.Button btnAddKeyValue;
  380. private System.Windows.Forms.Button btnDelete;
  381. private System.Windows.Forms.ColumnHeader columnHeader1;
  382. private System.Windows.Forms.ColumnHeader columnHeader2;
  383. }
  384. }