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

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

No Description