Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1967 implemented utility app to draw random samples using a GP prior

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