[2088] | 1 | namespace HeuristicLab.CEDMA.Server {
|
---|
| 2 | partial class DispatcherView {
|
---|
| 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.targetVariableList = new System.Windows.Forms.CheckedListBox();
|
---|
| 27 | this.inputVariableList = new System.Windows.Forms.CheckedListBox();
|
---|
| 28 | this.targetVariablesLabel = new System.Windows.Forms.Label();
|
---|
| 29 | this.inputVariablesLabel = new System.Windows.Forms.Label();
|
---|
[2153] | 30 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[2290] | 31 | this.algorithmsListBox = new System.Windows.Forms.CheckedListBox();
|
---|
| 32 | this.algorithmsLabel = new System.Windows.Forms.Label();
|
---|
[2258] | 33 | this.setAllButton = new System.Windows.Forms.Button();
|
---|
[2153] | 34 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 35 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 36 | this.splitContainer.SuspendLayout();
|
---|
[2088] | 37 | this.SuspendLayout();
|
---|
| 38 | //
|
---|
| 39 | // targetVariableList
|
---|
| 40 | //
|
---|
[2153] | 41 | this.targetVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 42 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 43 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2088] | 44 | this.targetVariableList.FormattingEnabled = true;
|
---|
[2153] | 45 | this.targetVariableList.HorizontalScrollbar = true;
|
---|
[2290] | 46 | this.targetVariableList.Location = new System.Drawing.Point(6, 181);
|
---|
[2088] | 47 | this.targetVariableList.Name = "targetVariableList";
|
---|
[2290] | 48 | this.targetVariableList.Size = new System.Drawing.Size(193, 289);
|
---|
[2088] | 49 | this.targetVariableList.TabIndex = 0;
|
---|
[2119] | 50 | this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
|
---|
[2153] | 51 | this.targetVariableList.SelectedValueChanged += new System.EventHandler(this.targetVariableList_SelectedValueChanged);
|
---|
[2088] | 52 | //
|
---|
| 53 | // inputVariableList
|
---|
| 54 | //
|
---|
[2153] | 55 | this.inputVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 56 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 57 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2088] | 58 | this.inputVariableList.FormattingEnabled = true;
|
---|
[2153] | 59 | this.inputVariableList.HorizontalScrollbar = true;
|
---|
| 60 | this.inputVariableList.Location = new System.Drawing.Point(2, 16);
|
---|
[2088] | 61 | this.inputVariableList.Name = "inputVariableList";
|
---|
[2258] | 62 | this.inputVariableList.Size = new System.Drawing.Size(221, 439);
|
---|
[2088] | 63 | this.inputVariableList.TabIndex = 1;
|
---|
[2119] | 64 | this.inputVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputVariableList_ItemCheck);
|
---|
[2088] | 65 | //
|
---|
| 66 | // targetVariablesLabel
|
---|
| 67 | //
|
---|
| 68 | this.targetVariablesLabel.AutoSize = true;
|
---|
[2290] | 69 | this.targetVariablesLabel.Location = new System.Drawing.Point(3, 165);
|
---|
[2088] | 70 | this.targetVariablesLabel.Name = "targetVariablesLabel";
|
---|
| 71 | this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
|
---|
| 72 | this.targetVariablesLabel.TabIndex = 2;
|
---|
| 73 | this.targetVariablesLabel.Text = "Target variables:";
|
---|
| 74 | //
|
---|
| 75 | // inputVariablesLabel
|
---|
| 76 | //
|
---|
| 77 | this.inputVariablesLabel.AutoSize = true;
|
---|
[2153] | 78 | this.inputVariablesLabel.Location = new System.Drawing.Point(3, 0);
|
---|
[2088] | 79 | this.inputVariablesLabel.Name = "inputVariablesLabel";
|
---|
| 80 | this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
|
---|
| 81 | this.inputVariablesLabel.TabIndex = 3;
|
---|
| 82 | this.inputVariablesLabel.Text = "Input variables:";
|
---|
| 83 | //
|
---|
[2153] | 84 | // splitContainer
|
---|
| 85 | //
|
---|
| 86 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 87 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 88 | this.splitContainer.Name = "splitContainer";
|
---|
| 89 | //
|
---|
| 90 | // splitContainer.Panel1
|
---|
| 91 | //
|
---|
[2290] | 92 | this.splitContainer.Panel1.Controls.Add(this.algorithmsListBox);
|
---|
| 93 | this.splitContainer.Panel1.Controls.Add(this.algorithmsLabel);
|
---|
[2153] | 94 | this.splitContainer.Panel1.Controls.Add(this.targetVariablesLabel);
|
---|
| 95 | this.splitContainer.Panel1.Controls.Add(this.targetVariableList);
|
---|
| 96 | //
|
---|
| 97 | // splitContainer.Panel2
|
---|
| 98 | //
|
---|
[2258] | 99 | this.splitContainer.Panel2.Controls.Add(this.setAllButton);
|
---|
[2153] | 100 | this.splitContainer.Panel2.Controls.Add(this.inputVariablesLabel);
|
---|
| 101 | this.splitContainer.Panel2.Controls.Add(this.inputVariableList);
|
---|
| 102 | this.splitContainer.Size = new System.Drawing.Size(429, 482);
|
---|
| 103 | this.splitContainer.SplitterDistance = 202;
|
---|
| 104 | this.splitContainer.SplitterWidth = 1;
|
---|
| 105 | this.splitContainer.TabIndex = 4;
|
---|
| 106 | //
|
---|
[2290] | 107 | // algorithmsListBox
|
---|
| 108 | //
|
---|
| 109 | this.algorithmsListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 110 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 111 | this.algorithmsListBox.FormattingEnabled = true;
|
---|
| 112 | this.algorithmsListBox.HorizontalScrollbar = true;
|
---|
| 113 | this.algorithmsListBox.Location = new System.Drawing.Point(6, 16);
|
---|
| 114 | this.algorithmsListBox.Name = "algorithmsListBox";
|
---|
| 115 | this.algorithmsListBox.Size = new System.Drawing.Size(193, 139);
|
---|
| 116 | this.algorithmsListBox.TabIndex = 4;
|
---|
| 117 | this.algorithmsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.algorithmsListBox_ItemCheck);
|
---|
| 118 | //
|
---|
| 119 | // algorithmsLabel
|
---|
| 120 | //
|
---|
| 121 | this.algorithmsLabel.AutoSize = true;
|
---|
| 122 | this.algorithmsLabel.Location = new System.Drawing.Point(3, 0);
|
---|
| 123 | this.algorithmsLabel.Name = "algorithmsLabel";
|
---|
| 124 | this.algorithmsLabel.Size = new System.Drawing.Size(58, 13);
|
---|
| 125 | this.algorithmsLabel.TabIndex = 3;
|
---|
| 126 | this.algorithmsLabel.Text = "Algorithms:";
|
---|
| 127 | //
|
---|
[2258] | 128 | // setAllButton
|
---|
| 129 | //
|
---|
| 130 | this.setAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 131 | this.setAllButton.Location = new System.Drawing.Point(3, 456);
|
---|
| 132 | this.setAllButton.Name = "setAllButton";
|
---|
| 133 | this.setAllButton.Size = new System.Drawing.Size(91, 23);
|
---|
| 134 | this.setAllButton.TabIndex = 4;
|
---|
| 135 | this.setAllButton.Text = "Use as default";
|
---|
| 136 | this.setAllButton.UseVisualStyleBackColor = true;
|
---|
| 137 | this.setAllButton.Click += new System.EventHandler(this.setAllButton_Click);
|
---|
| 138 | //
|
---|
[2088] | 139 | // DispatcherView
|
---|
| 140 | //
|
---|
| 141 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 142 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[2153] | 143 | this.Controls.Add(this.splitContainer);
|
---|
[2088] | 144 | this.Name = "DispatcherView";
|
---|
[2119] | 145 | this.Size = new System.Drawing.Size(429, 482);
|
---|
[2153] | 146 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 147 | this.splitContainer.Panel1.PerformLayout();
|
---|
| 148 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 149 | this.splitContainer.Panel2.PerformLayout();
|
---|
| 150 | this.splitContainer.ResumeLayout(false);
|
---|
[2088] | 151 | this.ResumeLayout(false);
|
---|
| 152 |
|
---|
| 153 | }
|
---|
| 154 |
|
---|
| 155 | #endregion
|
---|
| 156 |
|
---|
| 157 | private System.Windows.Forms.CheckedListBox targetVariableList;
|
---|
| 158 | private System.Windows.Forms.CheckedListBox inputVariableList;
|
---|
| 159 | private System.Windows.Forms.Label targetVariablesLabel;
|
---|
| 160 | private System.Windows.Forms.Label inputVariablesLabel;
|
---|
[2153] | 161 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
[2258] | 162 | private System.Windows.Forms.Button setAllButton;
|
---|
[2290] | 163 | private System.Windows.Forms.CheckedListBox algorithmsListBox;
|
---|
| 164 | private System.Windows.Forms.Label algorithmsLabel;
|
---|
[2088] | 165 | }
|
---|
| 166 | }
|
---|