namespace MatrixCalculator { partial class Editor { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.dataEditorContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.contextMenuCut = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuCopy = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuPaste = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.contextMenuClear = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuClearAll = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.contextMenuInsertRow = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuInsertCol = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuDelRow = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuDelColumn = new System.Windows.Forms.ToolStripMenuItem(); this.groupSize = new DynamicLink.Controls.MyGroupBox(); this.buttonResizeReset = new DynamicLink.Controls.MyButton(); this.labelWarning = new System.Windows.Forms.Label(); this.buttonResizeApply = new DynamicLink.Controls.MyButton(); this.labelColumns = new System.Windows.Forms.Label(); this.labelRows = new System.Windows.Forms.Label(); this.inputColumns = new System.Windows.Forms.NumericUpDown(); this.inputRows = new System.Windows.Forms.NumericUpDown(); this.groupInfo = new DynamicLink.Controls.MyGroupBox(); this.inputDescription = new System.Windows.Forms.TextBox(); this.inputName = new System.Windows.Forms.TextBox(); this.labelDescription = new System.Windows.Forms.Label(); this.labelName = new System.Windows.Forms.Label(); this.buttonAccept = new DynamicLink.Controls.MyButton(); this.buttonCancel = new DynamicLink.Controls.MyButton(); this.groupBoxMatrixData = new DynamicLink.Controls.MyGroupBox(); this.dataEditor = new System.Windows.Forms.DataGridView(); this.dataEditorContextMenu.SuspendLayout(); this.groupSize.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.inputColumns)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.inputRows)).BeginInit(); this.groupInfo.SuspendLayout(); this.groupBoxMatrixData.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataEditor)).BeginInit(); this.SuspendLayout(); // // dataEditorContextMenu // this.dataEditorContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.contextMenuCut, this.contextMenuCopy, this.contextMenuPaste, this.toolStripSeparator1, this.contextMenuClear, this.contextMenuClearAll, this.toolStripSeparator2, this.contextMenuInsertRow, this.contextMenuInsertCol, this.contextMenuDelRow, this.contextMenuDelColumn}); this.dataEditorContextMenu.Name = "dataEditorContextMenu"; this.dataEditorContextMenu.Size = new System.Drawing.Size(226, 214); // // contextMenuCut // this.contextMenuCut.Name = "contextMenuCut"; this.contextMenuCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); this.contextMenuCut.Size = new System.Drawing.Size(225, 22); this.contextMenuCut.Text = "Cu&t"; this.contextMenuCut.Click += new System.EventHandler(this.contextMenuCut_Click); // // contextMenuCopy // this.contextMenuCopy.Name = "contextMenuCopy"; this.contextMenuCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.contextMenuCopy.Size = new System.Drawing.Size(225, 22); this.contextMenuCopy.Text = "&Copy"; this.contextMenuCopy.Click += new System.EventHandler(this.contextMenuCopy_Click); // // contextMenuPaste // this.contextMenuPaste.Name = "contextMenuPaste"; this.contextMenuPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.contextMenuPaste.Size = new System.Drawing.Size(225, 22); this.contextMenuPaste.Text = "&Paste"; this.contextMenuPaste.Click += new System.EventHandler(this.contextMenuPaste_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(222, 6); // // contextMenuClear // this.contextMenuClear.Name = "contextMenuClear"; this.contextMenuClear.ShortcutKeys = System.Windows.Forms.Keys.Delete; this.contextMenuClear.Size = new System.Drawing.Size(225, 22); this.contextMenuClear.Text = "&Clear selected"; this.contextMenuClear.Click += new System.EventHandler(this.contextMenuClear_Click); // // contextMenuClearAll // this.contextMenuClearAll.Name = "contextMenuClearAll"; this.contextMenuClearAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.Delete))); this.contextMenuClearAll.Size = new System.Drawing.Size(225, 22); this.contextMenuClearAll.Text = "Clear &all"; this.contextMenuClearAll.Click += new System.EventHandler(this.contextMenuClearAll_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(222, 6); // // contextMenuInsertRow // this.contextMenuInsertRow.Name = "contextMenuInsertRow"; this.contextMenuInsertRow.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) | System.Windows.Forms.Keys.R))); this.contextMenuInsertRow.Size = new System.Drawing.Size(225, 22); this.contextMenuInsertRow.Text = "Insert row"; this.contextMenuInsertRow.Click += new System.EventHandler(this.contextMenuInsertRow_Click); // // contextMenuInsertCol // this.contextMenuInsertCol.Name = "contextMenuInsertCol"; this.contextMenuInsertCol.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) | System.Windows.Forms.Keys.C))); this.contextMenuInsertCol.Size = new System.Drawing.Size(225, 22); this.contextMenuInsertCol.Text = "Insert column"; this.contextMenuInsertCol.Click += new System.EventHandler(this.contextMenuInsertCol_Click); // // contextMenuDelRow // this.contextMenuDelRow.Name = "contextMenuDelRow"; this.contextMenuDelRow.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.R))); this.contextMenuDelRow.Size = new System.Drawing.Size(225, 22); this.contextMenuDelRow.Text = "Delete row"; this.contextMenuDelRow.Click += new System.EventHandler(this.contextMenuDelRow_Click); // // contextMenuDelColumn // this.contextMenuDelColumn.Name = "contextMenuDelColumn"; this.contextMenuDelColumn.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.C))); this.contextMenuDelColumn.Size = new System.Drawing.Size(225, 22); this.contextMenuDelColumn.Text = "Delete column"; this.contextMenuDelColumn.Click += new System.EventHandler(this.contextMenuDelColumn_Click); // // groupSize // this.groupSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.groupSize.BackColor = System.Drawing.Color.Transparent; this.groupSize.Controls.Add(this.buttonResizeReset); this.groupSize.Controls.Add(this.labelWarning); this.groupSize.Controls.Add(this.buttonResizeApply); this.groupSize.Controls.Add(this.labelColumns); this.groupSize.Controls.Add(this.labelRows); this.groupSize.Controls.Add(this.inputColumns); this.groupSize.Controls.Add(this.inputRows); this.groupSize.Location = new System.Drawing.Point(382, 135); this.groupSize.Name = "groupSize"; this.groupSize.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3); this.groupSize.Size = new System.Drawing.Size(192, 153); this.groupSize.TabIndex = 1; this.groupSize.TabStop = false; this.groupSize.Text = "Matrix size:"; // // buttonResizeReset // this.buttonResizeReset.BackColor = System.Drawing.Color.Transparent; this.buttonResizeReset.Location = new System.Drawing.Point(6, 124); this.buttonResizeReset.Name = "buttonResizeReset"; this.buttonResizeReset.Size = new System.Drawing.Size(87, 23); this.buttonResizeReset.TabIndex = 6; this.buttonResizeReset.Text = "Reset"; this.buttonResizeReset.UseVisualStyleBackColor = false; this.buttonResizeReset.Click += new System.EventHandler(this.buttonResizeReset_Click); // // labelWarning // this.labelWarning.Location = new System.Drawing.Point(6, 87); this.labelWarning.Name = "labelWarning"; this.labelWarning.Size = new System.Drawing.Size(180, 27); this.labelWarning.TabIndex = 5; this.labelWarning.Text = "Warning: removing rows or columns will delete the data contained."; // // buttonResizeApply // this.buttonResizeApply.BackColor = System.Drawing.Color.Transparent; this.buttonResizeApply.Location = new System.Drawing.Point(99, 124); this.buttonResizeApply.Name = "buttonResizeApply"; this.buttonResizeApply.Size = new System.Drawing.Size(87, 23); this.buttonResizeApply.TabIndex = 4; this.buttonResizeApply.Text = "Apply"; this.buttonResizeApply.UseVisualStyleBackColor = false; this.buttonResizeApply.Click += new System.EventHandler(this.buttonResizeApply_Click); // // labelColumns // this.labelColumns.AutoSize = true; this.labelColumns.Location = new System.Drawing.Point(6, 57); this.labelColumns.Name = "labelColumns"; this.labelColumns.Size = new System.Drawing.Size(50, 13); this.labelColumns.TabIndex = 3; this.labelColumns.Text = "Columns:"; // // labelRows // this.labelRows.AutoSize = true; this.labelRows.Location = new System.Drawing.Point(6, 31); this.labelRows.Name = "labelRows"; this.labelRows.Size = new System.Drawing.Size(37, 13); this.labelRows.TabIndex = 2; this.labelRows.Text = "Rows:"; // // inputColumns // this.inputColumns.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.inputColumns.Location = new System.Drawing.Point(90, 55); this.inputColumns.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.inputColumns.Name = "inputColumns"; this.inputColumns.Size = new System.Drawing.Size(94, 20); this.inputColumns.TabIndex = 1; this.inputColumns.Value = new decimal(new int[] { 1, 0, 0, 0}); // // inputRows // this.inputRows.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.inputRows.Location = new System.Drawing.Point(90, 29); this.inputRows.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.inputRows.Name = "inputRows"; this.inputRows.Size = new System.Drawing.Size(94, 20); this.inputRows.TabIndex = 0; this.inputRows.Value = new decimal(new int[] { 1, 0, 0, 0}); // // groupInfo // this.groupInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.groupInfo.BackColor = System.Drawing.Color.Transparent; this.groupInfo.Controls.Add(this.inputDescription); this.groupInfo.Controls.Add(this.inputName); this.groupInfo.Controls.Add(this.labelDescription); this.groupInfo.Controls.Add(this.labelName); this.groupInfo.Location = new System.Drawing.Point(382, 13); this.groupInfo.Name = "groupInfo"; this.groupInfo.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3); this.groupInfo.Size = new System.Drawing.Size(192, 116); this.groupInfo.TabIndex = 2; this.groupInfo.TabStop = false; this.groupInfo.Text = "Matrix info:"; // // inputDescription // this.inputDescription.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.inputDescription.Location = new System.Drawing.Point(6, 67); this.inputDescription.Multiline = true; this.inputDescription.Name = "inputDescription"; this.inputDescription.Size = new System.Drawing.Size(178, 43); this.inputDescription.TabIndex = 7; // // 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(50, 22); this.inputName.Name = "inputName"; this.inputName.Size = new System.Drawing.Size(134, 20); this.inputName.TabIndex = 6; // // labelDescription // this.labelDescription.AutoSize = true; this.labelDescription.Location = new System.Drawing.Point(6, 51); this.labelDescription.Name = "labelDescription"; this.labelDescription.Size = new System.Drawing.Size(63, 13); this.labelDescription.TabIndex = 5; this.labelDescription.Text = "Description:"; // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(6, 25); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(38, 13); this.labelName.TabIndex = 4; this.labelName.Text = "Name:"; // // 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(490, 327); this.buttonAccept.Name = "buttonAccept"; this.buttonAccept.Size = new System.Drawing.Size(84, 29); this.buttonAccept.TabIndex = 8; 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(400, 327); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(84, 29); this.buttonCancel.TabIndex = 7; this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = false; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // groupBoxMatrixData // this.groupBoxMatrixData.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.groupBoxMatrixData.BackColor = System.Drawing.Color.Transparent; this.groupBoxMatrixData.Controls.Add(this.dataEditor); this.groupBoxMatrixData.Location = new System.Drawing.Point(12, 13); this.groupBoxMatrixData.Name = "groupBoxMatrixData"; this.groupBoxMatrixData.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3); this.groupBoxMatrixData.Size = new System.Drawing.Size(364, 343); this.groupBoxMatrixData.TabIndex = 9; this.groupBoxMatrixData.TabStop = false; this.groupBoxMatrixData.Text = "Matrix data"; // // dataEditor // this.dataEditor.AllowUserToAddRows = false; this.dataEditor.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.dataEditor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataEditor.ContextMenuStrip = this.dataEditorContextMenu; this.dataEditor.Location = new System.Drawing.Point(3, 21); this.dataEditor.Name = "dataEditor"; this.dataEditor.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders; this.dataEditor.Size = new System.Drawing.Size(358, 319); this.dataEditor.TabIndex = 1; this.dataEditor.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataEditor_CellMouseDown); // // Editor // 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(586, 368); this.Controls.Add(this.groupBoxMatrixData); this.Controls.Add(this.buttonAccept); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.groupInfo); this.Controls.Add(this.groupSize); this.HelpButton = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Editor"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Editor"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing); this.dataEditorContextMenu.ResumeLayout(false); this.groupSize.ResumeLayout(false); this.groupSize.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.inputColumns)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.inputRows)).EndInit(); this.groupInfo.ResumeLayout(false); this.groupInfo.PerformLayout(); this.groupBoxMatrixData.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataEditor)).EndInit(); this.ResumeLayout(false); } #endregion private DynamicLink.Controls.MyGroupBox groupSize; private DynamicLink.Controls.MyButton buttonResizeApply; private System.Windows.Forms.Label labelColumns; private System.Windows.Forms.Label labelRows; private System.Windows.Forms.NumericUpDown inputColumns; private System.Windows.Forms.NumericUpDown inputRows; private DynamicLink.Controls.MyButton buttonResizeReset; private System.Windows.Forms.Label labelWarning; private DynamicLink.Controls.MyGroupBox groupInfo; private System.Windows.Forms.TextBox inputDescription; private System.Windows.Forms.TextBox inputName; private System.Windows.Forms.Label labelDescription; private System.Windows.Forms.Label labelName; private DynamicLink.Controls.MyButton buttonAccept; private DynamicLink.Controls.MyButton buttonCancel; private System.Windows.Forms.ContextMenuStrip dataEditorContextMenu; private System.Windows.Forms.ToolStripMenuItem contextMenuCut; private System.Windows.Forms.ToolStripMenuItem contextMenuCopy; private System.Windows.Forms.ToolStripMenuItem contextMenuPaste; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripMenuItem contextMenuClear; private System.Windows.Forms.ToolStripMenuItem contextMenuClearAll; private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; private System.Windows.Forms.ToolStripMenuItem contextMenuInsertRow; private System.Windows.Forms.ToolStripMenuItem contextMenuInsertCol; private System.Windows.Forms.ToolStripMenuItem contextMenuDelRow; private System.Windows.Forms.ToolStripMenuItem contextMenuDelColumn; private DynamicLink.Controls.MyGroupBox groupBoxMatrixData; private System.Windows.Forms.DataGridView dataEditor; } }