namespace MacManagerForTemPatch { partial class Form1 { /// /// 필수 디자이너 변수입니다. /// private System.ComponentModel.IContainer components = null; /// /// 사용 중인 모든 리소스를 정리합니다. /// /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 디자이너에서 생성한 코드 /// /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.button_open = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.comboBox_comport = new System.Windows.Forms.ComboBox(); this.listView_maclist = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.button_removeAll = new System.Windows.Forms.Button(); this.button_save_csv = new System.Windows.Forms.Button(); this.serialPort = new System.IO.Ports.SerialPort(this.components); this.button_add_test = new System.Windows.Forms.Button(); this.label_lastmac = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.button_open); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.comboBox_comport); this.groupBox1.Location = new System.Drawing.Point(38, 24); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(232, 95); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Serial"; // // button_open // this.button_open.Location = new System.Drawing.Point(141, 58); this.button_open.Name = "button_open"; this.button_open.Size = new System.Drawing.Size(75, 23); this.button_open.TabIndex = 1; this.button_open.Text = "OPEN"; this.button_open.UseVisualStyleBackColor = true; this.button_open.Click += new System.EventHandler(this.button_open_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(83, 12); this.label1.TabIndex = 1; this.label1.Text = "COM PORT : "; // // comboBox_comport // this.comboBox_comport.FormattingEnabled = true; this.comboBox_comport.Location = new System.Drawing.Point(95, 20); this.comboBox_comport.Name = "comboBox_comport"; this.comboBox_comport.Size = new System.Drawing.Size(121, 20); this.comboBox_comport.TabIndex = 0; // // listView_maclist // this.listView_maclist.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4}); this.listView_maclist.HideSelection = false; this.listView_maclist.Location = new System.Drawing.Point(18, 20); this.listView_maclist.MultiSelect = false; this.listView_maclist.Name = "listView_maclist"; this.listView_maclist.Size = new System.Drawing.Size(503, 260); this.listView_maclist.TabIndex = 1; this.listView_maclist.UseCompatibleStateImageBehavior = false; this.listView_maclist.View = System.Windows.Forms.View.Details; // // columnHeader1 // this.columnHeader1.Text = "idx"; this.columnHeader1.Width = 40; // // columnHeader2 // this.columnHeader2.Text = "MacAddress"; this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.columnHeader2.Width = 140; // // columnHeader3 // this.columnHeader3.Text = "Date"; this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.columnHeader3.Width = 140; // // columnHeader4 // this.columnHeader4.Text = "Time"; this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.columnHeader4.Width = 140; // // groupBox2 // this.groupBox2.Controls.Add(this.button_add_test); this.groupBox2.Controls.Add(this.button_removeAll); this.groupBox2.Controls.Add(this.button_save_csv); this.groupBox2.Controls.Add(this.listView_maclist); this.groupBox2.Location = new System.Drawing.Point(38, 134); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(713, 304); this.groupBox2.TabIndex = 2; this.groupBox2.TabStop = false; this.groupBox2.Text = "관리"; // // button_removeAll // this.button_removeAll.Location = new System.Drawing.Point(564, 20); this.button_removeAll.Name = "button_removeAll"; this.button_removeAll.Size = new System.Drawing.Size(79, 34); this.button_removeAll.TabIndex = 3; this.button_removeAll.Text = "목록 비우기"; this.button_removeAll.UseVisualStyleBackColor = true; this.button_removeAll.Click += new System.EventHandler(this.button_removeAll_Click); // // button_save_csv // this.button_save_csv.Location = new System.Drawing.Point(564, 246); this.button_save_csv.Name = "button_save_csv"; this.button_save_csv.Size = new System.Drawing.Size(79, 34); this.button_save_csv.TabIndex = 2; this.button_save_csv.Text = "csv로 저장"; this.button_save_csv.UseVisualStyleBackColor = true; this.button_save_csv.Click += new System.EventHandler(this.button_save_csv_Click); // // button_add_test // this.button_add_test.Location = new System.Drawing.Point(564, 173); this.button_add_test.Name = "button_add_test"; this.button_add_test.Size = new System.Drawing.Size(79, 40); this.button_add_test.TabIndex = 4; this.button_add_test.Text = "Test"; this.button_add_test.UseVisualStyleBackColor = true; this.button_add_test.Visible = false; this.button_add_test.Click += new System.EventHandler(this.button_add_test_Click); // // label_lastmac // this.label_lastmac.AutoSize = true; this.label_lastmac.Font = new System.Drawing.Font("굴림", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); this.label_lastmac.ForeColor = System.Drawing.Color.Blue; this.label_lastmac.Location = new System.Drawing.Point(344, 48); this.label_lastmac.Name = "label_lastmac"; this.label_lastmac.Size = new System.Drawing.Size(382, 35); this.label_lastmac.TabIndex = 3; this.label_lastmac.Text = "4번 11:22:33:44:55:66"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.label_lastmac); this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBox2); this.Name = "Form1"; this.Text = "템패치 MacAddress 관리자"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button button_open; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox comboBox_comport; private System.Windows.Forms.ListView listView_maclist; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader3; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Button button_save_csv; private System.IO.Ports.SerialPort serialPort; private System.Windows.Forms.Button button_removeAll; private System.Windows.Forms.Button button_add_test; private System.Windows.Forms.Label label_lastmac; } }