Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MathNetNumerics-Exploration-2789/Testing/Form.Designer.cs @ 15589

Last change on this file since 15589 was 15348, checked in by gkronber, 7 years ago

#2789 worked on NLR with constraints

File size: 2.4 KB
Line 
1namespace Testing {
2  partial class TestForm {
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.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
28      this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
29      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
30      this.SuspendLayout();
31      //
32      // chart
33      //
34      chartArea1.Name = "ChartArea1";
35      this.chart.ChartAreas.Add(chartArea1);
36      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
37      this.chart.Location = new System.Drawing.Point(0, 0);
38      this.chart.Name = "chart";
39      series1.ChartArea = "ChartArea1";
40      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
41      series1.Name = "Series1";
42      this.chart.Series.Add(series1);
43      this.chart.Size = new System.Drawing.Size(284, 261);
44      this.chart.TabIndex = 0;
45      this.chart.Text = "chart";
46      //
47      // TestForm
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51      this.ClientSize = new System.Drawing.Size(284, 261);
52      this.Controls.Add(this.chart);
53      this.Name = "TestForm";
54      this.Text = "Form";
55      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
56      this.ResumeLayout(false);
57
58    }
59
60    #endregion
61
62    private System.Windows.Forms.DataVisualization.Charting.Chart chart;
63  }
64}
Note: See TracBrowser for help on using the repository browser.