[2088] | 1 | namespace HeuristicLab.CEDMA.Server {
|
---|
| 2 | partial class ExecuterView {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Component Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.jobsList = new System.Windows.Forms.ListBox();
|
---|
| 27 | this.maxJobsLabel = new System.Windows.Forms.Label();
|
---|
| 28 | this.maxActiveJobs = new System.Windows.Forms.NumericUpDown();
|
---|
| 29 | ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobs)).BeginInit();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // jobsList
|
---|
| 33 | //
|
---|
| 34 | this.jobsList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 35 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 36 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 37 | this.jobsList.FormattingEnabled = true;
|
---|
| 38 | this.jobsList.Location = new System.Drawing.Point(3, 29);
|
---|
| 39 | this.jobsList.Name = "jobsList";
|
---|
| 40 | this.jobsList.Size = new System.Drawing.Size(327, 264);
|
---|
| 41 | this.jobsList.TabIndex = 0;
|
---|
| 42 | //
|
---|
| 43 | // maxJobsLabel
|
---|
| 44 | //
|
---|
| 45 | this.maxJobsLabel.AutoSize = true;
|
---|
| 46 | this.maxJobsLabel.Location = new System.Drawing.Point(5, 5);
|
---|
| 47 | this.maxJobsLabel.Name = "maxJobsLabel";
|
---|
| 48 | this.maxJobsLabel.Size = new System.Drawing.Size(87, 13);
|
---|
| 49 | this.maxJobsLabel.TabIndex = 1;
|
---|
| 50 | this.maxJobsLabel.Text = "Max. active jobs:";
|
---|
| 51 | //
|
---|
| 52 | // maxActiveJobs
|
---|
| 53 | //
|
---|
| 54 | this.maxActiveJobs.Location = new System.Drawing.Point(98, 3);
|
---|
| 55 | this.maxActiveJobs.Maximum = new decimal(new int[] {
|
---|
[2125] | 56 | 200,
|
---|
[2088] | 57 | 0,
|
---|
| 58 | 0,
|
---|
| 59 | 0});
|
---|
| 60 | this.maxActiveJobs.Name = "maxActiveJobs";
|
---|
| 61 | this.maxActiveJobs.Size = new System.Drawing.Size(120, 20);
|
---|
| 62 | this.maxActiveJobs.TabIndex = 2;
|
---|
[2113] | 63 | this.maxActiveJobs.ValueChanged += new System.EventHandler(this.maxActiveJobs_ValueChanged);
|
---|
[2088] | 64 | //
|
---|
| 65 | // ExecuterView
|
---|
| 66 | //
|
---|
| 67 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 69 | this.Controls.Add(this.maxActiveJobs);
|
---|
| 70 | this.Controls.Add(this.maxJobsLabel);
|
---|
| 71 | this.Controls.Add(this.jobsList);
|
---|
| 72 | this.Name = "ExecuterView";
|
---|
| 73 | this.Size = new System.Drawing.Size(333, 294);
|
---|
| 74 | ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobs)).EndInit();
|
---|
| 75 | this.ResumeLayout(false);
|
---|
| 76 | this.PerformLayout();
|
---|
| 77 |
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
| 82 | private System.Windows.Forms.ListBox jobsList;
|
---|
| 83 | private System.Windows.Forms.Label maxJobsLabel;
|
---|
| 84 | private System.Windows.Forms.NumericUpDown maxActiveJobs;
|
---|
| 85 | }
|
---|
| 86 | }
|
---|