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();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // targetVariableList
|
---|
33 | //
|
---|
34 | this.targetVariableList.FormattingEnabled = true;
|
---|
35 | this.targetVariableList.Location = new System.Drawing.Point(3, 16);
|
---|
36 | this.targetVariableList.Name = "targetVariableList";
|
---|
37 | this.targetVariableList.Size = new System.Drawing.Size(171, 409);
|
---|
38 | this.targetVariableList.TabIndex = 0;
|
---|
39 | //
|
---|
40 | // inputVariableList
|
---|
41 | //
|
---|
42 | this.inputVariableList.FormattingEnabled = true;
|
---|
43 | this.inputVariableList.Location = new System.Drawing.Point(194, 16);
|
---|
44 | this.inputVariableList.Name = "inputVariableList";
|
---|
45 | this.inputVariableList.Size = new System.Drawing.Size(170, 409);
|
---|
46 | this.inputVariableList.TabIndex = 1;
|
---|
47 | //
|
---|
48 | // targetVariablesLabel
|
---|
49 | //
|
---|
50 | this.targetVariablesLabel.AutoSize = true;
|
---|
51 | this.targetVariablesLabel.Location = new System.Drawing.Point(3, 0);
|
---|
52 | this.targetVariablesLabel.Name = "targetVariablesLabel";
|
---|
53 | this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
|
---|
54 | this.targetVariablesLabel.TabIndex = 2;
|
---|
55 | this.targetVariablesLabel.Text = "Target variables:";
|
---|
56 | //
|
---|
57 | // inputVariablesLabel
|
---|
58 | //
|
---|
59 | this.inputVariablesLabel.AutoSize = true;
|
---|
60 | this.inputVariablesLabel.Location = new System.Drawing.Point(191, 0);
|
---|
61 | this.inputVariablesLabel.Name = "inputVariablesLabel";
|
---|
62 | this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
|
---|
63 | this.inputVariablesLabel.TabIndex = 3;
|
---|
64 | this.inputVariablesLabel.Text = "Input variables:";
|
---|
65 | //
|
---|
66 | // DispatcherView
|
---|
67 | //
|
---|
68 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
69 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
70 | this.Controls.Add(this.inputVariablesLabel);
|
---|
71 | this.Controls.Add(this.targetVariablesLabel);
|
---|
72 | this.Controls.Add(this.inputVariableList);
|
---|
73 | this.Controls.Add(this.targetVariableList);
|
---|
74 | this.Name = "DispatcherView";
|
---|
75 | this.Size = new System.Drawing.Size(417, 427);
|
---|
76 | this.ResumeLayout(false);
|
---|
77 | this.PerformLayout();
|
---|
78 |
|
---|
79 | }
|
---|
80 |
|
---|
81 | #endregion
|
---|
82 |
|
---|
83 | private System.Windows.Forms.CheckedListBox targetVariableList;
|
---|
84 | private System.Windows.Forms.CheckedListBox inputVariableList;
|
---|
85 | private System.Windows.Forms.Label targetVariablesLabel;
|
---|
86 | private System.Windows.Forms.Label inputVariablesLabel;
|
---|
87 | }
|
---|
88 | }
|
---|