Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherView.Designer.cs @ 2192

Last change on this file since 2192 was 2153, checked in by gkronber, 15 years ago

Changed CEDMA dispatcher to allow different input variable sets for each target variable. #676 (Cockpit for the CEDMA Server to control algorithm settings)

File size: 5.7 KB
Line 
1namespace 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();
30      this.splitContainer = new System.Windows.Forms.SplitContainer();
31      this.splitContainer.Panel1.SuspendLayout();
32      this.splitContainer.Panel2.SuspendLayout();
33      this.splitContainer.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // targetVariableList
37      //
38      this.targetVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39                  | System.Windows.Forms.AnchorStyles.Left)
40                  | System.Windows.Forms.AnchorStyles.Right)));
41      this.targetVariableList.FormattingEnabled = true;
42      this.targetVariableList.HorizontalScrollbar = true;
43      this.targetVariableList.Location = new System.Drawing.Point(6, 16);
44      this.targetVariableList.Name = "targetVariableList";
45      this.targetVariableList.Size = new System.Drawing.Size(193, 454);
46      this.targetVariableList.TabIndex = 0;
47      this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
48      this.targetVariableList.SelectedValueChanged += new System.EventHandler(this.targetVariableList_SelectedValueChanged);
49      //
50      // inputVariableList
51      //
52      this.inputVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
53                  | System.Windows.Forms.AnchorStyles.Left)
54                  | System.Windows.Forms.AnchorStyles.Right)));
55      this.inputVariableList.FormattingEnabled = true;
56      this.inputVariableList.HorizontalScrollbar = true;
57      this.inputVariableList.Location = new System.Drawing.Point(2, 16);
58      this.inputVariableList.Name = "inputVariableList";
59      this.inputVariableList.Size = new System.Drawing.Size(221, 454);
60      this.inputVariableList.TabIndex = 1;
61      this.inputVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputVariableList_ItemCheck);
62      //
63      // targetVariablesLabel
64      //
65      this.targetVariablesLabel.AutoSize = true;
66      this.targetVariablesLabel.Location = new System.Drawing.Point(3, 0);
67      this.targetVariablesLabel.Name = "targetVariablesLabel";
68      this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
69      this.targetVariablesLabel.TabIndex = 2;
70      this.targetVariablesLabel.Text = "Target variables:";
71      //
72      // inputVariablesLabel
73      //
74      this.inputVariablesLabel.AutoSize = true;
75      this.inputVariablesLabel.Location = new System.Drawing.Point(3, 0);
76      this.inputVariablesLabel.Name = "inputVariablesLabel";
77      this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
78      this.inputVariablesLabel.TabIndex = 3;
79      this.inputVariablesLabel.Text = "Input variables:";
80      //
81      // splitContainer
82      //
83      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
84      this.splitContainer.Location = new System.Drawing.Point(0, 0);
85      this.splitContainer.Name = "splitContainer";
86      //
87      // splitContainer.Panel1
88      //
89      this.splitContainer.Panel1.Controls.Add(this.targetVariablesLabel);
90      this.splitContainer.Panel1.Controls.Add(this.targetVariableList);
91      //
92      // splitContainer.Panel2
93      //
94      this.splitContainer.Panel2.Controls.Add(this.inputVariablesLabel);
95      this.splitContainer.Panel2.Controls.Add(this.inputVariableList);
96      this.splitContainer.Size = new System.Drawing.Size(429, 482);
97      this.splitContainer.SplitterDistance = 202;
98      this.splitContainer.SplitterWidth = 1;
99      this.splitContainer.TabIndex = 4;
100      //
101      // DispatcherView
102      //
103      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105      this.Controls.Add(this.splitContainer);
106      this.Name = "DispatcherView";
107      this.Size = new System.Drawing.Size(429, 482);
108      this.splitContainer.Panel1.ResumeLayout(false);
109      this.splitContainer.Panel1.PerformLayout();
110      this.splitContainer.Panel2.ResumeLayout(false);
111      this.splitContainer.Panel2.PerformLayout();
112      this.splitContainer.ResumeLayout(false);
113      this.ResumeLayout(false);
114
115    }
116
117    #endregion
118
119    private System.Windows.Forms.CheckedListBox targetVariableList;
120    private System.Windows.Forms.CheckedListBox inputVariableList;
121    private System.Windows.Forms.Label targetVariablesLabel;
122    private System.Windows.Forms.Label inputVariablesLabel;
123    private System.Windows.Forms.SplitContainer splitContainer;
124  }
125}
Note: See TracBrowser for help on using the repository browser.