Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/TableResultsView.Designer.cs @ 1106

Last change on this file since 1106 was 1106, checked in by gkronber, 15 years ago

worked on presentation layer for CEDMA. Added a results view that displays data in a simple DataGrid. (#419)

File size: 2.1 KB
Line 
1namespace HeuristicLab.CEDMA.Core {
2  partial class TableResultsView {
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      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
28      this.SuspendLayout();
29      //
30      // dataGridView
31      //
32      this.dataGridView.AllowUserToAddRows = false;
33      this.dataGridView.AllowUserToDeleteRows = false;
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(0, 0);
37      this.dataGridView.Name = "dataGridView";
38      this.dataGridView.ReadOnly = true;
39      this.dataGridView.Size = new System.Drawing.Size(450, 459);
40      this.dataGridView.TabIndex = 0;
41      //
42      // TableResultsView
43      //
44      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
45      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
46      this.Controls.Add(this.dataGridView);
47      this.Name = "TableResultsView";
48      this.Size = new System.Drawing.Size(450, 459);
49      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
50      this.ResumeLayout(false);
51
52    }
53
54    #endregion
55
56    private System.Windows.Forms.DataGridView dataGridView;
57
58  }
59}
Note: See TracBrowser for help on using the repository browser.