Form1.Designer.cs 23.2 KB
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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443

namespace TheMachine
{
    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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.设备操作ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.全部启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.全部停止ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.启用调试模式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.禁用蜂鸣器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.语言toolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.简体中文ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabc = new System.Windows.Forms.TabControl();
            this.tabP1 = new System.Windows.Forms.TabPage();
            this.pnl = new System.Windows.Forms.Panel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.stateViewL = new System.Windows.Forms.ListView();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.stateViewR = new System.Windows.Forms.ListView();
            this.gb_right = new System.Windows.Forms.GroupBox();
            this.listViewR = new System.Windows.Forms.ListView();
            this.gb_left = new System.Windows.Forms.GroupBox();
            this.listViewL = new System.Windows.Forms.ListView();
            this.btn_IgnoreX09 = new System.Windows.Forms.Button();
            this.btn_PauseBuzzer = new System.Windows.Forms.Button();
            this.menuStrip1.SuspendLayout();
            this.tabc.SuspendLayout();
            this.tabP1.SuspendLayout();
            this.pnl.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.groupBox2.SuspendLayout();
            this.gb_right.SuspendLayout();
            this.gb_left.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.BackColor = System.Drawing.Color.Transparent;
            this.menuStrip1.Font = new System.Drawing.Font("Microsoft YaHei UI", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.设备操作ToolStripMenuItem,
            this.语言toolStripMenuItem,
            this.关于ToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
            this.menuStrip1.Size = new System.Drawing.Size(1008, 35);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // 设备操作ToolStripMenuItem
            // 
            this.设备操作ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.全部启动ToolStripMenuItem,
            this.toolStripSeparator3,
            this.全部停止ToolStripMenuItem,
            this.toolStripSeparator2,
            this.启用调试模式ToolStripMenuItem,
            this.toolStripSeparator4,
            this.禁用蜂鸣器ToolStripMenuItem,
            this.toolStripSeparator5,
            this.退出ToolStripMenuItem});
            this.设备操作ToolStripMenuItem.Name = "设备操作ToolStripMenuItem";
            this.设备操作ToolStripMenuItem.Size = new System.Drawing.Size(104, 31);
            this.设备操作ToolStripMenuItem.Text = "设备操作";
            // 
            // 全部启动ToolStripMenuItem
            // 
            this.全部启动ToolStripMenuItem.Name = "全部启动ToolStripMenuItem";
            this.全部启动ToolStripMenuItem.Size = new System.Drawing.Size(204, 32);
            this.全部启动ToolStripMenuItem.Text = "全部启动";
            this.全部启动ToolStripMenuItem.Click += new System.EventHandler(this.全部启动ToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(201, 6);
            // 
            // 全部停止ToolStripMenuItem
            // 
            this.全部停止ToolStripMenuItem.Name = "全部停止ToolStripMenuItem";
            this.全部停止ToolStripMenuItem.Size = new System.Drawing.Size(204, 32);
            this.全部停止ToolStripMenuItem.Text = "全部停止";
            this.全部停止ToolStripMenuItem.Click += new System.EventHandler(this.全部停止ToolStripMenuItem_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(201, 6);
            // 
            // 启用调试模式ToolStripMenuItem
            // 
            this.启用调试模式ToolStripMenuItem.Enabled = false;
            this.启用调试模式ToolStripMenuItem.Name = "启用调试模式ToolStripMenuItem";
            this.启用调试模式ToolStripMenuItem.Size = new System.Drawing.Size(204, 32);
            this.启用调试模式ToolStripMenuItem.Tag = "not";
            this.启用调试模式ToolStripMenuItem.Text = "启用配置模式";
            this.启用调试模式ToolStripMenuItem.Click += new System.EventHandler(this.启用调试模式ToolStripMenuItem_Click_1);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(201, 6);
            // 
            // 禁用蜂鸣器ToolStripMenuItem
            // 
            this.禁用蜂鸣器ToolStripMenuItem.Name = "禁用蜂鸣器ToolStripMenuItem";
            this.禁用蜂鸣器ToolStripMenuItem.Size = new System.Drawing.Size(204, 32);
            this.禁用蜂鸣器ToolStripMenuItem.Text = "禁用蜂鸣器";
            this.禁用蜂鸣器ToolStripMenuItem.Click += new System.EventHandler(this.禁用蜂鸣器ToolStripMenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(201, 6);
            // 
            // 退出ToolStripMenuItem
            // 
            this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
            this.退出ToolStripMenuItem.Size = new System.Drawing.Size(204, 32);
            this.退出ToolStripMenuItem.Text = "退出";
            this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
            // 
            // 语言toolStripMenuItem
            // 
            this.语言toolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.简体中文ToolStripMenuItem,
            this.englishToolStripMenuItem});
            this.语言toolStripMenuItem.Name = "语言toolStripMenuItem";
            this.语言toolStripMenuItem.Size = new System.Drawing.Size(64, 31);
            this.语言toolStripMenuItem.Text = "语言";
            // 
            // 简体中文ToolStripMenuItem
            // 
            this.简体中文ToolStripMenuItem.Name = "简体中文ToolStripMenuItem";
            this.简体中文ToolStripMenuItem.Size = new System.Drawing.Size(164, 32);
            this.简体中文ToolStripMenuItem.Tag = "not";
            this.简体中文ToolStripMenuItem.Text = "简体中文";
            this.简体中文ToolStripMenuItem.Click += new System.EventHandler(this.简体中文ToolStripMenuItem_Click);
            // 
            // englishToolStripMenuItem
            // 
            this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
            this.englishToolStripMenuItem.Size = new System.Drawing.Size(164, 32);
            this.englishToolStripMenuItem.Tag = "not";
            this.englishToolStripMenuItem.Text = "English";
            this.englishToolStripMenuItem.Click += new System.EventHandler(this.englishToolStripMenuItem_Click);
            // 
            // 关于ToolStripMenuItem
            // 
            this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
            this.关于ToolStripMenuItem.Size = new System.Drawing.Size(64, 31);
            this.关于ToolStripMenuItem.Text = "关于";
            this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
            // 
            // tabc
            // 
            this.tabc.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.tabc.Controls.Add(this.tabP1);
            this.tabc.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.tabc.Location = new System.Drawing.Point(0, 239);
            this.tabc.Name = "tabc";
            this.tabc.SelectedIndex = 0;
            this.tabc.Size = new System.Drawing.Size(1008, 490);
            this.tabc.TabIndex = 1;
            // 
            // tabP1
            // 
            this.tabP1.Controls.Add(this.pnl);
            this.tabP1.Location = new System.Drawing.Point(4, 30);
            this.tabP1.Name = "tabP1";
            this.tabP1.Size = new System.Drawing.Size(1000, 456);
            this.tabP1.TabIndex = 0;
            this.tabP1.Text = "信息";
            this.tabP1.UseVisualStyleBackColor = true;
            // 
            // pnl
            // 
            this.pnl.Controls.Add(this.groupBox1);
            this.pnl.Controls.Add(this.pictureBox2);
            this.pnl.Controls.Add(this.pictureBox1);
            this.pnl.Controls.Add(this.groupBox2);
            this.pnl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnl.Location = new System.Drawing.Point(0, 0);
            this.pnl.Name = "pnl";
            this.pnl.Size = new System.Drawing.Size(1000, 456);
            this.pnl.TabIndex = 273;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.stateViewL);
            this.groupBox1.Location = new System.Drawing.Point(8, 15);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(477, 227);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "运行步骤";
            // 
            // stateViewL
            // 
            this.stateViewL.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.stateViewL.Dock = System.Windows.Forms.DockStyle.Fill;
            this.stateViewL.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.stateViewL.HideSelection = false;
            this.stateViewL.Location = new System.Drawing.Point(3, 25);
            this.stateViewL.MultiSelect = false;
            this.stateViewL.Name = "stateViewL";
            this.stateViewL.Size = new System.Drawing.Size(471, 199);
            this.stateViewL.TabIndex = 0;
            this.stateViewL.UseCompatibleStateImageBehavior = false;
            // 
            // pictureBox2
            // 
            this.pictureBox2.BackColor = System.Drawing.Color.Gainsboro;
            this.pictureBox2.Location = new System.Drawing.Point(500, 248);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(480, 200);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox2.TabIndex = 270;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Visible = false;
            this.pictureBox2.DoubleClick += new System.EventHandler(this.pictureBox1_DoubleClick);
            this.pictureBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Gainsboro;
            this.pictureBox1.Location = new System.Drawing.Point(8, 248);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(477, 200);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 271;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Visible = false;
            this.pictureBox1.DoubleClick += new System.EventHandler(this.pictureBox1_DoubleClick);
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.stateViewR);
            this.groupBox2.Location = new System.Drawing.Point(500, 15);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(480, 224);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "运行步骤";
            // 
            // stateViewR
            // 
            this.stateViewR.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.stateViewR.Dock = System.Windows.Forms.DockStyle.Fill;
            this.stateViewR.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.stateViewR.HideSelection = false;
            this.stateViewR.Location = new System.Drawing.Point(3, 25);
            this.stateViewR.MultiSelect = false;
            this.stateViewR.Name = "stateViewR";
            this.stateViewR.Size = new System.Drawing.Size(474, 196);
            this.stateViewR.TabIndex = 0;
            this.stateViewR.UseCompatibleStateImageBehavior = false;
            // 
            // gb_right
            // 
            this.gb_right.Controls.Add(this.listViewR);
            this.gb_right.Location = new System.Drawing.Point(504, 46);
            this.gb_right.Name = "gb_right";
            this.gb_right.Size = new System.Drawing.Size(480, 187);
            this.gb_right.TabIndex = 272;
            this.gb_right.TabStop = false;
            this.gb_right.Text = "右侧料仓";
            // 
            // listViewR
            // 
            this.listViewR.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.listViewR.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewR.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listViewR.HideSelection = false;
            this.listViewR.Location = new System.Drawing.Point(3, 19);
            this.listViewR.MultiSelect = false;
            this.listViewR.Name = "listViewR";
            this.listViewR.ShowGroups = false;
            this.listViewR.Size = new System.Drawing.Size(474, 165);
            this.listViewR.TabIndex = 2;
            this.listViewR.UseCompatibleStateImageBehavior = false;
            // 
            // gb_left
            // 
            this.gb_left.Controls.Add(this.listViewL);
            this.gb_left.Location = new System.Drawing.Point(15, 46);
            this.gb_left.Name = "gb_left";
            this.gb_left.Size = new System.Drawing.Size(480, 187);
            this.gb_left.TabIndex = 272;
            this.gb_left.TabStop = false;
            this.gb_left.Text = "左侧料仓";
            // 
            // listViewL
            // 
            this.listViewL.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.listViewL.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewL.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listViewL.HideSelection = false;
            this.listViewL.Location = new System.Drawing.Point(3, 19);
            this.listViewL.MultiSelect = false;
            this.listViewL.Name = "listViewL";
            this.listViewL.ShowGroups = false;
            this.listViewL.Size = new System.Drawing.Size(474, 165);
            this.listViewL.TabIndex = 2;
            this.listViewL.UseCompatibleStateImageBehavior = false;
            // 
            // btn_IgnoreX09
            // 
            this.btn_IgnoreX09.BackColor = System.Drawing.Color.OrangeRed;
            this.btn_IgnoreX09.Location = new System.Drawing.Point(683, 0);
            this.btn_IgnoreX09.Name = "btn_IgnoreX09";
            this.btn_IgnoreX09.Size = new System.Drawing.Size(301, 40);
            this.btn_IgnoreX09.TabIndex = 6;
            this.btn_IgnoreX09.Text = "忽略X23错误,并继续运行";
            this.btn_IgnoreX09.UseVisualStyleBackColor = false;
            this.btn_IgnoreX09.Visible = false;
            this.btn_IgnoreX09.Click += new System.EventHandler(this.btn_IgnoreX09_Click);
            // 
            // btn_PauseBuzzer
            // 
            this.btn_PauseBuzzer.BackColor = System.Drawing.Color.OrangeRed;
            this.btn_PauseBuzzer.Location = new System.Drawing.Point(348, 0);
            this.btn_PauseBuzzer.Name = "btn_PauseBuzzer";
            this.btn_PauseBuzzer.Size = new System.Drawing.Size(301, 40);
            this.btn_PauseBuzzer.TabIndex = 6;
            this.btn_PauseBuzzer.Text = "本次暂停警报器响声";
            this.btn_PauseBuzzer.UseVisualStyleBackColor = false;
            this.btn_PauseBuzzer.Visible = false;
            this.btn_PauseBuzzer.Click += new System.EventHandler(this.btn_PauseBuzzer_Click);
            // 
            // Form1
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(1008, 729);
            this.Controls.Add(this.gb_right);
            this.Controls.Add(this.btn_IgnoreX09);
            this.Controls.Add(this.gb_left);
            this.Controls.Add(this.btn_PauseBuzzer);
            this.Controls.Add(this.tabc);
            this.Controls.Add(this.menuStrip1);
            this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.Shown += new System.EventHandler(this.Form1_Shown);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.tabc.ResumeLayout(false);
            this.tabP1.ResumeLayout(false);
            this.pnl.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.groupBox2.ResumeLayout(false);
            this.gb_right.ResumeLayout(false);
            this.gb_left.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 设备操作ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
        private System.Windows.Forms.TabControl tabc;
        private System.Windows.Forms.ToolStripMenuItem 启用调试模式ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
        private System.Windows.Forms.ListView listViewL;
        private System.Windows.Forms.TabPage tabP1;
        private System.Windows.Forms.ListView stateViewL;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.ToolStripMenuItem 关于ToolStripMenuItem;
        private System.Windows.Forms.Button btn_PauseBuzzer;
        private System.Windows.Forms.PictureBox pictureBox2;
        private System.Windows.Forms.PictureBox pictureBox1;
        private System.Windows.Forms.Button btn_IgnoreX09;
        private System.Windows.Forms.Panel pnl;
        private System.Windows.Forms.ToolStripMenuItem 语言toolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 简体中文ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem englishToolStripMenuItem;
        private System.Windows.Forms.GroupBox gb_right;
        private System.Windows.Forms.ListView listViewR;
        private System.Windows.Forms.GroupBox gb_left;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.ListView stateViewR;
        private System.Windows.Forms.ToolStripMenuItem 全部启动ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
        private System.Windows.Forms.ToolStripMenuItem 全部停止ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
        private System.Windows.Forms.ToolStripMenuItem 禁用蜂鸣器ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
    }
}