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