[9323] | 1 | namespace HeuristicLab.ParallelEngine.Views {
|
---|
| 2 | partial class ParallelEngineView {
|
---|
| 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.degreeOfParallelizationNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
| 27 | this.parallelismLabel = new System.Windows.Forms.Label();
|
---|
| 28 | this.infoLabel = new System.Windows.Forms.Label();
|
---|
| 29 | ((System.ComponentModel.ISupportInitialize)(this.degreeOfParallelizationNumericUpDown)).BeginInit();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // executionTimeTextBox
|
---|
| 33 | //
|
---|
| 34 | this.executionTimeTextBox.Location = new System.Drawing.Point(132, 0);
|
---|
| 35 | this.executionTimeTextBox.Size = new System.Drawing.Size(391, 20);
|
---|
| 36 | //
|
---|
| 37 | // logView
|
---|
| 38 | //
|
---|
| 39 | this.logView.Location = new System.Drawing.Point(0, 53);
|
---|
| 40 | this.logView.Size = new System.Drawing.Size(523, 353);
|
---|
| 41 | //
|
---|
| 42 | // degreeOfParallelizationNumericUpDown
|
---|
| 43 | //
|
---|
| 44 | this.degreeOfParallelizationNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 45 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 46 | this.degreeOfParallelizationNumericUpDown.Enabled = false;
|
---|
| 47 | this.degreeOfParallelizationNumericUpDown.Location = new System.Drawing.Point(132, 27);
|
---|
| 48 | this.degreeOfParallelizationNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 49 | 1,
|
---|
| 50 | 0,
|
---|
| 51 | 0,
|
---|
| 52 | -2147483648});
|
---|
| 53 | this.degreeOfParallelizationNumericUpDown.Name = "degreeOfParallelizationNumericUpDown";
|
---|
| 54 | this.degreeOfParallelizationNumericUpDown.Size = new System.Drawing.Size(363, 20);
|
---|
| 55 | this.degreeOfParallelizationNumericUpDown.TabIndex = 3;
|
---|
| 56 | this.degreeOfParallelizationNumericUpDown.Value = new decimal(new int[] {
|
---|
| 57 | 1,
|
---|
| 58 | 0,
|
---|
| 59 | 0,
|
---|
| 60 | -2147483648});
|
---|
| 61 | this.degreeOfParallelizationNumericUpDown.ValueChanged += new System.EventHandler(this.degreeOfParallelizationNumericUpDown_ValueChanged);
|
---|
| 62 | //
|
---|
| 63 | // parallelismLabel
|
---|
| 64 | //
|
---|
| 65 | this.parallelismLabel.AutoSize = true;
|
---|
| 66 | this.parallelismLabel.Location = new System.Drawing.Point(3, 29);
|
---|
| 67 | this.parallelismLabel.Name = "parallelismLabel";
|
---|
| 68 | this.parallelismLabel.Size = new System.Drawing.Size(109, 13);
|
---|
| 69 | this.parallelismLabel.TabIndex = 4;
|
---|
| 70 | this.parallelismLabel.Text = "Degree of Parallelism:";
|
---|
| 71 | //
|
---|
| 72 | // infoLabel
|
---|
| 73 | //
|
---|
| 74 | this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 75 | this.infoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
|
---|
| 76 | this.infoLabel.Location = new System.Drawing.Point(501, 29);
|
---|
| 77 | this.infoLabel.Name = "infoLabel";
|
---|
| 78 | this.infoLabel.Size = new System.Drawing.Size(16, 16);
|
---|
| 79 | this.infoLabel.TabIndex = 5;
|
---|
| 80 | this.infoLabel.DoubleClick += new System.EventHandler(this.infoLabel_DoubleClick);
|
---|
| 81 | //
|
---|
| 82 | // ParallelEngineView
|
---|
| 83 | //
|
---|
| 84 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 85 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 86 | this.Controls.Add(this.infoLabel);
|
---|
| 87 | this.Controls.Add(this.parallelismLabel);
|
---|
| 88 | this.Controls.Add(this.degreeOfParallelizationNumericUpDown);
|
---|
| 89 | this.Name = "ParallelEngineView";
|
---|
| 90 | this.Size = new System.Drawing.Size(523, 406);
|
---|
| 91 | this.Controls.SetChildIndex(this.logView, 0);
|
---|
| 92 | this.Controls.SetChildIndex(this.degreeOfParallelizationNumericUpDown, 0);
|
---|
| 93 | this.Controls.SetChildIndex(this.parallelismLabel, 0);
|
---|
| 94 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
| 95 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
| 96 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
| 97 | ((System.ComponentModel.ISupportInitialize)(this.degreeOfParallelizationNumericUpDown)).EndInit();
|
---|
| 98 | this.ResumeLayout(false);
|
---|
| 99 | this.PerformLayout();
|
---|
| 100 |
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | #endregion
|
---|
| 104 |
|
---|
| 105 | private System.Windows.Forms.NumericUpDown degreeOfParallelizationNumericUpDown;
|
---|
| 106 | private System.Windows.Forms.Label parallelismLabel;
|
---|
| 107 | protected System.Windows.Forms.Label infoLabel;
|
---|
| 108 | }
|
---|
| 109 | }
|
---|