-
Notifications
You must be signed in to change notification settings - Fork 3
/
MainForm.Designer.cs
169 lines (161 loc) · 5.71 KB
/
MainForm.Designer.cs
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
158
159
160
161
162
163
164
165
166
167
168
using System.ComponentModel.Design;
namespace GD77_FlashManager
{
partial class MainForm
{
/// <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()
{
this.hexBox = new Be.Windows.Forms.HexBox();
this.btnOpen = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.txtStartAddr = new System.Windows.Forms.TextBox();
this.txtLen = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.btnRead = new System.Windows.Forms.Button();
this.btnWrite = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// hexBox
//
this.hexBox.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.hexBox.LineInfoVisible = true;
this.hexBox.Location = new System.Drawing.Point(110, 22);
this.hexBox.Name = "hexBox";
this.hexBox.ShadowSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(60)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
this.hexBox.Size = new System.Drawing.Size(669, 599);
this.hexBox.StringViewVisible = true;
this.hexBox.TabIndex = 0;
this.hexBox.UseFixedBytesPerLine = true;
this.hexBox.VScrollBarVisible = true;
//
// btnOpen
//
this.btnOpen.Location = new System.Drawing.Point(21, 22);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(75, 23);
this.btnOpen.TabIndex = 0;
this.btnOpen.Text = "Open File";
this.btnOpen.UseVisualStyleBackColor = true;
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(21, 51);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 1;
this.btnSave.Text = "SaveFile";
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(9, 86);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Start address (hex)";
//
// txtStartAddr
//
this.txtStartAddr.Location = new System.Drawing.Point(21, 102);
this.txtStartAddr.Name = "txtStartAddr";
this.txtStartAddr.Size = new System.Drawing.Size(75, 20);
this.txtStartAddr.TabIndex = 3;
this.txtStartAddr.Text = "0";
this.txtStartAddr.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// txtLen
//
this.txtLen.Location = new System.Drawing.Point(21, 151);
this.txtLen.Name = "txtLen";
this.txtLen.Size = new System.Drawing.Size(75, 20);
this.txtLen.TabIndex = 5;
this.txtLen.Text = "20";
this.txtLen.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(18, 135);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(66, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Length (hex)";
//
// btnRead
//
this.btnRead.Location = new System.Drawing.Point(21, 186);
this.btnRead.Name = "btnRead";
this.btnRead.Size = new System.Drawing.Size(75, 23);
this.btnRead.TabIndex = 0;
this.btnRead.Text = "Read";
this.btnRead.UseVisualStyleBackColor = true;
this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
//
// btnWrite
//
this.btnWrite.Location = new System.Drawing.Point(21, 215);
this.btnWrite.Name = "btnWrite";
this.btnWrite.Size = new System.Drawing.Size(75, 23);
this.btnWrite.TabIndex = 0;
this.btnWrite.Text = "Write";
this.btnWrite.UseVisualStyleBackColor = true;
this.btnWrite.Click += new System.EventHandler(this.btnWrite_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(797, 633);
this.Controls.Add(this.txtLen);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtStartAddr);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnWrite);
this.Controls.Add(this.btnRead);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnOpen);
this.Controls.Add(this.hexBox);
this.Name = "MainForm";
this.Text = "GD-77 Flash manager";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Be.Windows.Forms.HexBox hexBox;
// private ByteViewer _bv;
private System.Windows.Forms.Button btnOpen;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtStartAddr;
private System.Windows.Forms.TextBox txtLen;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnRead;
private System.Windows.Forms.Button btnWrite;
}
}