TableDlg.Designer.cs
namespace FitPolynom
{
partial class TableDlg
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.dataGridView = new System.Windows.Forms.DataGridView();
this.numericUpDown = new System.Windows.Forms.NumericUpDown();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.dataPage = new System.Windows.Forms.TabPage();
this.resultPage = new System.Windows.Forms.TabPage();
this.fitGridView = new System.Windows.Forms.DataGridView();
this.btnFit = new System.Windows.Forms.Button();
this.checkBoxAuto = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit();
this.tabControl1.SuspendLayout();
this.dataPage.SuspendLayout();
this.resultPage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.fitGridView)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Polynom Power";
//
// dataGridView
//
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView.Location = new System.Drawing.Point(3, 3);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowTemplate.Height = 28;
this.dataGridView.Size = new System.Drawing.Size(758, 365);
this.dataGridView.TabIndex = 2;
//
// numericUpDown
//
this.numericUpDown.Location = new System.Drawing.Point(135, 12);
this.numericUpDown.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.numericUpDown.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown.Name = "numericUpDown";
this.numericUpDown.Size = new System.Drawing.Size(120, 26);
this.numericUpDown.TabIndex = 3;
this.numericUpDown.Value = new decimal(new int[] {
3,
0,
0,
0});
//
// tabControl1
//
this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tabControl1.Controls.Add(this.dataPage);
this.tabControl1.Controls.Add(this.resultPage);
this.tabControl1.Location = new System.Drawing.Point(12, 44);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(772, 404);
this.tabControl1.TabIndex = 4;
//
// dataPage
//
this.dataPage.Controls.Add(this.dataGridView);
this.dataPage.Location = new System.Drawing.Point(4, 29);
this.dataPage.Name = "dataPage";
this.dataPage.Padding = new System.Windows.Forms.Padding(3);
this.dataPage.Size = new System.Drawing.Size(764, 371);
this.dataPage.TabIndex = 0;
this.dataPage.Text = "Data";
this.dataPage.UseVisualStyleBackColor = true;
//
// resultPage
//
this.resultPage.Controls.Add(this.fitGridView);
this.resultPage.Location = new System.Drawing.Point(4, 29);
this.resultPage.Name = "resultPage";
this.resultPage.Padding = new System.Windows.Forms.Padding(3);
this.resultPage.Size = new System.Drawing.Size(764, 371);
this.resultPage.TabIndex = 1;
this.resultPage.Text = "Results";
this.resultPage.UseVisualStyleBackColor = true;
//
// fitGridView
//
this.fitGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.fitGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.fitGridView.Location = new System.Drawing.Point(3, 3);
this.fitGridView.Name = "fitGridView";
this.fitGridView.RowTemplate.Height = 28;
this.fitGridView.Size = new System.Drawing.Size(758, 365);
this.fitGridView.TabIndex = 0;
//
// btnFit
//
this.btnFit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnFit.Location = new System.Drawing.Point(709, 12);
this.btnFit.Name = "btnFit";
this.btnFit.Size = new System.Drawing.Size(75, 34);
this.btnFit.TabIndex = 5;
this.btnFit.Text = "Fit";
this.btnFit.UseVisualStyleBackColor = true;
this.btnFit.Click += new System.EventHandler(this.btnFit_Click);
//
// checkBoxAuto
//
this.checkBoxAuto.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkBoxAuto.AutoSize = true;
this.checkBoxAuto.Location = new System.Drawing.Point(634, 18);
this.checkBoxAuto.Name = "checkBoxAuto";
this.checkBoxAuto.Size = new System.Drawing.Size(69, 24);
this.checkBoxAuto.TabIndex = 6;
this.checkBoxAuto.Text = "Auto";
this.checkBoxAuto.UseVisualStyleBackColor = true;
this.checkBoxAuto.CheckedChanged += new System.EventHandler(this.checkBoxAuto_CheckedChanged);
//
// TableDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(796, 460);
this.Controls.Add(this.checkBoxAuto);
this.Controls.Add(this.btnFit);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.numericUpDown);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TableDlg";
this.ShowIcon = false;
this.Text = "Polynom fitting";
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit();
this.tabControl1.ResumeLayout(false);
this.dataPage.ResumeLayout(false);
this.resultPage.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.fitGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridView dataGridView;
private System.Windows.Forms.NumericUpDown numericUpDown;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage dataPage;
private System.Windows.Forms.TabPage resultPage;
private System.Windows.Forms.DataGridView fitGridView;
private System.Windows.Forms.Button btnFit;
private System.Windows.Forms.CheckBox checkBoxAuto;
}
}