123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- namespace APL_Macro
- {
- partial class Form1
- {
- /// <summary>
- /// 필수 디자이너 변수입니다.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 사용 중인 모든 리소스를 정리합니다.
- /// </summary>
- /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form 디자이너에서 생성한 코드
- /// <summary>
- /// 디자이너 지원에 필요한 메서드입니다.
- /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
- /// </summary>
- private void InitializeComponent()
- {
- this.Button_Start = new System.Windows.Forms.Button();
- this.Button_Stop = new System.Windows.Forms.Button();
- this.dgvList = new System.Windows.Forms.DataGridView();
- this.button_ExcelOpen = new System.Windows.Forms.Button();
- this.comboBox1 = new System.Windows.Forms.ComboBox();
- this.comboBox2 = new System.Windows.Forms.ComboBox();
- this.Ascii_checkBox = new System.Windows.Forms.CheckBox();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- ((System.ComponentModel.ISupportInitialize)(this.dgvList)).BeginInit();
- this.SuspendLayout();
- //
- // Button_Start
- //
- this.Button_Start.Location = new System.Drawing.Point(26, 35);
- this.Button_Start.Name = "Button_Start";
- this.Button_Start.Size = new System.Drawing.Size(108, 89);
- this.Button_Start.TabIndex = 0;
- this.Button_Start.Text = "시작";
- this.Button_Start.UseVisualStyleBackColor = true;
- this.Button_Start.Click += new System.EventHandler(this.Button_Start_Click);
- //
- // Button_Stop
- //
- this.Button_Stop.Location = new System.Drawing.Point(140, 35);
- this.Button_Stop.Name = "Button_Stop";
- this.Button_Stop.Size = new System.Drawing.Size(108, 89);
- this.Button_Stop.TabIndex = 0;
- this.Button_Stop.Text = "중지";
- this.Button_Stop.UseVisualStyleBackColor = true;
- //
- // dgvList
- //
- this.dgvList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvList.Location = new System.Drawing.Point(26, 183);
- this.dgvList.Name = "dgvList";
- this.dgvList.RowTemplate.Height = 27;
- this.dgvList.Size = new System.Drawing.Size(830, 804);
- this.dgvList.TabIndex = 2;
- //
- // button_ExcelOpen
- //
- this.button_ExcelOpen.Location = new System.Drawing.Point(265, 33);
- this.button_ExcelOpen.Name = "button_ExcelOpen";
- this.button_ExcelOpen.Size = new System.Drawing.Size(108, 93);
- this.button_ExcelOpen.TabIndex = 3;
- this.button_ExcelOpen.Text = "ExcelOpen";
- this.button_ExcelOpen.UseVisualStyleBackColor = true;
- this.button_ExcelOpen.Click += new System.EventHandler(this.btnOpenExcel_Click);
- //
- // comboBox1
- //
- this.comboBox1.FormattingEnabled = true;
- this.comboBox1.Location = new System.Drawing.Point(26, 139);
- this.comboBox1.Name = "comboBox1";
- this.comboBox1.Size = new System.Drawing.Size(121, 23);
- this.comboBox1.TabIndex = 4;
- //
- // comboBox2
- //
- this.comboBox2.FormattingEnabled = true;
- this.comboBox2.Items.AddRange(new object[] {
- "115200"});
- this.comboBox2.Location = new System.Drawing.Point(180, 139);
- this.comboBox2.Name = "comboBox2";
- this.comboBox2.Size = new System.Drawing.Size(121, 23);
- this.comboBox2.TabIndex = 4;
- this.comboBox2.Text = "115200";
- //
- // Ascii_checkBox
- //
- this.Ascii_checkBox.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.Ascii_checkBox.AutoSize = true;
- this.Ascii_checkBox.Location = new System.Drawing.Point(309, 143);
- this.Ascii_checkBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.Ascii_checkBox.Name = "Ascii_checkBox";
- this.Ascii_checkBox.Size = new System.Drawing.Size(64, 19);
- this.Ascii_checkBox.TabIndex = 73;
- this.Ascii_checkBox.Text = "ASCII";
- this.Ascii_checkBox.UseVisualStyleBackColor = true;
- //
- // richTextBox1
- //
- this.richTextBox1.Location = new System.Drawing.Point(391, 35);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(465, 127);
- this.richTextBox1.TabIndex = 74;
- this.richTextBox1.Text = "";
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(868, 1011);
- this.Controls.Add(this.richTextBox1);
- this.Controls.Add(this.Ascii_checkBox);
- this.Controls.Add(this.comboBox2);
- this.Controls.Add(this.comboBox1);
- this.Controls.Add(this.button_ExcelOpen);
- this.Controls.Add(this.dgvList);
- this.Controls.Add(this.Button_Stop);
- this.Controls.Add(this.Button_Start);
- this.Name = "Form1";
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- ((System.ComponentModel.ISupportInitialize)(this.dgvList)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button Button_Start;
- private System.Windows.Forms.Button Button_Stop;
- private System.Windows.Forms.DataGridView dgvList;
- private System.Windows.Forms.Button button_ExcelOpen;
- private System.Windows.Forms.ComboBox comboBox1;
- private System.Windows.Forms.ComboBox comboBox2;
- private System.Windows.Forms.CheckBox Ascii_checkBox;
- private System.Windows.Forms.RichTextBox richTextBox1;
- }
- }
|