1 |
william |
88 |
namespace System.Windows.Forms |
2 |
|
|
{ |
3 |
|
|
partial class NumericBox |
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(168, 26); |
44 |
|
|
this.txtValueBox.TabIndex = 3; |
45 |
|
|
this.txtValueBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; |
46 |
|
|
// |
47 |
|
|
// btnCopy |
48 |
|
|
// |
49 |
|
|
this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
50 |
|
|
this.btnCopy.AutoSize = true; |
51 |
|
|
this.btnCopy.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
52 |
|
|
this.btnCopy.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
53 |
|
|
this.btnCopy.Location = new System.Drawing.Point(176, 0); |
54 |
|
|
this.btnCopy.Margin = new System.Windows.Forms.Padding(0); |
55 |
|
|
this.btnCopy.Name = "btnCopy"; |
56 |
|
|
this.btnCopy.Size = new System.Drawing.Size(28, 28); |
57 |
|
|
this.btnCopy.TabIndex = 4; |
58 |
|
|
this.btnCopy.Text = "C"; |
59 |
|
|
this.btnCopy.UseVisualStyleBackColor = true; |
60 |
|
|
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click); |
61 |
|
|
// |
62 |
|
|
// btnPaste |
63 |
|
|
// |
64 |
|
|
this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
65 |
|
|
this.btnPaste.AutoSize = true; |
66 |
|
|
this.btnPaste.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
67 |
|
|
this.btnPaste.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
68 |
|
|
this.btnPaste.Location = new System.Drawing.Point(206, 0); |
69 |
|
|
this.btnPaste.Margin = new System.Windows.Forms.Padding(0); |
70 |
|
|
this.btnPaste.Name = "btnPaste"; |
71 |
|
|
this.btnPaste.Size = new System.Drawing.Size(28, 28); |
72 |
|
|
this.btnPaste.TabIndex = 5; |
73 |
|
|
this.btnPaste.Text = "P"; |
74 |
|
|
this.btnPaste.UseVisualStyleBackColor = true; |
75 |
|
|
this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click); |
76 |
|
|
// |
77 |
|
|
// NumericBox |
78 |
|
|
// |
79 |
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
80 |
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
81 |
|
|
this.AutoSize = true; |
82 |
|
|
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
83 |
|
|
this.Controls.Add(this.txtValueBox); |
84 |
|
|
this.Controls.Add(this.btnCopy); |
85 |
|
|
this.Controls.Add(this.btnPaste); |
86 |
|
|
this.Font = new System.Drawing.Font("Courier New", 12F); |
87 |
|
|
this.Margin = new System.Windows.Forms.Padding(0); |
88 |
|
|
this.Name = "NumericBox"; |
89 |
|
|
this.Size = new System.Drawing.Size(240, 28); |
90 |
|
|
this.ResumeLayout(false); |
91 |
|
|
this.PerformLayout(); |
92 |
|
|
|
93 |
|
|
} |
94 |
|
|
|
95 |
|
|
#endregion |
96 |
|
|
|
97 |
|
|
private System.Windows.Forms.TextBox txtValueBox; |
98 |
|
|
private System.Windows.Forms.Button btnCopy; |
99 |
|
|
private System.Windows.Forms.Button btnPaste; |
100 |
|
|
|
101 |
|
|
|
102 |
|
|
} |
103 |
|
|
} |