Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2971

  • Check if treeNode exists for specific intervals in SimplifierView
  • GridView fills space in NamedIntevalsView
File size: 3.1 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.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
35      this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
36      this.dataGridView.Location = new System.Drawing.Point(3, 16);
37      this.dataGridView.Name = "dataGridView";
38      this.dataGridView.RowHeadersWidth = 120;
39      this.dataGridView.Size = new System.Drawing.Size(476, 391);
40      this.dataGridView.TabIndex = 0;
41      this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
42      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
43      this.dataGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellValueChanged);
44      //
45      // groupBox1
46      //
47      this.groupBox1.Controls.Add(this.dataGridView);
48      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
49      this.groupBox1.Location = new System.Drawing.Point(0, 0);
50      this.groupBox1.Name = "groupBox1";
51      this.groupBox1.Size = new System.Drawing.Size(482, 410);
52      this.groupBox1.TabIndex = 1;
53      this.groupBox1.TabStop = false;
54      this.groupBox1.Text = "Interval Boundaries";
55      //
56      // NamedIntervalsView
57      //
58      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
59      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
60      this.Controls.Add(this.groupBox1);
61      this.Name = "NamedIntervalsView";
62      this.Size = new System.Drawing.Size(482, 410);
63      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
64      this.groupBox1.ResumeLayout(false);
65      this.ResumeLayout(false);
66
67    }
68
69    #endregion
70
71    protected System.Windows.Forms.DataGridView dataGridView;
72    private System.Windows.Forms.GroupBox groupBox1;
73  }
74}
Note: See TracBrowser for help on using the repository browser.