1 |
namespace System.Windows.Forms |
2 |
{ |
3 |
partial class NumericBoxBase |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Component Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.txtValueBox = new System.Windows.Forms.TextBox(); |
32 |
this.btnCopy = new System.Windows.Forms.Button(); |
33 |
this.btnPaste = new System.Windows.Forms.Button(); |
34 |
this.SuspendLayout(); |
35 |
// |
36 |
// txtValueBox |
37 |
// |
38 |
this.txtValueBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
39 |
| System.Windows.Forms.AnchorStyles.Right))); |
40 |
this.txtValueBox.Location = new System.Drawing.Point(4, 2); |
41 |
this.txtValueBox.Margin = new System.Windows.Forms.Padding(0); |
42 |
this.txtValueBox.Name = "txtValueBox"; |
43 |
this.txtValueBox.Size = new System.Drawing.Size(78, 26); |
44 |
this.txtValueBox.TabIndex = 3; |
45 |
this.txtValueBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; |
46 |
this.txtValueBox.TextChanged += new System.EventHandler(this.txtValueBox_TextChanged); |
47 |
this.txtValueBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtValueBox_KeyDown); |
48 |
// |
49 |
// btnCopy |
50 |
// |
51 |
this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
52 |
this.btnCopy.AutoSize = true; |
53 |
this.btnCopy.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
54 |
this.btnCopy.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
55 |
this.btnCopy.Location = new System.Drawing.Point(86, 0); |
56 |
this.btnCopy.Margin = new System.Windows.Forms.Padding(0); |
57 |
this.btnCopy.Name = "btnCopy"; |
58 |
this.btnCopy.Size = new System.Drawing.Size(28, 28); |
59 |
this.btnCopy.TabIndex = 4; |
60 |
this.btnCopy.Text = "C"; |
61 |
this.btnCopy.UseVisualStyleBackColor = true; |
62 |
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click); |
63 |
// |
64 |
// btnPaste |
65 |
// |
66 |
this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
67 |
this.btnPaste.AutoSize = true; |
68 |
this.btnPaste.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
69 |
this.btnPaste.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
70 |
this.btnPaste.Location = new System.Drawing.Point(116, 0); |
71 |
this.btnPaste.Margin = new System.Windows.Forms.Padding(0); |
72 |
this.btnPaste.Name = "btnPaste"; |
73 |
this.btnPaste.Size = new System.Drawing.Size(28, 28); |
74 |
this.btnPaste.TabIndex = 5; |
75 |
this.btnPaste.Text = "P"; |
76 |
this.btnPaste.UseVisualStyleBackColor = true; |
77 |
this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click); |
78 |
// |
79 |
// NumericBoxBase |
80 |
// |
81 |
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
82 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
83 |
this.AutoSize = true; |
84 |
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
85 |
this.Controls.Add(this.txtValueBox); |
86 |
this.Controls.Add(this.btnCopy); |
87 |
this.Controls.Add(this.btnPaste); |
88 |
this.Font = new System.Drawing.Font("Courier New", 12F); |
89 |
this.Margin = new System.Windows.Forms.Padding(0); |
90 |
this.Name = "NumericBoxBase"; |
91 |
this.Size = new System.Drawing.Size(150, 28); |
92 |
this.ResumeLayout(false); |
93 |
this.PerformLayout(); |
94 |
|
95 |
} |
96 |
|
97 |
#endregion |
98 |
|
99 |
private System.Windows.Forms.TextBox txtValueBox; |
100 |
private System.Windows.Forms.Button btnCopy; |
101 |
private System.Windows.Forms.Button btnPaste; |
102 |
|
103 |
|
104 |
} |
105 |
} |