math-suite/Source/MatrixCalculator/Forms/ImportCsvWindow.Designer.cs

455 lines
26 KiB
C#
Raw Normal View History

2018-02-05 23:24:46 +00:00
namespace MatrixCalculator
{
partial class ImportCsvWindow
{
/// <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.buttonAccept = new DynamicLink.Controls.MyButton();
this.buttonCancel = new DynamicLink.Controls.MyButton();
this.buttonEntire = new DynamicLink.Controls.MyButton();
this.labelSepChars = new System.Windows.Forms.Label();
this.checkSepComma = new System.Windows.Forms.CheckBox();
this.checkSepSemicolon = new System.Windows.Forms.CheckBox();
this.checkSepTab = new System.Windows.Forms.CheckBox();
this.checkSepSpace = new System.Windows.Forms.CheckBox();
this.checkSepOthers = new System.Windows.Forms.CheckBox();
this.inputSepOthers = new System.Windows.Forms.TextBox();
this.checkCombine = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBoxSelectRange = new DynamicLink.Controls.MyGroupBox();
this.dataGrid = new System.Windows.Forms.DataGridView();
this.groupBoxMatrixName = new DynamicLink.Controls.MyGroupBox();
this.inputName = new System.Windows.Forms.TextBox();
this.groupBoxRange = new DynamicLink.Controls.MyGroupBox();
this.labelEndColumn = new System.Windows.Forms.Label();
this.inputEndColumn = new System.Windows.Forms.NumericUpDown();
this.labelEndRow = new System.Windows.Forms.Label();
this.inputEndRow = new System.Windows.Forms.NumericUpDown();
this.labelStartColumn = new System.Windows.Forms.Label();
this.inputStartColumn = new System.Windows.Forms.NumericUpDown();
this.labelStartRow = new System.Windows.Forms.Label();
this.inputStartRow = new System.Windows.Forms.NumericUpDown();
this.groupBoxSeparators = new DynamicLink.Controls.MyGroupBox();
this.groupBoxSelectRange.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
this.groupBoxMatrixName.SuspendLayout();
this.groupBoxRange.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.inputEndColumn)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.inputEndRow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.inputStartColumn)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.inputStartRow)).BeginInit();
this.groupBoxSeparators.SuspendLayout();
this.SuspendLayout();
//
// buttonAccept
//
this.buttonAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonAccept.BackColor = System.Drawing.Color.Transparent;
this.buttonAccept.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonAccept.ForeColor = System.Drawing.Color.DarkGreen;
this.buttonAccept.Location = new System.Drawing.Point(426, 401);
this.buttonAccept.Name = "buttonAccept";
this.buttonAccept.Size = new System.Drawing.Size(75, 23);
this.buttonAccept.TabIndex = 5;
this.buttonAccept.Text = "Accept ";
this.buttonAccept.UseVisualStyleBackColor = false;
this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
//
// buttonCancel
//
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonCancel.BackColor = System.Drawing.Color.Transparent;
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(345, 401);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 4;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = false;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonEntire
//
this.buttonEntire.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonEntire.BackColor = System.Drawing.Color.Transparent;
this.buttonEntire.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonEntire.Location = new System.Drawing.Point(8, 401);
this.buttonEntire.Name = "buttonEntire";
this.buttonEntire.Size = new System.Drawing.Size(75, 23);
this.buttonEntire.TabIndex = 6;
this.buttonEntire.Text = "Entire grid";
this.buttonEntire.UseVisualStyleBackColor = false;
this.buttonEntire.Click += new System.EventHandler(this.buttonEntire_Click);
//
// labelSepChars
//
this.labelSepChars.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelSepChars.AutoSize = true;
this.labelSepChars.BackColor = System.Drawing.Color.Transparent;
this.labelSepChars.Location = new System.Drawing.Point(6, 28);
this.labelSepChars.Name = "labelSepChars";
this.labelSepChars.Size = new System.Drawing.Size(85, 13);
this.labelSepChars.TabIndex = 15;
this.labelSepChars.Text = "Separator chars:";
//
// checkSepComma
//
this.checkSepComma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkSepComma.AutoSize = true;
this.checkSepComma.BackColor = System.Drawing.Color.Transparent;
this.checkSepComma.Checked = true;
this.checkSepComma.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkSepComma.Location = new System.Drawing.Point(28, 69);
this.checkSepComma.Margin = new System.Windows.Forms.Padding(2);
this.checkSepComma.Name = "checkSepComma";
this.checkSepComma.Size = new System.Drawing.Size(61, 17);
this.checkSepComma.TabIndex = 16;
this.checkSepComma.Text = "Comma";
this.checkSepComma.UseVisualStyleBackColor = false;
this.checkSepComma.CheckedChanged += new System.EventHandler(this.checkSepComma_CheckedChanged);
//
// checkSepSemicolon
//
this.checkSepSemicolon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkSepSemicolon.AutoSize = true;
this.checkSepSemicolon.BackColor = System.Drawing.Color.Transparent;
this.checkSepSemicolon.Location = new System.Drawing.Point(28, 90);
this.checkSepSemicolon.Margin = new System.Windows.Forms.Padding(2);
this.checkSepSemicolon.Name = "checkSepSemicolon";
this.checkSepSemicolon.Size = new System.Drawing.Size(75, 17);
this.checkSepSemicolon.TabIndex = 17;
this.checkSepSemicolon.Text = "Semicolon";
this.checkSepSemicolon.UseVisualStyleBackColor = false;
this.checkSepSemicolon.CheckedChanged += new System.EventHandler(this.checkSepSemicolon_CheckedChanged);
//
// checkSepTab
//
this.checkSepTab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkSepTab.AutoSize = true;
this.checkSepTab.BackColor = System.Drawing.Color.Transparent;
this.checkSepTab.Location = new System.Drawing.Point(28, 48);
this.checkSepTab.Margin = new System.Windows.Forms.Padding(2);
this.checkSepTab.Name = "checkSepTab";
this.checkSepTab.Size = new System.Drawing.Size(45, 17);
this.checkSepTab.TabIndex = 18;
this.checkSepTab.Text = "Tab";
this.checkSepTab.UseVisualStyleBackColor = false;
this.checkSepTab.CheckedChanged += new System.EventHandler(this.checkSepTab_CheckedChanged);
//
// checkSepSpace
//
this.checkSepSpace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkSepSpace.AutoSize = true;
this.checkSepSpace.BackColor = System.Drawing.Color.Transparent;
this.checkSepSpace.Location = new System.Drawing.Point(28, 111);
this.checkSepSpace.Margin = new System.Windows.Forms.Padding(2);
this.checkSepSpace.Name = "checkSepSpace";
this.checkSepSpace.Size = new System.Drawing.Size(57, 17);
this.checkSepSpace.TabIndex = 19;
this.checkSepSpace.Text = "Space";
this.checkSepSpace.UseVisualStyleBackColor = false;
this.checkSepSpace.CheckedChanged += new System.EventHandler(this.checkSepSpace_CheckedChanged);
//
// checkSepOthers
//
this.checkSepOthers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkSepOthers.AutoSize = true;
this.checkSepOthers.BackColor = System.Drawing.Color.Transparent;
this.checkSepOthers.Location = new System.Drawing.Point(28, 132);
this.checkSepOthers.Margin = new System.Windows.Forms.Padding(2);
this.checkSepOthers.Name = "checkSepOthers";
this.checkSepOthers.Size = new System.Drawing.Size(60, 17);
this.checkSepOthers.TabIndex = 20;
this.checkSepOthers.Text = "Others:";
this.checkSepOthers.UseVisualStyleBackColor = false;
this.checkSepOthers.CheckedChanged += new System.EventHandler(this.checkSepOthers_CheckedChanged);
//
// inputSepOthers
//
this.inputSepOthers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.inputSepOthers.Location = new System.Drawing.Point(93, 130);
this.inputSepOthers.Name = "inputSepOthers";
this.inputSepOthers.Size = new System.Drawing.Size(59, 20);
this.inputSepOthers.TabIndex = 21;
this.inputSepOthers.TextChanged += new System.EventHandler(this.inputSepOthers_TextChanged);
//
// checkCombine
//
this.checkCombine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkCombine.AutoSize = true;
this.checkCombine.BackColor = System.Drawing.Color.Transparent;
this.checkCombine.Location = new System.Drawing.Point(9, 165);
this.checkCombine.Margin = new System.Windows.Forms.Padding(2);
this.checkCombine.Name = "checkCombine";
this.checkCombine.Size = new System.Drawing.Size(120, 17);
this.checkCombine.TabIndex = 22;
this.checkCombine.Text = "Combine characters";
this.checkCombine.UseVisualStyleBackColor = false;
this.checkCombine.CheckedChanged += new System.EventHandler(this.checkCombine_CheckedChanged);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(355, 36);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 24;
this.label1.Text = "Name:";
//
// groupBoxSelectRange
//
this.groupBoxSelectRange.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.groupBoxSelectRange.BackColor = System.Drawing.Color.Transparent;
this.groupBoxSelectRange.Controls.Add(this.dataGrid);
this.groupBoxSelectRange.Location = new System.Drawing.Point(12, 12);
this.groupBoxSelectRange.Name = "groupBoxSelectRange";
this.groupBoxSelectRange.Padding = new System.Windows.Forms.Padding(4, 9, 4, 4);
this.groupBoxSelectRange.Size = new System.Drawing.Size(326, 383);
this.groupBoxSelectRange.TabIndex = 25;
this.groupBoxSelectRange.TabStop = false;
this.groupBoxSelectRange.Text = "Matrix data";
//
// dataGrid
//
this.dataGrid.AllowUserToAddRows = false;
this.dataGrid.AllowUserToDeleteRows = false;
this.dataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGrid.Location = new System.Drawing.Point(4, 22);
this.dataGrid.Name = "dataGrid";
this.dataGrid.ReadOnly = true;
this.dataGrid.Size = new System.Drawing.Size(318, 357);
this.dataGrid.TabIndex = 1;
//
// groupBoxMatrixName
//
this.groupBoxMatrixName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxMatrixName.BackColor = System.Drawing.Color.Transparent;
this.groupBoxMatrixName.Controls.Add(this.inputName);
this.groupBoxMatrixName.Location = new System.Drawing.Point(344, 12);
this.groupBoxMatrixName.Name = "groupBoxMatrixName";
this.groupBoxMatrixName.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.groupBoxMatrixName.Size = new System.Drawing.Size(158, 49);
this.groupBoxMatrixName.TabIndex = 26;
this.groupBoxMatrixName.TabStop = false;
this.groupBoxMatrixName.Text = "Name";
//
// inputName
//
this.inputName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.inputName.Location = new System.Drawing.Point(6, 24);
this.inputName.Name = "inputName";
this.inputName.Size = new System.Drawing.Size(146, 20);
this.inputName.TabIndex = 24;
this.inputName.Text = "Imported ";
//
// groupBoxRange
//
this.groupBoxRange.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxRange.BackColor = System.Drawing.Color.Transparent;
this.groupBoxRange.Controls.Add(this.labelEndColumn);
this.groupBoxRange.Controls.Add(this.inputEndColumn);
this.groupBoxRange.Controls.Add(this.labelEndRow);
this.groupBoxRange.Controls.Add(this.inputEndRow);
this.groupBoxRange.Controls.Add(this.labelStartColumn);
this.groupBoxRange.Controls.Add(this.inputStartColumn);
this.groupBoxRange.Controls.Add(this.labelStartRow);
this.groupBoxRange.Controls.Add(this.inputStartRow);
this.groupBoxRange.Location = new System.Drawing.Point(344, 67);
this.groupBoxRange.Name = "groupBoxRange";
this.groupBoxRange.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.groupBoxRange.Size = new System.Drawing.Size(158, 132);
this.groupBoxRange.TabIndex = 27;
this.groupBoxRange.TabStop = false;
this.groupBoxRange.Text = "Range";
//
// labelEndColumn
//
this.labelEndColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelEndColumn.AutoSize = true;
this.labelEndColumn.BackColor = System.Drawing.Color.Transparent;
this.labelEndColumn.Location = new System.Drawing.Point(6, 104);
this.labelEndColumn.Name = "labelEndColumn";
this.labelEndColumn.Size = new System.Drawing.Size(66, 13);
this.labelEndColumn.TabIndex = 22;
this.labelEndColumn.Text = "End column:";
//
// inputEndColumn
//
this.inputEndColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.inputEndColumn.Location = new System.Drawing.Point(96, 102);
this.inputEndColumn.Name = "inputEndColumn";
this.inputEndColumn.Size = new System.Drawing.Size(56, 20);
this.inputEndColumn.TabIndex = 21;
//
// labelEndRow
//
this.labelEndRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelEndRow.AutoSize = true;
this.labelEndRow.BackColor = System.Drawing.Color.Transparent;
this.labelEndRow.Location = new System.Drawing.Point(6, 78);
this.labelEndRow.Name = "labelEndRow";
this.labelEndRow.Size = new System.Drawing.Size(49, 13);
this.labelEndRow.TabIndex = 20;
this.labelEndRow.Text = "End row:";
//
// inputEndRow
//
this.inputEndRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.inputEndRow.Location = new System.Drawing.Point(96, 76);
this.inputEndRow.Name = "inputEndRow";
this.inputEndRow.Size = new System.Drawing.Size(56, 20);
this.inputEndRow.TabIndex = 19;
//
// labelStartColumn
//
this.labelStartColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelStartColumn.AutoSize = true;
this.labelStartColumn.BackColor = System.Drawing.Color.Transparent;
this.labelStartColumn.Location = new System.Drawing.Point(6, 52);
this.labelStartColumn.Name = "labelStartColumn";
this.labelStartColumn.Size = new System.Drawing.Size(69, 13);
this.labelStartColumn.TabIndex = 18;
this.labelStartColumn.Text = "Start column:";
//
// inputStartColumn
//
this.inputStartColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.inputStartColumn.Location = new System.Drawing.Point(96, 50);
this.inputStartColumn.Name = "inputStartColumn";
this.inputStartColumn.Size = new System.Drawing.Size(56, 20);
this.inputStartColumn.TabIndex = 17;
//
// labelStartRow
//
this.labelStartRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelStartRow.AutoSize = true;
this.labelStartRow.BackColor = System.Drawing.Color.Transparent;
this.labelStartRow.Location = new System.Drawing.Point(6, 26);
this.labelStartRow.Name = "labelStartRow";
this.labelStartRow.Size = new System.Drawing.Size(52, 13);
this.labelStartRow.TabIndex = 16;
this.labelStartRow.Text = "Start row:";
//
// inputStartRow
//
this.inputStartRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.inputStartRow.Location = new System.Drawing.Point(96, 24);
this.inputStartRow.Name = "inputStartRow";
this.inputStartRow.Size = new System.Drawing.Size(56, 20);
this.inputStartRow.TabIndex = 15;
//
// groupBoxSeparators
//
this.groupBoxSeparators.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxSeparators.BackColor = System.Drawing.Color.Transparent;
this.groupBoxSeparators.Controls.Add(this.labelSepChars);
this.groupBoxSeparators.Controls.Add(this.checkSepComma);
this.groupBoxSeparators.Controls.Add(this.checkSepSemicolon);
this.groupBoxSeparators.Controls.Add(this.checkSepTab);
this.groupBoxSeparators.Controls.Add(this.checkSepSpace);
this.groupBoxSeparators.Controls.Add(this.checkCombine);
this.groupBoxSeparators.Controls.Add(this.checkSepOthers);
this.groupBoxSeparators.Controls.Add(this.inputSepOthers);
this.groupBoxSeparators.Location = new System.Drawing.Point(344, 206);
this.groupBoxSeparators.Name = "groupBoxSeparators";
this.groupBoxSeparators.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.groupBoxSeparators.Size = new System.Drawing.Size(158, 187);
this.groupBoxSeparators.TabIndex = 28;
this.groupBoxSeparators.TabStop = false;
this.groupBoxSeparators.Text = "Separator characters";
//
// ImportCsvWindow
//
this.AcceptButton = this.buttonAccept;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(513, 436);
this.Controls.Add(this.groupBoxSeparators);
this.Controls.Add(this.groupBoxRange);
this.Controls.Add(this.groupBoxMatrixName);
this.Controls.Add(this.groupBoxSelectRange);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonEntire);
this.Controls.Add(this.buttonAccept);
this.Controls.Add(this.buttonCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "ImportCsvWindow";
this.Text = "Import from CSV file...";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ImportCsvWindow_FormClosing);
this.groupBoxSelectRange.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
this.groupBoxMatrixName.ResumeLayout(false);
this.groupBoxMatrixName.PerformLayout();
this.groupBoxRange.ResumeLayout(false);
this.groupBoxRange.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.inputEndColumn)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.inputEndRow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.inputStartColumn)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.inputStartRow)).EndInit();
this.groupBoxSeparators.ResumeLayout(false);
this.groupBoxSeparators.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DynamicLink.Controls.MyButton buttonAccept;
private DynamicLink.Controls.MyButton buttonCancel;
private DynamicLink.Controls.MyButton buttonEntire;
private System.Windows.Forms.Label labelSepChars;
private System.Windows.Forms.CheckBox checkSepComma;
private System.Windows.Forms.CheckBox checkSepSemicolon;
private System.Windows.Forms.CheckBox checkSepTab;
private System.Windows.Forms.CheckBox checkSepSpace;
private System.Windows.Forms.CheckBox checkSepOthers;
private System.Windows.Forms.TextBox inputSepOthers;
private System.Windows.Forms.CheckBox checkCombine;
private System.Windows.Forms.Label label1;
private DynamicLink.Controls.MyGroupBox groupBoxSelectRange;
public System.Windows.Forms.DataGridView dataGrid;
private DynamicLink.Controls.MyGroupBox groupBoxMatrixName;
private System.Windows.Forms.TextBox inputName;
private DynamicLink.Controls.MyGroupBox groupBoxRange;
private System.Windows.Forms.Label labelEndColumn;
private System.Windows.Forms.NumericUpDown inputEndColumn;
private System.Windows.Forms.Label labelEndRow;
private System.Windows.Forms.NumericUpDown inputEndRow;
private System.Windows.Forms.Label labelStartColumn;
private System.Windows.Forms.NumericUpDown inputStartColumn;
private System.Windows.Forms.Label labelStartRow;
private System.Windows.Forms.NumericUpDown inputStartRow;
private DynamicLink.Controls.MyGroupBox groupBoxSeparators;
}
}