| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- namespace WindowsFormsApplication1
- {
- 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 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.buttonConnect = new System.Windows.Forms.Button();
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.button1 = new System.Windows.Forms.Button();
- this.buttonExit = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.label5 = new System.Windows.Forms.Label();
- this.comboBoxBright = new System.Windows.Forms.ComboBox();
- this.comboBoxType = new System.Windows.Forms.ComboBox();
- this.label4 = new System.Windows.Forms.Label();
- this.textBoxComperData = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.radioButtonReader = new System.Windows.Forms.RadioButton();
- this.radioButtonComputer = new System.Windows.Forms.RadioButton();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.comboBoxBaud = new System.Windows.Forms.ComboBox();
- this.comboBoxPort = new System.Windows.Forms.ComboBox();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.textBoxWData = new System.Windows.Forms.TextBox();
- this.comboBoxBlock = new System.Windows.Forms.ComboBox();
- this.comboBoxSec = new System.Windows.Forms.ComboBox();
- this.comboBoxCardMode = new System.Windows.Forms.ComboBox();
- this.label9 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.textBoxCmd = new System.Windows.Forms.TextBox();
- this.button8 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.groupBox1.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox4.SuspendLayout();
- this.SuspendLayout();
- //
- // buttonConnect
- //
- this.buttonConnect.Location = new System.Drawing.Point(422, 30);
- this.buttonConnect.Name = "buttonConnect";
- this.buttonConnect.Size = new System.Drawing.Size(102, 34);
- this.buttonConnect.TabIndex = 0;
- this.buttonConnect.Text = "读写器连接";
- this.buttonConnect.UseVisualStyleBackColor = true;
- this.buttonConnect.Click += new System.EventHandler(this.button1_Click);
- //
- // listBox1
- //
- this.listBox1.FormattingEnabled = true;
- this.listBox1.ItemHeight = 14;
- this.listBox1.Location = new System.Drawing.Point(731, 32);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(353, 564);
- this.listBox1.TabIndex = 1;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(22, 37);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(102, 34);
- this.button1.TabIndex = 2;
- this.button1.Text = "寻卡";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click_1);
- //
- // buttonExit
- //
- this.buttonExit.Location = new System.Drawing.Point(556, 30);
- this.buttonExit.Name = "buttonExit";
- this.buttonExit.Size = new System.Drawing.Size(102, 34);
- this.buttonExit.TabIndex = 3;
- this.buttonExit.Text = "断开连接";
- this.buttonExit.UseVisualStyleBackColor = true;
- this.buttonExit.Click += new System.EventHandler(this.button2_Click);
- //
- // button5
- //
- this.button5.Location = new System.Drawing.Point(381, 140);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(102, 34);
- this.button5.TabIndex = 6;
- this.button5.Text = "刷新显示";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.groupBox3);
- this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Controls.Add(this.label1);
- this.groupBox1.Controls.Add(this.comboBoxBaud);
- this.groupBox1.Controls.Add(this.comboBoxPort);
- this.groupBox1.Controls.Add(this.buttonConnect);
- this.groupBox1.Controls.Add(this.buttonExit);
- this.groupBox1.Location = new System.Drawing.Point(14, 31);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(697, 318);
- this.groupBox1.TabIndex = 7;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "设备操作";
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.label5);
- this.groupBox3.Controls.Add(this.comboBoxBright);
- this.groupBox3.Controls.Add(this.button5);
- this.groupBox3.Controls.Add(this.comboBoxType);
- this.groupBox3.Controls.Add(this.label4);
- this.groupBox3.Controls.Add(this.textBoxComperData);
- this.groupBox3.Controls.Add(this.label3);
- this.groupBox3.Controls.Add(this.radioButtonReader);
- this.groupBox3.Controls.Add(this.radioButtonComputer);
- this.groupBox3.Location = new System.Drawing.Point(50, 83);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(608, 204);
- this.groupBox3.TabIndex = 9;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "LED";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(98, 150);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(35, 14);
- this.label5.TabIndex = 8;
- this.label5.Text = "亮度";
- //
- // comboBoxBright
- //
- this.comboBoxBright.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxBright.FormattingEnabled = true;
- this.comboBoxBright.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15"});
- this.comboBoxBright.Location = new System.Drawing.Point(141, 147);
- this.comboBoxBright.Name = "comboBoxBright";
- this.comboBoxBright.Size = new System.Drawing.Size(70, 22);
- this.comboBoxBright.TabIndex = 7;
- //
- // comboBoxType
- //
- this.comboBoxType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxType.FormattingEnabled = true;
- this.comboBoxType.Items.AddRange(new object[] {
- "日期",
- "时间"});
- this.comboBoxType.Location = new System.Drawing.Point(268, 83);
- this.comboBoxType.Name = "comboBoxType";
- this.comboBoxType.Size = new System.Drawing.Size(102, 22);
- this.comboBoxType.TabIndex = 4;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(199, 87);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(63, 14);
- this.label4.TabIndex = 3;
- this.label4.Text = "显示类型";
- //
- // textBoxComperData
- //
- this.textBoxComperData.Enabled = false;
- this.textBoxComperData.Location = new System.Drawing.Point(268, 34);
- this.textBoxComperData.Name = "textBoxComperData";
- this.textBoxComperData.Size = new System.Drawing.Size(315, 23);
- this.textBoxComperData.TabIndex = 2;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(199, 37);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(63, 14);
- this.label3.TabIndex = 1;
- this.label3.Text = "显示内容";
- //
- // radioButtonReader
- //
- this.radioButtonReader.AutoSize = true;
- this.radioButtonReader.Checked = true;
- this.radioButtonReader.Location = new System.Drawing.Point(38, 87);
- this.radioButtonReader.Name = "radioButtonReader";
- this.radioButtonReader.Size = new System.Drawing.Size(95, 18);
- this.radioButtonReader.TabIndex = 0;
- this.radioButtonReader.TabStop = true;
- this.radioButtonReader.Text = "读写器控制";
- this.radioButtonReader.UseVisualStyleBackColor = true;
- this.radioButtonReader.CheckedChanged += new System.EventHandler(this.radioButtonComputer_CheckedChanged);
- //
- // radioButtonComputer
- //
- this.radioButtonComputer.AutoSize = true;
- this.radioButtonComputer.Location = new System.Drawing.Point(38, 35);
- this.radioButtonComputer.Name = "radioButtonComputer";
- this.radioButtonComputer.Size = new System.Drawing.Size(95, 18);
- this.radioButtonComputer.TabIndex = 0;
- this.radioButtonComputer.Text = "计算机控制";
- this.radioButtonComputer.UseVisualStyleBackColor = true;
- this.radioButtonComputer.CheckedChanged += new System.EventHandler(this.radioButtonComputer_CheckedChanged);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(212, 40);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(49, 14);
- this.label2.TabIndex = 8;
- this.label2.Text = "波特率";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(47, 40);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(35, 14);
- this.label1.TabIndex = 8;
- this.label1.Text = "端口";
- //
- // comboBoxBaud
- //
- this.comboBoxBaud.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxBaud.FormattingEnabled = true;
- this.comboBoxBaud.Items.AddRange(new object[] {
- "9600",
- "19200",
- "38400",
- "57600",
- "115200"});
- this.comboBoxBaud.Location = new System.Drawing.Point(267, 37);
- this.comboBoxBaud.Name = "comboBoxBaud";
- this.comboBoxBaud.Size = new System.Drawing.Size(100, 22);
- this.comboBoxBaud.TabIndex = 7;
- this.comboBoxBaud.SelectedIndexChanged += new System.EventHandler(this.comboBoxBaud_SelectedIndexChanged);
- //
- // comboBoxPort
- //
- this.comboBoxPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxPort.FormattingEnabled = true;
- this.comboBoxPort.Items.AddRange(new object[] {
- "COM1",
- "COM2",
- "COM3",
- "COM4"});
- this.comboBoxPort.Location = new System.Drawing.Point(90, 37);
- this.comboBoxPort.Name = "comboBoxPort";
- this.comboBoxPort.Size = new System.Drawing.Size(76, 22);
- this.comboBoxPort.TabIndex = 7;
- this.comboBoxPort.SelectedIndexChanged += new System.EventHandler(this.comboBoxPort_SelectedIndexChanged);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.textBoxWData);
- this.groupBox2.Controls.Add(this.comboBoxBlock);
- this.groupBox2.Controls.Add(this.comboBoxSec);
- this.groupBox2.Controls.Add(this.comboBoxCardMode);
- this.groupBox2.Controls.Add(this.label9);
- this.groupBox2.Controls.Add(this.label8);
- this.groupBox2.Controls.Add(this.label7);
- this.groupBox2.Controls.Add(this.label6);
- this.groupBox2.Controls.Add(this.button7);
- this.groupBox2.Controls.Add(this.button4);
- this.groupBox2.Controls.Add(this.button2);
- this.groupBox2.Controls.Add(this.button1);
- this.groupBox2.Location = new System.Drawing.Point(14, 365);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(697, 229);
- this.groupBox2.TabIndex = 8;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "M1卡操作";
- //
- // textBoxWData
- //
- this.textBoxWData.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
- this.textBoxWData.Location = new System.Drawing.Point(254, 183);
- this.textBoxWData.MaxLength = 32;
- this.textBoxWData.Name = "textBoxWData";
- this.textBoxWData.Size = new System.Drawing.Size(321, 23);
- this.textBoxWData.TabIndex = 7;
- //
- // comboBoxBlock
- //
- this.comboBoxBlock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxBlock.FormattingEnabled = true;
- this.comboBoxBlock.Location = new System.Drawing.Point(252, 138);
- this.comboBoxBlock.Name = "comboBoxBlock";
- this.comboBoxBlock.Size = new System.Drawing.Size(107, 22);
- this.comboBoxBlock.TabIndex = 6;
- //
- // comboBoxSec
- //
- this.comboBoxSec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxSec.FormattingEnabled = true;
- this.comboBoxSec.Items.AddRange(new object[] {
- "0",
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15"});
- this.comboBoxSec.Location = new System.Drawing.Point(252, 91);
- this.comboBoxSec.Name = "comboBoxSec";
- this.comboBoxSec.Size = new System.Drawing.Size(107, 22);
- this.comboBoxSec.TabIndex = 6;
- this.comboBoxSec.SelectedIndexChanged += new System.EventHandler(this.comboBoxSec_SelectedIndexChanged);
- //
- // comboBoxCardMode
- //
- this.comboBoxCardMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxCardMode.FormattingEnabled = true;
- this.comboBoxCardMode.Items.AddRange(new object[] {
- "0",
- "1"});
- this.comboBoxCardMode.Location = new System.Drawing.Point(252, 44);
- this.comboBoxCardMode.Name = "comboBoxCardMode";
- this.comboBoxCardMode.Size = new System.Drawing.Size(107, 22);
- this.comboBoxCardMode.TabIndex = 6;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(175, 188);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(35, 14);
- this.label9.TabIndex = 5;
- this.label9.Text = "数据";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(175, 141);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(35, 14);
- this.label8.TabIndex = 5;
- this.label8.Text = "块号";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(175, 94);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(49, 14);
- this.label7.TabIndex = 5;
- this.label7.Text = "扇区号";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(175, 47);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(63, 14);
- this.label6.TabIndex = 5;
- this.label6.Text = "寻卡模式";
- //
- // button7
- //
- this.button7.Location = new System.Drawing.Point(22, 178);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(102, 34);
- this.button7.TabIndex = 4;
- this.button7.Text = "写数据";
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button4
- //
- this.button4.Location = new System.Drawing.Point(23, 131);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(102, 34);
- this.button4.TabIndex = 4;
- this.button4.Text = "读数据";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(22, 84);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(102, 34);
- this.button2.TabIndex = 3;
- this.button2.Text = "验证密码";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click_1);
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(22, 35);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(102, 34);
- this.button6.TabIndex = 3;
- this.button6.Text = "非接CPU";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Interval = 1000;
- //
- // groupBox4
- //
- this.groupBox4.Controls.Add(this.textBoxCmd);
- this.groupBox4.Controls.Add(this.button8);
- this.groupBox4.Controls.Add(this.button3);
- this.groupBox4.Controls.Add(this.button6);
- this.groupBox4.Location = new System.Drawing.Point(14, 615);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(1070, 92);
- this.groupBox4.TabIndex = 9;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "CPU卡操作";
- //
- // textBoxCmd
- //
- this.textBoxCmd.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
- this.textBoxCmd.Location = new System.Drawing.Point(418, 39);
- this.textBoxCmd.Name = "textBoxCmd";
- this.textBoxCmd.Size = new System.Drawing.Size(618, 23);
- this.textBoxCmd.TabIndex = 6;
- //
- // button8
- //
- this.button8.Location = new System.Drawing.Point(284, 35);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(102, 34);
- this.button8.TabIndex = 5;
- this.button8.Text = "发送命令";
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(153, 35);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(102, 34);
- this.button3.TabIndex = 4;
- this.button3.Text = "复位";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1113, 738);
- this.Controls.Add(this.groupBox4);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.listBox1);
- this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Name = "Form1";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "RFDemo";
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button buttonConnect;
- private System.Windows.Forms.ListBox listBox1;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button buttonExit;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.ComboBox comboBoxBaud;
- private System.Windows.Forms.ComboBox comboBoxPort;
- private System.Windows.Forms.GroupBox groupBox3;
- private System.Windows.Forms.TextBox textBoxComperData;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.RadioButton radioButtonReader;
- private System.Windows.Forms.RadioButton radioButtonComputer;
- private System.Windows.Forms.ComboBox comboBoxType;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.ComboBox comboBoxBright;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.TextBox textBoxWData;
- private System.Windows.Forms.ComboBox comboBoxBlock;
- private System.Windows.Forms.ComboBox comboBoxSec;
- private System.Windows.Forms.ComboBox comboBoxCardMode;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.TextBox textBoxCmd;
- }
- }
|