Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo/Form1.Designer.cs @ 9338

Last change on this file since 9338 was 9338, checked in by gkronber, 11 years ago

#1967: minor adaptations necessary for the EuroCAST presentation

File size: 5.9 KB
Line 
1namespace GaussianProcessDemo {
2  partial class Form1 {
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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
28      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
29      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
30      System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
31      this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
32      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
33      this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
34      this.dataButton = new System.Windows.Forms.Button();
35      ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
36      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
37      this.splitContainer1.Panel1.SuspendLayout();
38      this.splitContainer1.Panel2.SuspendLayout();
39      this.splitContainer1.SuspendLayout();
40      this.flowLayoutPanel1.SuspendLayout();
41      this.SuspendLayout();
42      //
43      // chart1
44      //
45      chartArea1.Name = "ChartArea1";
46      this.chart1.ChartAreas.Add(chartArea1);
47      this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
48      legend1.Name = "Legend1";
49      this.chart1.Legends.Add(legend1);
50      this.chart1.Location = new System.Drawing.Point(0, 0);
51      this.chart1.Name = "chart1";
52      series1.ChartArea = "ChartArea1";
53      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
54      series1.Legend = "Legend1";
55      series1.Name = "GP samples";
56      series2.ChartArea = "ChartArea1";
57      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
58      series2.Legend = "Legend1";
59      series2.Name = "GP (mean)";
60      series3.ChartArea = "ChartArea1";
61      series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
62      series3.Legend = "Legend1";
63      series3.Name = "GP SEiso (mean)";
64      this.chart1.Series.Add(series1);
65      this.chart1.Series.Add(series2);
66      this.chart1.Series.Add(series3);
67      this.chart1.Size = new System.Drawing.Size(735, 383);
68      this.chart1.TabIndex = 0;
69      this.chart1.Text = "chart1";
70      //
71      // splitContainer1
72      //
73      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
74      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
75      this.splitContainer1.Name = "splitContainer1";
76      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
77      //
78      // splitContainer1.Panel1
79      //
80      this.splitContainer1.Panel1.Controls.Add(this.chart1);
81      //
82      // splitContainer1.Panel2
83      //
84      this.splitContainer1.Panel2.Controls.Add(this.flowLayoutPanel1);
85      this.splitContainer1.Size = new System.Drawing.Size(735, 513);
86      this.splitContainer1.SplitterDistance = 383;
87      this.splitContainer1.TabIndex = 1;
88      //
89      // flowLayoutPanel1
90      //
91      this.flowLayoutPanel1.Controls.Add(this.dataButton);
92      this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
93      this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
94      this.flowLayoutPanel1.Name = "flowLayoutPanel1";
95      this.flowLayoutPanel1.Size = new System.Drawing.Size(735, 126);
96      this.flowLayoutPanel1.TabIndex = 0;
97      //
98      // dataButton
99      //
100      this.dataButton.Location = new System.Drawing.Point(3, 3);
101      this.dataButton.Name = "dataButton";
102      this.dataButton.Size = new System.Drawing.Size(75, 23);
103      this.dataButton.TabIndex = 0;
104      this.dataButton.Text = "Data...";
105      this.dataButton.UseVisualStyleBackColor = true;
106      this.dataButton.Click += new System.EventHandler(this.dataButton_Click);
107      //
108      // Form1
109      //
110      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112      this.ClientSize = new System.Drawing.Size(735, 513);
113      this.Controls.Add(this.splitContainer1);
114      this.Name = "Form1";
115      this.Text = "Form1";
116      ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
117      this.splitContainer1.Panel1.ResumeLayout(false);
118      this.splitContainer1.Panel2.ResumeLayout(false);
119      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
120      this.splitContainer1.ResumeLayout(false);
121      this.flowLayoutPanel1.ResumeLayout(false);
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127
128    private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
129    private System.Windows.Forms.SplitContainer splitContainer1;
130    private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
131    private System.Windows.Forms.Button dataButton;
132  }
133}
134
Note: See TracBrowser for help on using the repository browser.