forked from 0000duck/VisionEdit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCNumeric.designer.cs
More file actions
79 lines (73 loc) · 3.38 KB
/
CNumeric.designer.cs
File metadata and controls
79 lines (73 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
namespace Controls
{
partial class CNumeric
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.lbl_line = new System.Windows.Forms.Label();
this.tbx_value = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// lbl_line
//
this.lbl_line.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_line.BackColor = System.Drawing.Color.Gray;
this.lbl_line.Location = new System.Drawing.Point(0, 20);
this.lbl_line.Name = "lbl_line";
this.lbl_line.Size = new System.Drawing.Size(120, 1);
this.lbl_line.TabIndex = 8;
//
// tbx_value
//
this.tbx_value.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.tbx_value.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tbx_value.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.tbx_value.Location = new System.Drawing.Point(3, 0);
this.tbx_value.Name = "tbx_value";
this.tbx_value.Size = new System.Drawing.Size(114, 16);
this.tbx_value.TabIndex = 9;
this.tbx_value.TextChanged += new System.EventHandler(this.tbx_value_TextChanged);
this.tbx_value.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbx_value_KeyPress);
//
// CNumeric
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tbx_value);
this.Controls.Add(this.lbl_line);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "CNumeric";
this.Size = new System.Drawing.Size(121, 22);
this.Enter += new System.EventHandler(this.Numeric_Enter);
this.Leave += new System.EventHandler(this.Numeric_Leave);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lbl_line;
private System.Windows.Forms.TextBox tbx_value;
}
}