namespace System.Windows.Forms { partial class NumericBoxBase { /// /// 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.layout_panel = new System.Windows.Forms.FlowLayoutPanel(); this.layout_panel.SuspendLayout(); this.SuspendLayout(); // // txtValueBox // this.txtValueBox.Font = new System.Drawing.Font("Lucida Console", 15.75F); this.txtValueBox.Location = new System.Drawing.Point(0, 0); this.txtValueBox.Margin = new System.Windows.Forms.Padding(0); this.txtValueBox.Name = "txtValueBox"; this.txtValueBox.Size = new System.Drawing.Size(136, 28); this.txtValueBox.TabIndex = 3; this.txtValueBox.Text = "0"; this.txtValueBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtValueBox.TextChanged += new System.EventHandler(this.txtValueBox_TextChanged); this.txtValueBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtValueBox_KeyDown); // // 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(136, 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(164, 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); // // layout_panel // this.layout_panel.AutoSize = true; this.layout_panel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.layout_panel.Controls.Add(this.txtValueBox); this.layout_panel.Controls.Add(this.btnCopy); this.layout_panel.Controls.Add(this.btnPaste); this.layout_panel.Dock = System.Windows.Forms.DockStyle.Fill; this.layout_panel.Location = new System.Drawing.Point(0, 0); this.layout_panel.Margin = new System.Windows.Forms.Padding(0); this.layout_panel.Name = "layout_panel"; this.layout_panel.Size = new System.Drawing.Size(192, 28); this.layout_panel.TabIndex = 6; // // NumericBoxBase // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.Controls.Add(this.layout_panel); this.Font = new System.Drawing.Font("Lucida Console", 12F); this.Margin = new System.Windows.Forms.Padding(0); this.Name = "NumericBoxBase"; this.Size = new System.Drawing.Size(192, 28); this.layout_panel.ResumeLayout(false); this.layout_panel.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtValueBox; private System.Windows.Forms.Button btnCopy; private System.Windows.Forms.Button btnPaste; private FlowLayoutPanel layout_panel; } }