namespace MatrixCalculator
{
partial class NumericInput
{
///
/// 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.inputBox = new System.Windows.Forms.TextBox();
this.buttonCancel = new DynamicLink.Controls.MyButton();
this.buttonAccept = new DynamicLink.Controls.MyButton();
this.labelMessage = new System.Windows.Forms.Label();
this.myGroupBox = new DynamicLink.Controls.MyGroupBox();
this.myGroupBox.SuspendLayout();
this.SuspendLayout();
//
// inputBox
//
this.inputBox.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.inputBox.Location = new System.Drawing.Point(6, 26);
this.inputBox.Name = "inputBox";
this.inputBox.Size = new System.Drawing.Size(256, 20);
this.inputBox.TabIndex = 1;
//
// 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(112, 71);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 2;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = false;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// 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(193, 71);
this.buttonAccept.Name = "buttonAccept";
this.buttonAccept.Size = new System.Drawing.Size(75, 23);
this.buttonAccept.TabIndex = 3;
this.buttonAccept.Text = "Accept";
this.buttonAccept.UseVisualStyleBackColor = false;
this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
//
// labelMessage
//
this.labelMessage.AutoSize = true;
this.labelMessage.BackColor = System.Drawing.Color.Transparent;
this.labelMessage.Location = new System.Drawing.Point(6, 6);
this.labelMessage.Name = "labelMessage";
this.labelMessage.Size = new System.Drawing.Size(92, 13);
this.labelMessage.TabIndex = 0;
this.labelMessage.Text = "Insert a ? number:";
//
// myGroupBox
//
this.myGroupBox.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.myGroupBox.BackColor = System.Drawing.Color.Transparent;
this.myGroupBox.Controls.Add(this.labelMessage);
this.myGroupBox.Controls.Add(this.inputBox);
this.myGroupBox.Location = new System.Drawing.Point(6, 7);
this.myGroupBox.Name = "myGroupBox";
this.myGroupBox.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.myGroupBox.Size = new System.Drawing.Size(269, 58);
this.myGroupBox.TabIndex = 4;
this.myGroupBox.TabStop = false;
//
// NumericInput
//
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(280, 106);
this.Controls.Add(this.myGroupBox);
this.Controls.Add(this.buttonAccept);
this.Controls.Add(this.buttonCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "NumericInput";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.NumericInput_FormClosing);
this.myGroupBox.ResumeLayout(false);
this.myGroupBox.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox inputBox;
private DynamicLink.Controls.MyButton buttonCancel;
private DynamicLink.Controls.MyButton buttonAccept;
private System.Windows.Forms.Label labelMessage;
private DynamicLink.Controls.MyGroupBox myGroupBox;
}
}