forked from ClassicDIY/ModbusTool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataTab.Designer.cs
More file actions
146 lines (140 loc) · 6.24 KB
/
DataTab.Designer.cs
File metadata and controls
146 lines (140 loc) · 6.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
namespace Modbus.Common
{
partial class DataTab
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.buttonApply = new System.Windows.Forms.Button();
this.labelTxtSize = new System.Windows.Forms.Label();
this.txtSize = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.txtStartAdress = new System.Windows.Forms.TextBox();
this.buttonClear = new System.Windows.Forms.Button();
this.groupBoxData = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.buttonApply);
this.groupBox1.Controls.Add(this.labelTxtSize);
this.groupBox1.Controls.Add(this.txtSize);
this.groupBox1.Controls.Add(this.label11);
this.groupBox1.Controls.Add(this.txtStartAdress);
this.groupBox1.Controls.Add(this.buttonClear);
this.groupBox1.Controls.Add(this.groupBoxData);
this.groupBox1.Location = new System.Drawing.Point(3, 3);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(833, 396);
this.groupBox1.TabIndex = 33;
this.groupBox1.TabStop = false;
//
// buttonApply
//
this.buttonApply.Location = new System.Drawing.Point(642, 11);
this.buttonApply.Name = "buttonApply";
this.buttonApply.Size = new System.Drawing.Size(86, 28);
this.buttonApply.TabIndex = 36;
this.buttonApply.Text = "Apply";
this.buttonApply.Click += new System.EventHandler(this.buttonApply_Click);
//
// labelTxtSize
//
this.labelTxtSize.Location = new System.Drawing.Point(163, 19);
this.labelTxtSize.Name = "labelTxtSize";
this.labelTxtSize.Size = new System.Drawing.Size(42, 14);
this.labelTxtSize.TabIndex = 35;
this.labelTxtSize.Text = "Size";
//
// txtSize
//
this.txtSize.Location = new System.Drawing.Point(211, 16);
this.txtSize.MaxLength = 3;
this.txtSize.Name = "txtSize";
this.txtSize.Size = new System.Drawing.Size(40, 20);
this.txtSize.TabIndex = 34;
this.txtSize.Text = "64";
this.txtSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtSize.TextChanged += new System.EventHandler(this.txtSize_TextChanged);
//
// label11
//
this.label11.Location = new System.Drawing.Point(6, 19);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(74, 14);
this.label11.TabIndex = 27;
this.label11.Text = "Start Address";
//
// txtStartAdress
//
this.txtStartAdress.Location = new System.Drawing.Point(86, 16);
this.txtStartAdress.Name = "txtStartAdress";
this.txtStartAdress.Size = new System.Drawing.Size(54, 20);
this.txtStartAdress.TabIndex = 26;
this.txtStartAdress.Text = "4100";
this.txtStartAdress.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// buttonClear
//
this.buttonClear.Location = new System.Drawing.Point(740, 11);
this.buttonClear.Name = "buttonClear";
this.buttonClear.Size = new System.Drawing.Size(86, 28);
this.buttonClear.TabIndex = 25;
this.buttonClear.Text = "Clear";
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
//
// groupBoxData
//
this.groupBoxData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxData.Location = new System.Drawing.Point(0, 44);
this.groupBoxData.Name = "groupBoxData";
this.groupBoxData.Size = new System.Drawing.Size(833, 344);
this.groupBoxData.TabIndex = 17;
this.groupBoxData.TabStop = false;
//
// DataTab
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBox1);
this.Name = "DataTab";
this.Size = new System.Drawing.Size(829, 406);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
protected System.Windows.Forms.GroupBox groupBox1;
protected System.Windows.Forms.Button buttonApply;
protected System.Windows.Forms.Label labelTxtSize;
protected System.Windows.Forms.TextBox txtSize;
protected System.Windows.Forms.Label label11;
protected System.Windows.Forms.TextBox txtStartAdress;
protected System.Windows.Forms.Button buttonClear;
protected System.Windows.Forms.GroupBox groupBoxData;
}
}