Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/NamedIntervalsView.Designer.cs @ 16544

Last change on this file since 16544 was 16544, checked in by chaider, 5 years ago

#2971

  • Added editorconfig
  • Added Getter for intervals in NamedIntervals class
  • Changed GridView to show starting values of dataset
File size: 3.2 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class NamedIntervalsView {
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 Component 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.dataGridView = new System.Windows.Forms.DataGridView();
27      this.groupBox1 = new System.Windows.Forms.GroupBox();
28      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
29      this.groupBox1.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // dataGridView
33      //
34      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
35            | System.Windows.Forms.AnchorStyles.Left)
36            | System.Windows.Forms.AnchorStyles.Right)));
37      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
38      this.dataGridView.Location = new System.Drawing.Point(6, 19);
39      this.dataGridView.Name = "dataGridView";
40      this.dataGridView.RowHeadersWidth = 120;
41      this.dataGridView.Size = new System.Drawing.Size(461, 378);
42      this.dataGridView.TabIndex = 0;
43      this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
44      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
45      this.dataGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellValueChanged);
46      //
47      // groupBox1
48      //
49      this.groupBox1.Controls.Add(this.dataGridView);
50      this.groupBox1.Location = new System.Drawing.Point(6, 4);
51      this.groupBox1.Name = "groupBox1";
52      this.groupBox1.Size = new System.Drawing.Size(473, 403);
53      this.groupBox1.TabIndex = 1;
54      this.groupBox1.TabStop = false;
55      this.groupBox1.Text = "Interval Boundaries";
56      //
57      // NamedIntervalsView
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.Controls.Add(this.groupBox1);
62      this.Name = "NamedIntervalsView";
63      this.Size = new System.Drawing.Size(482, 410);
64      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
65      this.groupBox1.ResumeLayout(false);
66      this.ResumeLayout(false);
67
68    }
69
70    #endregion
71
72    protected System.Windows.Forms.DataGridView dataGridView;
73    private System.Windows.Forms.GroupBox groupBox1;
74  }
75}
Note: See TracBrowser for help on using the repository browser.