Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.OneMax.Views/3.3/OnemaxSolutionView.Designer.cs @ 3645

Last change on this file since 3645 was 3645, checked in by svonolfe, 15 years ago

Added view for a OneMax solution (#916)

File size: 5.6 KB
Line 
1namespace HeuristicLab.Problems.OneMax.Views {
2  partial class OneMaxSolutionView {
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.binaryVectorView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
30      this.groupBox4 = new System.Windows.Forms.GroupBox();
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(188, 30);
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      // qualityView
83      //
84      this.qualityView.Caption = null;
85      this.qualityView.Content = null;
86      this.qualityView.Dock = System.Windows.Forms.DockStyle.Fill;
87      this.qualityView.Location = new System.Drawing.Point(3, 16);
88      this.qualityView.Name = "qualityView";
89      this.qualityView.ReadOnly = false;
90      this.qualityView.Size = new System.Drawing.Size(386, 31);
91      this.qualityView.TabIndex = 1;
92      this.qualityView.ViewType = null;
93      //
94      // groupBox4
95      //
96      this.groupBox4.Controls.Add(this.binaryVectorView);
97      this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.groupBox4.Location = new System.Drawing.Point(0, 0);
99      this.groupBox4.Name = "groupBox4";
100      this.groupBox4.Size = new System.Drawing.Size(392, 211);
101      this.groupBox4.TabIndex = 6;
102      this.groupBox4.TabStop = false;
103      this.groupBox4.Text = "Binary vector";
104      //
105      // binaryVectorView
106      //
107      this.binaryVectorView.Caption = null;
108      this.binaryVectorView.Content = null;
109      this.binaryVectorView.Dock = System.Windows.Forms.DockStyle.Fill;
110      this.binaryVectorView.Location = new System.Drawing.Point(3, 16);
111      this.binaryVectorView.Name = "binaryVectorView";
112      this.binaryVectorView.ReadOnly = false;
113      this.binaryVectorView.Size = new System.Drawing.Size(386, 192);
114      this.binaryVectorView.TabIndex = 1;
115      this.binaryVectorView.ViewType = null;
116      //
117      // OneMaxSolutionView
118      //
119      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
120      this.Controls.Add(this.splitContainer1);
121      this.Name = "OneMaxSolutionView";
122      this.Size = new System.Drawing.Size(392, 265);
123      this.splitContainer1.Panel1.ResumeLayout(false);
124      this.splitContainer1.Panel2.ResumeLayout(false);
125      this.splitContainer1.ResumeLayout(false);
126      this.groupBox3.ResumeLayout(false);
127      this.groupBox4.ResumeLayout(false);
128      this.ResumeLayout(false);
129
130    }
131
132    #endregion
133
134    private System.Windows.Forms.SplitContainer splitContainer1;
135    private System.Windows.Forms.GroupBox groupBox4;
136    protected HeuristicLab.MainForm.WindowsForms.ViewHost qualityView;
137    private System.Windows.Forms.GroupBox groupBox3;
138    protected HeuristicLab.MainForm.WindowsForms.ViewHost binaryVectorView;
139
140
141
142  }
143}
Note: See TracBrowser for help on using the repository browser.