1 | namespace 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 | this.dataGridView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView_MouseDoubleClick);
|
---|
42 | this.dataGridView.SelectionChanged += new System.EventHandler(this.dataGridView_SelectionChanged);
|
---|
43 | //
|
---|
44 | // TableResultsView
|
---|
45 | //
|
---|
46 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
47 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
48 | this.Controls.Add(this.dataGridView);
|
---|
49 | this.Name = "TableResultsView";
|
---|
50 | this.Size = new System.Drawing.Size(450, 459);
|
---|
51 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
52 | this.ResumeLayout(false);
|
---|
53 |
|
---|
54 | }
|
---|
55 |
|
---|
56 | #endregion
|
---|
57 |
|
---|
58 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
59 |
|
---|
60 | }
|
---|
61 | }
|
---|