namespace System.Windows.Forms
{
partial class NumericBox
{
///
/// 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 Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.txtValueBox = new System.Windows.Forms.TextBox();
this.btnCopy = new System.Windows.Forms.Button();
this.btnPaste = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtValueBox
//
this.txtValueBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtValueBox.Location = new System.Drawing.Point(4, 2);
this.txtValueBox.Margin = new System.Windows.Forms.Padding(0);
this.txtValueBox.Name = "txtValueBox";
this.txtValueBox.Size = new System.Drawing.Size(168, 26);
this.txtValueBox.TabIndex = 3;
this.txtValueBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// btnCopy
//
this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnCopy.AutoSize = true;
this.btnCopy.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnCopy.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCopy.Location = new System.Drawing.Point(176, 0);
this.btnCopy.Margin = new System.Windows.Forms.Padding(0);
this.btnCopy.Name = "btnCopy";
this.btnCopy.Size = new System.Drawing.Size(28, 28);
this.btnCopy.TabIndex = 4;
this.btnCopy.Text = "C";
this.btnCopy.UseVisualStyleBackColor = true;
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
//
// btnPaste
//
this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnPaste.AutoSize = true;
this.btnPaste.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnPaste.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPaste.Location = new System.Drawing.Point(206, 0);
this.btnPaste.Margin = new System.Windows.Forms.Padding(0);
this.btnPaste.Name = "btnPaste";
this.btnPaste.Size = new System.Drawing.Size(28, 28);
this.btnPaste.TabIndex = 5;
this.btnPaste.Text = "P";
this.btnPaste.UseVisualStyleBackColor = true;
this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
//
// NumericBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.Controls.Add(this.txtValueBox);
this.Controls.Add(this.btnCopy);
this.Controls.Add(this.btnPaste);
this.Font = new System.Drawing.Font("Courier New", 12F);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "NumericBox";
this.Size = new System.Drawing.Size(240, 28);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtValueBox;
private System.Windows.Forms.Button btnCopy;
private System.Windows.Forms.Button btnPaste;
}
}