Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TestFunctions.Views/3.3/SingleObjectiveTestFunctionSolutionView.Designer.cs @ 3647

Last change on this file since 3647 was 3647, checked in by svonolfe, 14 years ago

Added anaylzers for the SingleObjectiveTestFunction problem (#999)

File size: 5.2 KB
Line 
1namespace HeuristicLab.Problems.TestFunctions.Views {
2  partial class SingleObjectiveTestFunctionSolutionView {
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 Windows Form 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.qualityView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
27      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
28      this.groupBox3 = new System.Windows.Forms.GroupBox();
29      this.groupBox4 = new System.Windows.Forms.GroupBox();
30      this.realVectorView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
31      this.splitContainer1.Panel1.SuspendLayout();
32      this.splitContainer1.Panel2.SuspendLayout();
33      this.splitContainer1.SuspendLayout();
34      this.groupBox3.SuspendLayout();
35      this.groupBox4.SuspendLayout();
36      this.SuspendLayout();
37      //
38      // qualityView
39      //
40      this.qualityView.Caption = null;
41      this.qualityView.Content = null;
42      this.qualityView.Dock = System.Windows.Forms.DockStyle.Fill;
43      this.qualityView.Location = new System.Drawing.Point(3, 16);
44      this.qualityView.Name = "qualityView";
45      this.qualityView.ReadOnly = false;
46      this.qualityView.Size = new System.Drawing.Size(386, 31);
47      this.qualityView.TabIndex = 1;
48      this.qualityView.ViewType = null;
49      //
50      // splitContainer1
51      //
52      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
53      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
54      this.splitContainer1.IsSplitterFixed = true;
55      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
56      this.splitContainer1.Name = "splitContainer1";
57      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
58      //
59      // splitContainer1.Panel1
60      //
61      this.splitContainer1.Panel1.Controls.Add(this.groupBox3);
62      this.splitContainer1.Panel1MinSize = 30;
63      //
64      // splitContainer1.Panel2
65      //
66      this.splitContainer1.Panel2.Controls.Add(this.groupBox4);
67      this.splitContainer1.Panel2MinSize = 30;
68      this.splitContainer1.Size = new System.Drawing.Size(392, 265);
69      this.splitContainer1.TabIndex = 7;
70      //
71      // groupBox3
72      //
73      this.groupBox3.Controls.Add(this.qualityView);
74      this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
75      this.groupBox3.Location = new System.Drawing.Point(0, 0);
76      this.groupBox3.Name = "groupBox3";
77      this.groupBox3.Size = new System.Drawing.Size(392, 50);
78      this.groupBox3.TabIndex = 6;
79      this.groupBox3.TabStop = false;
80      this.groupBox3.Text = "Quality";
81      //
82      // groupBox4
83      //
84      this.groupBox4.Controls.Add(this.realVectorView);
85      this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.groupBox4.Location = new System.Drawing.Point(0, 0);
87      this.groupBox4.Name = "groupBox4";
88      this.groupBox4.Size = new System.Drawing.Size(392, 211);
89      this.groupBox4.TabIndex = 6;
90      this.groupBox4.TabStop = false;
91      this.groupBox4.Text = "Real vector";
92      //
93      // realVectorView
94      //
95      this.realVectorView.Caption = null;
96      this.realVectorView.Content = null;
97      this.realVectorView.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.realVectorView.Location = new System.Drawing.Point(3, 16);
99      this.realVectorView.Name = "realVectorView";
100      this.realVectorView.ReadOnly = false;
101      this.realVectorView.Size = new System.Drawing.Size(386, 192);
102      this.realVectorView.TabIndex = 1;
103      this.realVectorView.ViewType = null;
104      //
105      // SingleObjectiveTestFunctionSolutionView
106      //
107      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
108      this.Controls.Add(this.splitContainer1);
109      this.Name = "SingleObjectiveTestFunctionSolutionView";
110      this.Size = new System.Drawing.Size(392, 265);
111      this.splitContainer1.Panel1.ResumeLayout(false);
112      this.splitContainer1.Panel2.ResumeLayout(false);
113      this.splitContainer1.ResumeLayout(false);
114      this.groupBox3.ResumeLayout(false);
115      this.groupBox4.ResumeLayout(false);
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    private System.Windows.Forms.SplitContainer splitContainer1;
123    private System.Windows.Forms.GroupBox groupBox4;
124    protected HeuristicLab.MainForm.WindowsForms.ViewHost qualityView;
125    private System.Windows.Forms.GroupBox groupBox3;
126    protected HeuristicLab.MainForm.WindowsForms.ViewHost realVectorView;
127
128
129
130  }
131}
Note: See TracBrowser for help on using the repository browser.