Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAnalysis/ManualScalingControl.Designer.cs @ 312

Last change on this file since 312 was 312, checked in by gkronber, 16 years ago

added possibility to manually scale data. (ticket #167)

File size: 3.7 KB
Line 
1namespace HeuristicLab.DataAnalysis {
2  partial class ManualScalingControl {
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.okButton = new System.Windows.Forms.Button();
28      this.cancelButton = new System.Windows.Forms.Button();
29      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
30      this.SuspendLayout();
31      //
32      // dataGridView
33      //
34      this.dataGridView.AllowUserToAddRows = false;
35      this.dataGridView.AllowUserToDeleteRows = false;
36      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37                  | System.Windows.Forms.AnchorStyles.Left)
38                  | System.Windows.Forms.AnchorStyles.Right)));
39      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
40      this.dataGridView.Location = new System.Drawing.Point(12, 12);
41      this.dataGridView.Name = "dataGridView";
42      this.dataGridView.ReadOnly = true;
43      this.dataGridView.Size = new System.Drawing.Size(268, 213);
44      this.dataGridView.TabIndex = 0;
45      this.dataGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellValueChanged);
46      this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
47      //
48      // okButton
49      //
50      this.okButton.Location = new System.Drawing.Point(12, 231);
51      this.okButton.Name = "okButton";
52      this.okButton.Size = new System.Drawing.Size(75, 23);
53      this.okButton.TabIndex = 1;
54      this.okButton.Text = "okButton";
55      this.okButton.UseVisualStyleBackColor = true;
56      this.okButton.Click += new System.EventHandler(this.button_Click);
57      //
58      // cancelButton
59      //
60      this.cancelButton.Location = new System.Drawing.Point(93, 231);
61      this.cancelButton.Name = "cancelButton";
62      this.cancelButton.Size = new System.Drawing.Size(75, 23);
63      this.cancelButton.TabIndex = 2;
64      this.cancelButton.Text = "cancelButton";
65      this.cancelButton.UseVisualStyleBackColor = true;
66      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
67      //
68      // ManualScalingControl
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.ClientSize = new System.Drawing.Size(292, 266);
73      this.Controls.Add(this.cancelButton);
74      this.Controls.Add(this.okButton);
75      this.Controls.Add(this.dataGridView);
76      this.Name = "ManualScalingControl";
77      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
78      this.ResumeLayout(false);
79
80    }
81
82    #endregion
83
84    private System.Windows.Forms.DataGridView dataGridView;
85    private System.Windows.Forms.Button okButton;
86    private System.Windows.Forms.Button cancelButton;
87  }
88}
Note: See TracBrowser for help on using the repository browser.