관리자페이지 개발

This commit is contained in:
hassong
2026-07-03 16:43:53 +09:00
parent 5d6ee943f6
commit 5022eba196
26 changed files with 3940 additions and 758 deletions

View File

@@ -36,52 +36,54 @@
btnCancel = new Button();
txtBoxPort = new TextBox();
lbl5 = new Label();
txtBoxMac = new TextBox();
lbl2 = new Label();
lblTitle = new Label();
lblBox = new Label();
SuspendLayout();
//
// lbl0
//
lbl0.BackColor = SystemColors.ControlDark;
lbl0.BorderStyle = BorderStyle.FixedSingle;
lbl0.Location = new Point(277, 106);
lbl0.BackColor = Color.White;
lbl0.Location = new Point(195, 116);
lbl0.Name = "lbl0";
lbl0.Size = new Size(293, 50);
lbl0.Size = new Size(270, 50);
lbl0.TabIndex = 0;
lbl0.Text = "단말기명";
lbl0.TextAlign = ContentAlignment.MiddleLeft;
//
// lbl1
//
lbl1.BackColor = SystemColors.ControlDark;
lbl1.BorderStyle = BorderStyle.FixedSingle;
lbl1.Location = new Point(277, 156);
lbl1.BackColor = Color.White;
lbl1.Location = new Point(195, 166);
lbl1.Name = "lbl1";
lbl1.Size = new Size(293, 50);
lbl1.Size = new Size(270, 50);
lbl1.TabIndex = 1;
lbl1.Text = "IP";
lbl1.TextAlign = ContentAlignment.MiddleLeft;
//
// txtBoxName
//
txtBoxName.Location = new Point(572, 106);
txtBoxName.Location = new Point(471, 127);
txtBoxName.Multiline = true;
txtBoxName.Name = "txtBoxName";
txtBoxName.Size = new Size(507, 50);
txtBoxName.Size = new Size(350, 32);
txtBoxName.TabIndex = 4;
//
// txtBoxIP
//
txtBoxIP.Location = new Point(572, 156);
txtBoxIP.Location = new Point(471, 177);
txtBoxIP.Multiline = true;
txtBoxIP.Name = "txtBoxIP";
txtBoxIP.Size = new Size(507, 50);
txtBoxIP.Size = new Size(350, 32);
txtBoxIP.TabIndex = 5;
//
// btnRegister
//
btnRegister.BackColor = SystemColors.Desktop;
btnRegister.BackColor = Color.RoyalBlue;
btnRegister.Font = new Font("맑은 고딕", 10.2F, FontStyle.Bold, GraphicsUnit.Point, 129);
btnRegister.ForeColor = SystemColors.Window;
btnRegister.Location = new Point(460, 291);
btnRegister.Location = new Point(296, 366);
btnRegister.Name = "btnRegister";
btnRegister.Size = new Size(174, 56);
btnRegister.TabIndex = 9;
@@ -92,7 +94,7 @@
// btnCancel
//
btnCancel.Font = new Font("맑은 고딕", 10.2F, FontStyle.Bold, GraphicsUnit.Point, 129);
btnCancel.Location = new Point(710, 291);
btnCancel.Location = new Point(535, 366);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(174, 56);
btnCancel.TabIndex = 10;
@@ -102,28 +104,67 @@
//
// txtBoxPort
//
txtBoxPort.Location = new Point(572, 206);
txtBoxPort.Location = new Point(471, 227);
txtBoxPort.Multiline = true;
txtBoxPort.Name = "txtBoxPort";
txtBoxPort.Size = new Size(507, 50);
txtBoxPort.Size = new Size(350, 32);
txtBoxPort.TabIndex = 12;
//
// lbl5
//
lbl5.BackColor = SystemColors.ControlDark;
lbl5.BorderStyle = BorderStyle.FixedSingle;
lbl5.Location = new Point(277, 206);
lbl5.BackColor = Color.White;
lbl5.Location = new Point(195, 216);
lbl5.Name = "lbl5";
lbl5.Size = new Size(293, 50);
lbl5.Size = new Size(270, 50);
lbl5.TabIndex = 11;
lbl5.Text = "Port";
lbl5.TextAlign = ContentAlignment.MiddleLeft;
//
// txtBoxMac
//
txtBoxMac.Location = new Point(471, 276);
txtBoxMac.Multiline = true;
txtBoxMac.Name = "txtBoxMac";
txtBoxMac.Size = new Size(350, 32);
txtBoxMac.TabIndex = 14;
//
// lbl2
//
lbl2.BackColor = Color.White;
lbl2.Location = new Point(195, 266);
lbl2.Name = "lbl2";
lbl2.Size = new Size(270, 50);
lbl2.TabIndex = 13;
lbl2.Text = "MAC";
lbl2.TextAlign = ContentAlignment.MiddleLeft;
//
// lblTitle
//
lblTitle.AutoSize = true;
lblTitle.BackColor = Color.White;
lblTitle.Font = new Font("맑은 고딕", 18F, FontStyle.Bold, GraphicsUnit.Point, 129);
lblTitle.Location = new Point(92, 34);
lblTitle.Name = "lblTitle";
lblTitle.Size = new Size(179, 41);
lblTitle.TabIndex = 15;
lblTitle.Text = "단말기 등록";
//
// lblBox
//
lblBox.BackColor = Color.White;
lblBox.Location = new Point(56, 23);
lblBox.Name = "lblBox";
lblBox.Size = new Size(953, 306);
lblBox.TabIndex = 16;
//
// Form2
//
AutoScaleDimensions = new SizeF(9F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1357, 737);
ClientSize = new Size(1070, 461);
Controls.Add(lblTitle);
Controls.Add(txtBoxMac);
Controls.Add(lbl2);
Controls.Add(txtBoxPort);
Controls.Add(lbl5);
Controls.Add(btnCancel);
@@ -132,6 +173,7 @@
Controls.Add(txtBoxName);
Controls.Add(lbl1);
Controls.Add(lbl0);
Controls.Add(lblBox);
Name = "Form2";
ResumeLayout(false);
PerformLayout();
@@ -147,5 +189,9 @@
private Button btnCancel;
private TextBox txtBoxPort;
private Label lbl5;
private TextBox txtBoxMac;
private Label lbl2;
private Label lblTitle;
private Label lblBox;
}
}