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.

MainForm.Designer.cs 21 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class MainForm
  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.mainMenuStrip = new System.Windows.Forms.MenuStrip();
  30. this.schedulerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.jobsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.addJobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.listenersStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.globalListenersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.addGlobalJobListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.addTriggerListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.addJobListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  40. this.serverConnectStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
  41. this.StripStatusLabel_Job_Groups = new System.Windows.Forms.ToolStripStatusLabel();
  42. this.StripStatusLabel_Jobs_Refresh_date = new System.Windows.Forms.ToolStripStatusLabel();
  43. this.jobGroupsTreeView = new System.Windows.Forms.TreeView();
  44. this.label1 = new System.Windows.Forms.Label();
  45. this.label2 = new System.Windows.Forms.Label();
  46. this.btnRefreshRunningJobs = new System.Windows.Forms.Button();
  47. this.btnRefreshJobGroups = new System.Windows.Forms.Button();
  48. this.btnDeleteJob = new System.Windows.Forms.Button();
  49. this.btnRunJobNow = new System.Windows.Forms.Button();
  50. this.btnPause = new System.Windows.Forms.Button();
  51. this.pnlDetails = new System.Windows.Forms.Panel();
  52. this.label3 = new System.Windows.Forms.Label();
  53. this.btnEdit = new System.Windows.Forms.Button();
  54. this.ctxScheduler = new System.Windows.Forms.ContextMenuStrip(this.components);
  55. this.backupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  56. this.timer_Refresh_Running_Jobs = new System.Windows.Forms.Timer(this.components);
  57. this.listView_RunningJobs = new System.Windows.Forms.ListView();
  58. this.JobName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  59. this.JobDuration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  60. this.jobAssembliesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  61. this.addAssemblyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  62. this.deleteAssemblyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  63. this.mainMenuStrip.SuspendLayout();
  64. this.statusStrip1.SuspendLayout();
  65. this.ctxScheduler.SuspendLayout();
  66. this.SuspendLayout();
  67. //
  68. // mainMenuStrip
  69. //
  70. this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  71. this.schedulerToolStripMenuItem,
  72. this.jobsToolStripMenuItem,
  73. this.listenersStripMenuItem,
  74. this.jobAssembliesToolStripMenuItem});
  75. this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
  76. this.mainMenuStrip.Name = "mainMenuStrip";
  77. this.mainMenuStrip.Size = new System.Drawing.Size(913, 24);
  78. this.mainMenuStrip.TabIndex = 0;
  79. this.mainMenuStrip.Text = "menuStrip1";
  80. //
  81. // schedulerToolStripMenuItem
  82. //
  83. this.schedulerToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  84. this.connectToolStripMenuItem});
  85. this.schedulerToolStripMenuItem.Name = "schedulerToolStripMenuItem";
  86. this.schedulerToolStripMenuItem.Size = new System.Drawing.Size(71, 20);
  87. this.schedulerToolStripMenuItem.Text = "Scheduler";
  88. //
  89. // connectToolStripMenuItem
  90. //
  91. this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
  92. this.connectToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  93. this.connectToolStripMenuItem.Text = "Connect";
  94. this.connectToolStripMenuItem.Click += new System.EventHandler(this.connectToolStripMenuItem_Click);
  95. //
  96. // jobsToolStripMenuItem
  97. //
  98. this.jobsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  99. this.addJobToolStripMenuItem});
  100. this.jobsToolStripMenuItem.Enabled = false;
  101. this.jobsToolStripMenuItem.Name = "jobsToolStripMenuItem";
  102. this.jobsToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
  103. this.jobsToolStripMenuItem.Text = "Jobs";
  104. //
  105. // addJobToolStripMenuItem
  106. //
  107. this.addJobToolStripMenuItem.Name = "addJobToolStripMenuItem";
  108. this.addJobToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
  109. this.addJobToolStripMenuItem.Text = "Add";
  110. this.addJobToolStripMenuItem.Click += new System.EventHandler(this.addJobToolStripMenuItem_Click);
  111. //
  112. // statusStrip1
  113. //
  114. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  115. this.serverConnectStatusLabel,
  116. this.StripStatusLabel_Job_Groups,
  117. this.StripStatusLabel_Jobs_Refresh_date});
  118. this.statusStrip1.Location = new System.Drawing.Point(0, 639);
  119. this.statusStrip1.Name = "statusStrip1";
  120. this.statusStrip1.Size = new System.Drawing.Size(913, 22);
  121. this.statusStrip1.TabIndex = 1;
  122. this.statusStrip1.Text = "statusStrip1";
  123. //
  124. // serverConnectStatusLabel
  125. //
  126. this.serverConnectStatusLabel.Name = "serverConnectStatusLabel";
  127. this.serverConnectStatusLabel.Size = new System.Drawing.Size(86, 17);
  128. this.serverConnectStatusLabel.Text = "Not connected";
  129. //
  130. // StripStatusLabel_Job_Groups
  131. //
  132. this.StripStatusLabel_Job_Groups.BackColor = System.Drawing.Color.LightCyan;
  133. this.StripStatusLabel_Job_Groups.Name = "StripStatusLabel_Job_Groups";
  134. this.StripStatusLabel_Job_Groups.Size = new System.Drawing.Size(157, 17);
  135. this.StripStatusLabel_Job_Groups.Text = "StripStatusLabel_Job_Groups";
  136. this.StripStatusLabel_Job_Groups.ToolTipText = "Last Refresh of Job Groups";
  137. //
  138. // StripStatusLabel_Jobs_Refresh_date
  139. //
  140. this.StripStatusLabel_Jobs_Refresh_date.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  141. this.StripStatusLabel_Jobs_Refresh_date.Name = "StripStatusLabel_Jobs_Refresh_date";
  142. this.StripStatusLabel_Jobs_Refresh_date.Size = new System.Drawing.Size(191, 17);
  143. this.StripStatusLabel_Jobs_Refresh_date.Text = "StripStatusLabel_Jobs_Refresh_date";
  144. this.StripStatusLabel_Jobs_Refresh_date.ToolTipText = "Last Refresh Date of Running Jobs";
  145. //
  146. // jobGroupsTreeView
  147. //
  148. this.jobGroupsTreeView.HideSelection = false;
  149. this.jobGroupsTreeView.Location = new System.Drawing.Point(8, 48);
  150. this.jobGroupsTreeView.Name = "jobGroupsTreeView";
  151. this.jobGroupsTreeView.Size = new System.Drawing.Size(351, 252);
  152. this.jobGroupsTreeView.TabIndex = 2;
  153. //
  154. // label1
  155. //
  156. this.label1.AutoSize = true;
  157. this.label1.Location = new System.Drawing.Point(8, 32);
  158. this.label1.Name = "label1";
  159. this.label1.Size = new System.Drawing.Size(94, 13);
  160. this.label1.TabIndex = 4;
  161. this.label1.Text = "Scheduler Objects";
  162. //
  163. // label2
  164. //
  165. this.label2.AutoSize = true;
  166. this.label2.Location = new System.Drawing.Point(9, 319);
  167. this.label2.Name = "label2";
  168. this.label2.Size = new System.Drawing.Size(72, 13);
  169. this.label2.TabIndex = 5;
  170. this.label2.Text = "Running Jobs";
  171. //
  172. // btnRefreshRunningJobs
  173. //
  174. this.btnRefreshRunningJobs.Location = new System.Drawing.Point(371, 609);
  175. this.btnRefreshRunningJobs.Name = "btnRefreshRunningJobs";
  176. this.btnRefreshRunningJobs.Size = new System.Drawing.Size(75, 23);
  177. this.btnRefreshRunningJobs.TabIndex = 6;
  178. this.btnRefreshRunningJobs.Text = "Refresh";
  179. this.btnRefreshRunningJobs.UseVisualStyleBackColor = true;
  180. this.btnRefreshRunningJobs.Click += new System.EventHandler(this.btnRefreshRunningJobs_Click);
  181. //
  182. // btnRefreshJobGroups
  183. //
  184. this.btnRefreshJobGroups.Location = new System.Drawing.Point(284, 306);
  185. this.btnRefreshJobGroups.Name = "btnRefreshJobGroups";
  186. this.btnRefreshJobGroups.Size = new System.Drawing.Size(75, 23);
  187. this.btnRefreshJobGroups.TabIndex = 7;
  188. this.btnRefreshJobGroups.Text = "Refresh";
  189. this.btnRefreshJobGroups.UseVisualStyleBackColor = true;
  190. this.btnRefreshJobGroups.Click += new System.EventHandler(this.btnRefreshJobGroups_Click);
  191. //
  192. // btnDeleteJob
  193. //
  194. this.btnDeleteJob.Enabled = false;
  195. this.btnDeleteJob.Location = new System.Drawing.Point(533, 306);
  196. this.btnDeleteJob.Name = "btnDeleteJob";
  197. this.btnDeleteJob.Size = new System.Drawing.Size(65, 23);
  198. this.btnDeleteJob.TabIndex = 8;
  199. this.btnDeleteJob.Text = "Delete";
  200. this.btnDeleteJob.UseVisualStyleBackColor = true;
  201. this.btnDeleteJob.Click += new System.EventHandler(this.btnDeleteJob_Click);
  202. //
  203. // btnRunJobNow
  204. //
  205. this.btnRunJobNow.Enabled = false;
  206. this.btnRunJobNow.Location = new System.Drawing.Point(391, 306);
  207. this.btnRunJobNow.Name = "btnRunJobNow";
  208. this.btnRunJobNow.Size = new System.Drawing.Size(65, 23);
  209. this.btnRunJobNow.TabIndex = 9;
  210. this.btnRunJobNow.Text = "Run";
  211. this.btnRunJobNow.UseVisualStyleBackColor = true;
  212. this.btnRunJobNow.Click += new System.EventHandler(this.btnRunJobNow_Click);
  213. //
  214. // btnPause
  215. //
  216. this.btnPause.Enabled = false;
  217. this.btnPause.Location = new System.Drawing.Point(462, 306);
  218. this.btnPause.Name = "btnPause";
  219. this.btnPause.Size = new System.Drawing.Size(65, 23);
  220. this.btnPause.TabIndex = 10;
  221. this.btnPause.Text = "Pause";
  222. this.btnPause.UseVisualStyleBackColor = true;
  223. this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
  224. //
  225. // pnlDetails
  226. //
  227. this.pnlDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  228. this.pnlDetails.Location = new System.Drawing.Point(391, 45);
  229. this.pnlDetails.Name = "pnlDetails";
  230. this.pnlDetails.Size = new System.Drawing.Size(342, 252);
  231. this.pnlDetails.TabIndex = 11;
  232. //
  233. // label3
  234. //
  235. this.label3.AutoSize = true;
  236. this.label3.Location = new System.Drawing.Point(388, 29);
  237. this.label3.Name = "label3";
  238. this.label3.Size = new System.Drawing.Size(39, 13);
  239. this.label3.TabIndex = 12;
  240. this.label3.Text = "Details";
  241. //
  242. // btnEdit
  243. //
  244. this.btnEdit.Enabled = false;
  245. this.btnEdit.Location = new System.Drawing.Point(604, 306);
  246. this.btnEdit.Name = "btnEdit";
  247. this.btnEdit.Size = new System.Drawing.Size(65, 23);
  248. this.btnEdit.TabIndex = 13;
  249. this.btnEdit.Text = "Edit";
  250. this.btnEdit.UseVisualStyleBackColor = true;
  251. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  252. //
  253. // ctxScheduler
  254. //
  255. this.ctxScheduler.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  256. this.backupToolStripMenuItem});
  257. this.ctxScheduler.Name = "ctxScheduler";
  258. this.ctxScheduler.Size = new System.Drawing.Size(109, 26);
  259. //
  260. // backupToolStripMenuItem
  261. //
  262. this.backupToolStripMenuItem.Name = "backupToolStripMenuItem";
  263. this.backupToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
  264. this.backupToolStripMenuItem.Text = "Backup";
  265. this.backupToolStripMenuItem.Click += new System.EventHandler(this.backupToolStripMenuItem_Click);
  266. //
  267. // timer_Refresh_Running_Jobs
  268. //
  269. this.timer_Refresh_Running_Jobs.Interval = 30000;
  270. this.timer_Refresh_Running_Jobs.Tick += new System.EventHandler(this.timer_Refresh_Running_Jobs_Tick);
  271. //
  272. // listView_RunningJobs
  273. //
  274. this.listView_RunningJobs.AllowColumnReorder = true;
  275. this.listView_RunningJobs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  276. this.JobName,
  277. this.JobDuration});
  278. this.listView_RunningJobs.Location = new System.Drawing.Point(8, 335);
  279. this.listView_RunningJobs.Name = "listView_RunningJobs";
  280. this.listView_RunningJobs.Size = new System.Drawing.Size(725, 268);
  281. this.listView_RunningJobs.Sorting = System.Windows.Forms.SortOrder.Ascending;
  282. this.listView_RunningJobs.TabIndex = 14;
  283. this.listView_RunningJobs.UseCompatibleStateImageBehavior = false;
  284. this.listView_RunningJobs.View = System.Windows.Forms.View.Details;
  285. //
  286. // JobName
  287. //
  288. this.JobName.Text = "Job Name";
  289. //
  290. // JobDuration
  291. //
  292. this.JobDuration.Text = "Duration";
  293. //
  294. // jobAssembliesToolStripMenuItem
  295. //
  296. this.jobAssembliesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  297. this.addAssemblyMenuItem,
  298. this.deleteAssemblyMenuItem});
  299. this.jobAssembliesToolStripMenuItem.Name = "jobAssembliesToolStripMenuItem";
  300. this.jobAssembliesToolStripMenuItem.Size = new System.Drawing.Size(99, 20);
  301. this.jobAssembliesToolStripMenuItem.Text = "Job Assemblies";
  302. //
  303. // addAssemblyMenuItem
  304. //
  305. this.addAssemblyMenuItem.Name = "addAssemblyMenuItem";
  306. this.addAssemblyMenuItem.Size = new System.Drawing.Size(152, 22);
  307. this.addAssemblyMenuItem.Text = "Add";
  308. this.addAssemblyMenuItem.Click += new System.EventHandler(this.addAssemblyMenuItem_Click);
  309. //
  310. // deleteAssemblyMenuItem
  311. //
  312. this.deleteAssemblyMenuItem.Name = "deleteAssemblyMenuItem";
  313. this.deleteAssemblyMenuItem.Size = new System.Drawing.Size(152, 22);
  314. this.deleteAssemblyMenuItem.Text = "Delete";
  315. this.deleteAssemblyMenuItem.Click += new System.EventHandler(this.deleteAssemblyMenuItem_Click);
  316. //
  317. // MainForm
  318. //
  319. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  320. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  321. this.ClientSize = new System.Drawing.Size(913, 661);
  322. this.Controls.Add(this.btnRefreshJobGroups);
  323. this.Controls.Add(this.listView_RunningJobs);
  324. this.Controls.Add(this.pnlDetails);
  325. this.Controls.Add(this.label3);
  326. this.Controls.Add(this.label1);
  327. this.Controls.Add(this.btnEdit);
  328. this.Controls.Add(this.btnRefreshRunningJobs);
  329. this.Controls.Add(this.btnPause);
  330. this.Controls.Add(this.label2);
  331. this.Controls.Add(this.statusStrip1);
  332. this.Controls.Add(this.mainMenuStrip);
  333. this.Controls.Add(this.btnRunJobNow);
  334. this.Controls.Add(this.jobGroupsTreeView);
  335. this.Controls.Add(this.btnDeleteJob);
  336. this.MainMenuStrip = this.mainMenuStrip;
  337. this.Name = "MainForm";
  338. this.Text = "Quartz Manager";
  339. this.mainMenuStrip.ResumeLayout(false);
  340. this.mainMenuStrip.PerformLayout();
  341. this.statusStrip1.ResumeLayout(false);
  342. this.statusStrip1.PerformLayout();
  343. this.ctxScheduler.ResumeLayout(false);
  344. this.ResumeLayout(false);
  345. this.PerformLayout();
  346. }
  347. #endregion
  348. private System.Windows.Forms.MenuStrip mainMenuStrip;
  349. private System.Windows.Forms.ToolStripMenuItem schedulerToolStripMenuItem;
  350. private System.Windows.Forms.ToolStripMenuItem connectToolStripMenuItem;
  351. private System.Windows.Forms.StatusStrip statusStrip1;
  352. private System.Windows.Forms.ToolStripStatusLabel serverConnectStatusLabel;
  353. private System.Windows.Forms.TreeView jobGroupsTreeView;
  354. private System.Windows.Forms.ToolStripMenuItem listenersStripMenuItem;
  355. private System.Windows.Forms.ToolStripMenuItem globalListenersToolStripMenuItem;
  356. private System.Windows.Forms.ToolStripMenuItem addGlobalJobListenerToolStripMenuItem;
  357. private System.Windows.Forms.ToolStripMenuItem addTriggerListenerToolStripMenuItem;
  358. private System.Windows.Forms.ToolStripMenuItem addJobListenerToolStripMenuItem;
  359. private System.Windows.Forms.Label label1;
  360. private System.Windows.Forms.Label label2;
  361. private System.Windows.Forms.ToolStripMenuItem jobsToolStripMenuItem;
  362. private System.Windows.Forms.ToolStripMenuItem addJobToolStripMenuItem;
  363. private System.Windows.Forms.Button btnRefreshRunningJobs;
  364. private System.Windows.Forms.Button btnRefreshJobGroups;
  365. private System.Windows.Forms.Button btnDeleteJob;
  366. private System.Windows.Forms.Button btnRunJobNow;
  367. private System.Windows.Forms.Button btnPause;
  368. private System.Windows.Forms.Panel pnlDetails;
  369. private System.Windows.Forms.Label label3;
  370. private System.Windows.Forms.Button btnEdit;
  371. private System.Windows.Forms.ContextMenuStrip ctxScheduler;
  372. private System.Windows.Forms.ToolStripMenuItem backupToolStripMenuItem;
  373. private System.Windows.Forms.Timer timer_Refresh_Running_Jobs;
  374. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Jobs_Refresh_date;
  375. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Job_Groups;
  376. private System.Windows.Forms.ListView listView_RunningJobs;
  377. private System.Windows.Forms.ColumnHeader JobName;
  378. private System.Windows.Forms.ColumnHeader JobDuration;
  379. private System.Windows.Forms.ToolStripMenuItem jobAssembliesToolStripMenuItem;
  380. private System.Windows.Forms.ToolStripMenuItem addAssemblyMenuItem;
  381. private System.Windows.Forms.ToolStripMenuItem deleteAssemblyMenuItem;
  382. }
  383. }