-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrmDatas.Designer.cs
More file actions
157 lines (151 loc) · 7.4 KB
/
FrmDatas.Designer.cs
File metadata and controls
157 lines (151 loc) · 7.4 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
147
148
149
150
151
152
153
154
155
156
157
namespace SerialPortForward
{
partial class FrmDatas
{
/// <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 Windows Form 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDatas));
this.gbMain = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.btnAdd = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.htxtSearch = new ITLDG.HexTextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.gbMain.SuspendLayout();
this.SuspendLayout();
//
// gbMain
//
this.gbMain.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.gbMain.Controls.Add(this.tableLayoutPanel1);
this.gbMain.Location = new System.Drawing.Point(12, 50);
this.gbMain.Name = "gbMain";
this.gbMain.Size = new System.Drawing.Size(856, 437);
this.gbMain.TabIndex = 31;
this.gbMain.TabStop = false;
this.gbMain.Text = "数据列表";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoScroll = true;
this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 17);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(850, 417);
this.tableLayoutPanel1.TabIndex = 0;
//
// btnAdd
//
this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnAdd.Location = new System.Drawing.Point(40, 493);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(93, 32);
this.btnAdd.TabIndex = 2;
this.btnAdd.Text = "添加一条";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnSave
//
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSave.Location = new System.Drawing.Point(751, 493);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(93, 32);
this.btnSave.TabIndex = 3;
this.btnSave.Text = "保存数据";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(44, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 33;
this.label1.Text = "搜索数据:";
//
// htxtSearch
//
this.htxtSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.htxtSearch.HexMode = true;
this.htxtSearch.HexSeparator = ' ';
this.htxtSearch.Location = new System.Drawing.Point(101, 14);
this.htxtSearch.MaxHexLength = 10923;
this.htxtSearch.MaxLength = 32768;
this.htxtSearch.Name = "htxtSearch";
this.htxtSearch.Size = new System.Drawing.Size(644, 21);
this.htxtSearch.TabIndex = 0;
this.htxtSearch.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.htxtSearch_KeyPress);
//
// btnSearch
//
this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSearch.Location = new System.Drawing.Point(751, 12);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 1;
this.btnSearch.Text = "搜索";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// FrmDatas
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(880, 534);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.htxtSearch);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.gbMain);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmDatas";
this.Text = "数据管理";
this.Load += new System.EventHandler(this.FrmDatas_Load);
this.Shown += new System.EventHandler(this.FrmDatas_Shown);
this.gbMain.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox gbMain;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label label1;
private ITLDG.HexTextBox htxtSearch;
private System.Windows.Forms.Button btnSearch;
}
}