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 24 kB

15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  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.button1 = new System.Windows.Forms.Button();
  61. this.button2 = new System.Windows.Forms.Button();
  62. this.button3 = new System.Windows.Forms.Button();
  63. this.button4 = new System.Windows.Forms.Button();
  64. this.mainMenuStrip.SuspendLayout();
  65. this.statusStrip1.SuspendLayout();
  66. this.ctxScheduler.SuspendLayout();
  67. this.SuspendLayout();
  68. //
  69. // mainMenuStrip
  70. //
  71. this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  72. this.schedulerToolStripMenuItem,
  73. this.jobsToolStripMenuItem,
  74. this.listenersStripMenuItem});
  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. // listenersStripMenuItem
  113. //
  114. this.listenersStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  115. this.globalListenersToolStripMenuItem,
  116. this.addJobListenerToolStripMenuItem});
  117. this.listenersStripMenuItem.Enabled = false;
  118. this.listenersStripMenuItem.Name = "listenersStripMenuItem";
  119. this.listenersStripMenuItem.Size = new System.Drawing.Size(65, 20);
  120. this.listenersStripMenuItem.Text = "Listeners";
  121. //
  122. // globalListenersToolStripMenuItem
  123. //
  124. this.globalListenersToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  125. this.addGlobalJobListenerToolStripMenuItem,
  126. this.addTriggerListenerToolStripMenuItem});
  127. this.globalListenersToolStripMenuItem.Name = "globalListenersToolStripMenuItem";
  128. this.globalListenersToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
  129. this.globalListenersToolStripMenuItem.Text = "Global";
  130. //
  131. // addGlobalJobListenerToolStripMenuItem
  132. //
  133. this.addGlobalJobListenerToolStripMenuItem.Name = "addGlobalJobListenerToolStripMenuItem";
  134. this.addGlobalJobListenerToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
  135. this.addGlobalJobListenerToolStripMenuItem.Text = "Add Job Listener";
  136. this.addGlobalJobListenerToolStripMenuItem.Click += new System.EventHandler(this.addGlobalListenerToolStripMenuItem_Click);
  137. //
  138. // addTriggerListenerToolStripMenuItem
  139. //
  140. this.addTriggerListenerToolStripMenuItem.Name = "addTriggerListenerToolStripMenuItem";
  141. this.addTriggerListenerToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
  142. this.addTriggerListenerToolStripMenuItem.Text = "Add Trigger Listener";
  143. //
  144. // addJobListenerToolStripMenuItem
  145. //
  146. this.addJobListenerToolStripMenuItem.Name = "addJobListenerToolStripMenuItem";
  147. this.addJobListenerToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
  148. this.addJobListenerToolStripMenuItem.Text = "Add Job Listener";
  149. this.addJobListenerToolStripMenuItem.Click += new System.EventHandler(this.addJobListenerToolStripMenuItem_Click);
  150. //
  151. // statusStrip1
  152. //
  153. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  154. this.serverConnectStatusLabel,
  155. this.StripStatusLabel_Job_Groups,
  156. this.StripStatusLabel_Jobs_Refresh_date});
  157. this.statusStrip1.Location = new System.Drawing.Point(0, 639);
  158. this.statusStrip1.Name = "statusStrip1";
  159. this.statusStrip1.Size = new System.Drawing.Size(913, 22);
  160. this.statusStrip1.TabIndex = 1;
  161. this.statusStrip1.Text = "statusStrip1";
  162. //
  163. // serverConnectStatusLabel
  164. //
  165. this.serverConnectStatusLabel.Name = "serverConnectStatusLabel";
  166. this.serverConnectStatusLabel.Size = new System.Drawing.Size(86, 17);
  167. this.serverConnectStatusLabel.Text = "Not connected";
  168. //
  169. // StripStatusLabel_Job_Groups
  170. //
  171. this.StripStatusLabel_Job_Groups.BackColor = System.Drawing.Color.LightCyan;
  172. this.StripStatusLabel_Job_Groups.Name = "StripStatusLabel_Job_Groups";
  173. this.StripStatusLabel_Job_Groups.Size = new System.Drawing.Size(157, 17);
  174. this.StripStatusLabel_Job_Groups.Text = "StripStatusLabel_Job_Groups";
  175. this.StripStatusLabel_Job_Groups.ToolTipText = "Last Refresh of Job Groups";
  176. //
  177. // StripStatusLabel_Jobs_Refresh_date
  178. //
  179. this.StripStatusLabel_Jobs_Refresh_date.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  180. this.StripStatusLabel_Jobs_Refresh_date.Name = "StripStatusLabel_Jobs_Refresh_date";
  181. this.StripStatusLabel_Jobs_Refresh_date.Size = new System.Drawing.Size(191, 17);
  182. this.StripStatusLabel_Jobs_Refresh_date.Text = "StripStatusLabel_Jobs_Refresh_date";
  183. this.StripStatusLabel_Jobs_Refresh_date.ToolTipText = "Last Refresh Date of Running Jobs";
  184. //
  185. // jobGroupsTreeView
  186. //
  187. this.jobGroupsTreeView.HideSelection = false;
  188. this.jobGroupsTreeView.Location = new System.Drawing.Point(8, 48);
  189. this.jobGroupsTreeView.Name = "jobGroupsTreeView";
  190. this.jobGroupsTreeView.Size = new System.Drawing.Size(351, 252);
  191. this.jobGroupsTreeView.TabIndex = 2;
  192. //
  193. // label1
  194. //
  195. this.label1.AutoSize = true;
  196. this.label1.Location = new System.Drawing.Point(8, 32);
  197. this.label1.Name = "label1";
  198. this.label1.Size = new System.Drawing.Size(94, 13);
  199. this.label1.TabIndex = 4;
  200. this.label1.Text = "Scheduler Objects";
  201. //
  202. // label2
  203. //
  204. this.label2.AutoSize = true;
  205. this.label2.Location = new System.Drawing.Point(9, 319);
  206. this.label2.Name = "label2";
  207. this.label2.Size = new System.Drawing.Size(72, 13);
  208. this.label2.TabIndex = 5;
  209. this.label2.Text = "Running Jobs";
  210. //
  211. // btnRefreshRunningJobs
  212. //
  213. this.btnRefreshRunningJobs.Location = new System.Drawing.Point(371, 609);
  214. this.btnRefreshRunningJobs.Name = "btnRefreshRunningJobs";
  215. this.btnRefreshRunningJobs.Size = new System.Drawing.Size(75, 23);
  216. this.btnRefreshRunningJobs.TabIndex = 6;
  217. this.btnRefreshRunningJobs.Text = "Refresh";
  218. this.btnRefreshRunningJobs.UseVisualStyleBackColor = true;
  219. this.btnRefreshRunningJobs.Click += new System.EventHandler(this.btnRefreshRunningJobs_Click);
  220. //
  221. // btnRefreshJobGroups
  222. //
  223. this.btnRefreshJobGroups.Location = new System.Drawing.Point(284, 306);
  224. this.btnRefreshJobGroups.Name = "btnRefreshJobGroups";
  225. this.btnRefreshJobGroups.Size = new System.Drawing.Size(75, 23);
  226. this.btnRefreshJobGroups.TabIndex = 7;
  227. this.btnRefreshJobGroups.Text = "Refresh";
  228. this.btnRefreshJobGroups.UseVisualStyleBackColor = true;
  229. this.btnRefreshJobGroups.Click += new System.EventHandler(this.btnRefreshJobGroups_Click);
  230. //
  231. // btnDeleteJob
  232. //
  233. this.btnDeleteJob.Enabled = false;
  234. this.btnDeleteJob.Location = new System.Drawing.Point(533, 306);
  235. this.btnDeleteJob.Name = "btnDeleteJob";
  236. this.btnDeleteJob.Size = new System.Drawing.Size(65, 23);
  237. this.btnDeleteJob.TabIndex = 8;
  238. this.btnDeleteJob.Text = "Delete";
  239. this.btnDeleteJob.UseVisualStyleBackColor = true;
  240. this.btnDeleteJob.Click += new System.EventHandler(this.btnDeleteJob_Click);
  241. //
  242. // btnRunJobNow
  243. //
  244. this.btnRunJobNow.Enabled = false;
  245. this.btnRunJobNow.Location = new System.Drawing.Point(391, 306);
  246. this.btnRunJobNow.Name = "btnRunJobNow";
  247. this.btnRunJobNow.Size = new System.Drawing.Size(65, 23);
  248. this.btnRunJobNow.TabIndex = 9;
  249. this.btnRunJobNow.Text = "Run";
  250. this.btnRunJobNow.UseVisualStyleBackColor = true;
  251. this.btnRunJobNow.Click += new System.EventHandler(this.btnRunJobNow_Click);
  252. //
  253. // btnPause
  254. //
  255. this.btnPause.Enabled = false;
  256. this.btnPause.Location = new System.Drawing.Point(462, 306);
  257. this.btnPause.Name = "btnPause";
  258. this.btnPause.Size = new System.Drawing.Size(65, 23);
  259. this.btnPause.TabIndex = 10;
  260. this.btnPause.Text = "Pause";
  261. this.btnPause.UseVisualStyleBackColor = true;
  262. this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
  263. //
  264. // pnlDetails
  265. //
  266. this.pnlDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  267. this.pnlDetails.Location = new System.Drawing.Point(391, 45);
  268. this.pnlDetails.Name = "pnlDetails";
  269. this.pnlDetails.Size = new System.Drawing.Size(342, 252);
  270. this.pnlDetails.TabIndex = 11;
  271. //
  272. // label3
  273. //
  274. this.label3.AutoSize = true;
  275. this.label3.Location = new System.Drawing.Point(388, 29);
  276. this.label3.Name = "label3";
  277. this.label3.Size = new System.Drawing.Size(39, 13);
  278. this.label3.TabIndex = 12;
  279. this.label3.Text = "Details";
  280. //
  281. // btnEdit
  282. //
  283. this.btnEdit.Enabled = false;
  284. this.btnEdit.Location = new System.Drawing.Point(604, 306);
  285. this.btnEdit.Name = "btnEdit";
  286. this.btnEdit.Size = new System.Drawing.Size(65, 23);
  287. this.btnEdit.TabIndex = 13;
  288. this.btnEdit.Text = "Edit";
  289. this.btnEdit.UseVisualStyleBackColor = true;
  290. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  291. //
  292. // ctxScheduler
  293. //
  294. this.ctxScheduler.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  295. this.backupToolStripMenuItem});
  296. this.ctxScheduler.Name = "ctxScheduler";
  297. this.ctxScheduler.Size = new System.Drawing.Size(109, 26);
  298. //
  299. // backupToolStripMenuItem
  300. //
  301. this.backupToolStripMenuItem.Name = "backupToolStripMenuItem";
  302. this.backupToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
  303. this.backupToolStripMenuItem.Text = "Backup";
  304. this.backupToolStripMenuItem.Click += new System.EventHandler(this.backupToolStripMenuItem_Click);
  305. //
  306. // timer_Refresh_Running_Jobs
  307. //
  308. this.timer_Refresh_Running_Jobs.Interval = 30000;
  309. this.timer_Refresh_Running_Jobs.Tick += new System.EventHandler(this.timer_Refresh_Running_Jobs_Tick);
  310. //
  311. // listView_RunningJobs
  312. //
  313. this.listView_RunningJobs.AllowColumnReorder = true;
  314. this.listView_RunningJobs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  315. this.JobName,
  316. this.JobDuration});
  317. this.listView_RunningJobs.Location = new System.Drawing.Point(8, 335);
  318. this.listView_RunningJobs.Name = "listView_RunningJobs";
  319. this.listView_RunningJobs.Size = new System.Drawing.Size(725, 268);
  320. this.listView_RunningJobs.Sorting = System.Windows.Forms.SortOrder.Ascending;
  321. this.listView_RunningJobs.TabIndex = 14;
  322. this.listView_RunningJobs.UseCompatibleStateImageBehavior = false;
  323. this.listView_RunningJobs.View = System.Windows.Forms.View.Details;
  324. //
  325. // JobName
  326. //
  327. this.JobName.Text = "Job Name";
  328. //
  329. // JobDuration
  330. //
  331. this.JobDuration.Text = "Duration";
  332. //
  333. // button1
  334. //
  335. this.button1.Enabled = false;
  336. this.button1.Location = new System.Drawing.Point(533, 306);
  337. this.button1.Name = "button1";
  338. this.button1.Size = new System.Drawing.Size(65, 23);
  339. this.button1.TabIndex = 8;
  340. this.button1.Text = "Delete";
  341. this.button1.UseVisualStyleBackColor = true;
  342. this.button1.Click += new System.EventHandler(this.btnDeleteJob_Click);
  343. //
  344. // button2
  345. //
  346. this.button2.Enabled = false;
  347. this.button2.Location = new System.Drawing.Point(391, 306);
  348. this.button2.Name = "button2";
  349. this.button2.Size = new System.Drawing.Size(65, 23);
  350. this.button2.TabIndex = 9;
  351. this.button2.Text = "Run";
  352. this.button2.UseVisualStyleBackColor = true;
  353. this.button2.Click += new System.EventHandler(this.btnRunJobNow_Click);
  354. //
  355. // button3
  356. //
  357. this.button3.Enabled = false;
  358. this.button3.Location = new System.Drawing.Point(462, 306);
  359. this.button3.Name = "button3";
  360. this.button3.Size = new System.Drawing.Size(65, 23);
  361. this.button3.TabIndex = 10;
  362. this.button3.Text = "Pause";
  363. this.button3.UseVisualStyleBackColor = true;
  364. this.button3.Click += new System.EventHandler(this.btnPause_Click);
  365. //
  366. // button4
  367. //
  368. this.button4.Enabled = false;
  369. this.button4.Location = new System.Drawing.Point(604, 306);
  370. this.button4.Name = "button4";
  371. this.button4.Size = new System.Drawing.Size(65, 23);
  372. this.button4.TabIndex = 13;
  373. this.button4.Text = "Edit";
  374. this.button4.UseVisualStyleBackColor = true;
  375. this.button4.Click += new System.EventHandler(this.btnEdit_Click);
  376. //
  377. // MainForm
  378. //
  379. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  380. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  381. this.ClientSize = new System.Drawing.Size(913, 661);
  382. this.Controls.Add(this.btnRefreshJobGroups);
  383. this.Controls.Add(this.listView_RunningJobs);
  384. this.Controls.Add(this.pnlDetails);
  385. this.Controls.Add(this.label3);
  386. this.Controls.Add(this.label1);
  387. this.Controls.Add(this.button4);
  388. this.Controls.Add(this.btnEdit);
  389. this.Controls.Add(this.btnRefreshRunningJobs);
  390. this.Controls.Add(this.button3);
  391. this.Controls.Add(this.btnPause);
  392. this.Controls.Add(this.label2);
  393. this.Controls.Add(this.statusStrip1);
  394. this.Controls.Add(this.button2);
  395. this.Controls.Add(this.mainMenuStrip);
  396. this.Controls.Add(this.btnRunJobNow);
  397. this.Controls.Add(this.jobGroupsTreeView);
  398. this.Controls.Add(this.button1);
  399. this.Controls.Add(this.btnDeleteJob);
  400. this.MainMenuStrip = this.mainMenuStrip;
  401. this.Name = "MainForm";
  402. this.Text = "Quartz Manager";
  403. this.mainMenuStrip.ResumeLayout(false);
  404. this.mainMenuStrip.PerformLayout();
  405. this.statusStrip1.ResumeLayout(false);
  406. this.statusStrip1.PerformLayout();
  407. this.ctxScheduler.ResumeLayout(false);
  408. this.ResumeLayout(false);
  409. this.PerformLayout();
  410. }
  411. #endregion
  412. private System.Windows.Forms.MenuStrip mainMenuStrip;
  413. private System.Windows.Forms.ToolStripMenuItem schedulerToolStripMenuItem;
  414. private System.Windows.Forms.ToolStripMenuItem connectToolStripMenuItem;
  415. private System.Windows.Forms.StatusStrip statusStrip1;
  416. private System.Windows.Forms.ToolStripStatusLabel serverConnectStatusLabel;
  417. private System.Windows.Forms.TreeView jobGroupsTreeView;
  418. private System.Windows.Forms.ToolStripMenuItem listenersStripMenuItem;
  419. private System.Windows.Forms.ToolStripMenuItem globalListenersToolStripMenuItem;
  420. private System.Windows.Forms.ToolStripMenuItem addGlobalJobListenerToolStripMenuItem;
  421. private System.Windows.Forms.ToolStripMenuItem addTriggerListenerToolStripMenuItem;
  422. private System.Windows.Forms.ToolStripMenuItem addJobListenerToolStripMenuItem;
  423. private System.Windows.Forms.Label label1;
  424. private System.Windows.Forms.Label label2;
  425. private System.Windows.Forms.ToolStripMenuItem jobsToolStripMenuItem;
  426. private System.Windows.Forms.ToolStripMenuItem addJobToolStripMenuItem;
  427. private System.Windows.Forms.Button btnRefreshRunningJobs;
  428. private System.Windows.Forms.Button btnRefreshJobGroups;
  429. private System.Windows.Forms.Button btnDeleteJob;
  430. private System.Windows.Forms.Button btnRunJobNow;
  431. private System.Windows.Forms.Button btnPause;
  432. private System.Windows.Forms.Panel pnlDetails;
  433. private System.Windows.Forms.Label label3;
  434. private System.Windows.Forms.Button btnEdit;
  435. private System.Windows.Forms.ContextMenuStrip ctxScheduler;
  436. private System.Windows.Forms.ToolStripMenuItem backupToolStripMenuItem;
  437. private System.Windows.Forms.Timer timer_Refresh_Running_Jobs;
  438. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Jobs_Refresh_date;
  439. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Job_Groups;
  440. private System.Windows.Forms.ListView listView_RunningJobs;
  441. private System.Windows.Forms.ColumnHeader JobName;
  442. private System.Windows.Forms.ColumnHeader JobDuration;
  443. private System.Windows.Forms.Button button1;
  444. private System.Windows.Forms.Button button2;
  445. private System.Windows.Forms.Button button3;
  446. private System.Windows.Forms.Button button4;
  447. }
  448. }

No Description