diff --git a/HPG-68D.resources/HPG-68D.resources.csproj b/HPG-68D.resources/HPG-68D.resources.csproj
index 3fb932b..9786e3f 100644
--- a/HPG-68D.resources/HPG-68D.resources.csproj
+++ b/HPG-68D.resources/HPG-68D.resources.csproj
@@ -7,7 +7,7 @@
{8C21DBEE-193D-45EA-8EAD-06C77A14BA4E}
Library
HPG-68D.resources
- v3.5
+ v4.8
1.0.0.0
512
diff --git a/HPG-68D/AboutForm.cs b/HPG-68D/AboutForm.cs
index ca7b40c..6e1402e 100644
--- a/HPG-68D/AboutForm.cs
+++ b/HPG-68D/AboutForm.cs
@@ -1,10 +1,4 @@
-// Decompiled with JetBrains decompiler
-// Type: HPG_68D.AboutForm
-// Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
-// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-
-using HPG_68D.My;
+using HPG_68D.My;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.Collections;
@@ -150,8 +144,10 @@ namespace HPG_68D
internal virtual Label Label发布时间
{
- [DebuggerNonUserCode] get => _Label发布时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
+ [DebuggerNonUserCode]
+ get => _Label发布时间;
+ [DebuggerNonUserCode][MethodImpl(MethodImplOptions.Synchronized)]
+ set
{
_Label发布时间 = value;
}
@@ -167,8 +163,8 @@ namespace HPG_68D
private void AboutForm_Load(object sender, EventArgs e)
{
- Label版本.Text = Operators.CompareString(publicva.Language, "zh-CN", false) != 0 ? "Version " + MyProject.Application.Info.Version.ToString() : "版本 " + MyProject.Application.Info.Version.ToString();
- Label发布时间.Text = MyProject.Application.Info.Description.ToString();
+ Label版本.Text = "Version " + MyProject.Application.Info.Version;
+ Label发布时间.Text = MyProject.Application.Info.Description;
}
}
}
diff --git a/HPG-68D/BeepForm.cs b/HPG-68D/BeepForm.cs
index c95efc9..19acb8a 100644
--- a/HPG-68D/BeepForm.cs
+++ b/HPG-68D/BeepForm.cs
@@ -4003,44 +4003,27 @@ namespace HPG_68D
{
MyProject.Forms.MDIParent1.提示音AToolStripMenuItem.Checked = true;
DataGridView1.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView1.TopLeftHeaderCell.Value = "序号";
- else
DataGridView1.TopLeftHeaderCell.Value = "NO.";
DataGridView2.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView2.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView2.TopLeftHeaderCell.Value = "NO.";
DataGridView3.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView3.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView3.TopLeftHeaderCell.Value = "NO.";
DataGridView4.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView4.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView4.TopLeftHeaderCell.Value = "NO.";
DataGridView5.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView5.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView5.TopLeftHeaderCell.Value = "NO.";
DataGridView6.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView6.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView6.TopLeftHeaderCell.Value = "NO.";
DataGridView7.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView7.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView7.TopLeftHeaderCell.Value = "NO.";
DataGridView8.RowCount = 14;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView8.TopLeftHeaderCell.Value = "序号";
- else
+
DataGridView8.TopLeftHeaderCell.Value = "NO.";
Column1_1.Items.RemoveAt(0);
Column1_2.Items.RemoveAt(0);
@@ -4050,19 +4033,7 @@ namespace HPG_68D
Column1_6.Items.RemoveAt(0);
Column1_7.Items.RemoveAt(0);
Column1_8.Items.RemoveAt(0);
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- Column1_1.Items.Insert(0, "无");
- Column1_2.Items.Insert(0, "无");
- Column1_3.Items.Insert(0, "无");
- Column1_4.Items.Insert(0, "无");
- Column1_5.Items.Insert(0, "无");
- Column1_6.Items.Insert(0, "无");
- Column1_7.Items.Insert(0, "无");
- Column1_8.Items.Insert(0, "无");
- }
- else
- {
+
Column1_1.Items.Insert(0, "None");
Column1_2.Items.Insert(0, "None");
Column1_3.Items.Insert(0, "None");
@@ -4071,7 +4042,7 @@ namespace HPG_68D
Column1_6.Items.Insert(0, "None");
Column1_7.Items.Insert(0, "None");
Column1_8.Items.Insert(0, "None");
- }
+
var num1 = 4608;
ComboBox1.SelectedIndex = publicva.EEPROM_Byte[checked (num1 + 0)];
NumericUpDown1.Value = new Decimal(publicva.EEPROM_Byte[checked (num1 + 1)]);
diff --git a/HPG-68D/ChannelEditForm.cs b/HPG-68D/ChannelEditForm.cs
index d6fbf67..55a4d84 100644
--- a/HPG-68D/ChannelEditForm.cs
+++ b/HPG-68D/ChannelEditForm.cs
@@ -15,3217 +15,3360 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class ChannelEditForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- [AccessedThroughProperty("TextBoxRxFreq")]
- private TextBox _TextBoxRxFreq;
- [AccessedThroughProperty("Label2")]
- private Label _Label2;
- [AccessedThroughProperty("GroupBox1")]
- private GroupBox _GroupBox1;
- [AccessedThroughProperty("TextBoxTxFreq")]
- private TextBox _TextBoxTxFreq;
- [AccessedThroughProperty("Label3")]
- private Label _Label3;
- [AccessedThroughProperty("ComboBoxStep")]
- private ComboBox _ComboBoxStep;
- [AccessedThroughProperty("Label4")]
- private Label _Label4;
- [AccessedThroughProperty("ComboBox亚音解码类型")]
- private ComboBox _ComboBox亚音解码类型;
- [AccessedThroughProperty("Label5")]
- private Label _Label5;
- [AccessedThroughProperty("ComboBox亚音解码")]
- private ComboBox _ComboBox亚音解码;
- [AccessedThroughProperty("Label6")]
- private Label _Label6;
- [AccessedThroughProperty("CheckBox耳语")]
- private CheckBox _CheckBox耳语;
- [AccessedThroughProperty("CheckBox尾音消除")]
- private CheckBox _CheckBox尾音消除;
- [AccessedThroughProperty("ComboBoxSP不静音")]
- private ComboBox _ComboBoxSP不静音;
- [AccessedThroughProperty("ComboBox亚音编码")]
- private ComboBox _ComboBox亚音编码;
- [AccessedThroughProperty("Label9")]
- private Label _Label9;
- [AccessedThroughProperty("Label8")]
- private Label _Label8;
- [AccessedThroughProperty("ComboBox亚音编码类型")]
- private ComboBox _ComboBox亚音编码类型;
- [AccessedThroughProperty("Label7")]
- private Label _Label7;
- [AccessedThroughProperty("CheckBoxPTTID静音")]
- private CheckBox _CheckBoxPTTID静音;
- [AccessedThroughProperty("CheckBox发射禁止")]
- private CheckBox _CheckBox发射禁止;
- [AccessedThroughProperty("CheckBoxPTTID暂停")]
- private CheckBox _CheckBoxPTTID暂停;
- [AccessedThroughProperty("ComboBox可选信令")]
- private ComboBox _ComboBox可选信令;
- [AccessedThroughProperty("ComboBox繁忙信道锁定")]
- private ComboBox _ComboBox繁忙信道锁定;
- [AccessedThroughProperty("Label11")]
- private Label _Label11;
- [AccessedThroughProperty("Label10")]
- private Label _Label10;
- [AccessedThroughProperty("CheckBox脱网")]
- private CheckBox _CheckBox脱网;
- [AccessedThroughProperty("CheckBox倒频")]
- private CheckBox _CheckBox倒频;
- [AccessedThroughProperty("ComboBox两音系统参数")]
- private ComboBox _ComboBox两音系统参数;
- [AccessedThroughProperty("ComboBox带宽")]
- private ComboBox _ComboBox带宽;
- [AccessedThroughProperty("ComboBoxPTTID")]
- private ComboBox _ComboBoxPTTID;
- [AccessedThroughProperty("Label15")]
- private Label _Label15;
- [AccessedThroughProperty("ComboBox发射功率")]
- private ComboBox _ComboBox发射功率;
- [AccessedThroughProperty("Label14")]
- private Label _Label14;
- [AccessedThroughProperty("Label13")]
- private Label _Label13;
- [AccessedThroughProperty("Label12")]
- private Label _Label12;
- [AccessedThroughProperty("ComboBox呼叫")]
- private ComboBox _ComboBox呼叫;
- [AccessedThroughProperty("ComboBox五音系统参数")]
- private ComboBox _ComboBox五音系统参数;
- [AccessedThroughProperty("Label17")]
- private Label _Label17;
- [AccessedThroughProperty("Label16")]
- private Label _Label16;
- [AccessedThroughProperty("TextBox信道名称")]
- private TextBox _TextBox信道名称;
- [AccessedThroughProperty("TextBoxID代码")]
- private TextBox _TextBoxID代码;
- [AccessedThroughProperty("Label19")]
- private Label _Label19;
- [AccessedThroughProperty("Label18")]
- private Label _Label18;
- [AccessedThroughProperty("ComboBoxSFT")]
- private ComboBox _ComboBoxSFT;
- [AccessedThroughProperty("Label20")]
- private Label _Label20;
- [AccessedThroughProperty("GroupBox2")]
- private GroupBox _GroupBox2;
- [AccessedThroughProperty("Button3")]
- private Button _Button3;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("ComboBox编辑信道号")]
- private ComboBox _ComboBox编辑信道号;
- [AccessedThroughProperty("CheckBox扫描添加")]
- private CheckBox _CheckBox扫描添加;
-
- [DebuggerNonUserCode]
- static ChannelEditForm()
+ [DesignerGenerated]
+ public class ChannelEditForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
+ [AccessedThroughProperty("TextBoxRxFreq")]
+ private TextBox _TextBoxRxFreq;
+ [AccessedThroughProperty("Label2")]
+ private Label _Label2;
+ [AccessedThroughProperty("GroupBox1")]
+ private GroupBox _GroupBox1;
+ [AccessedThroughProperty("TextBoxTxFreq")]
+ private TextBox _TextBoxTxFreq;
+ [AccessedThroughProperty("Label3")]
+ private Label _Label3;
+ [AccessedThroughProperty("ComboBoxStep")]
+ private ComboBox _ComboBoxStep;
+ [AccessedThroughProperty("Label4")]
+ private Label _Label4;
+ [AccessedThroughProperty("ComboBox亚音解码类型")]
+ private ComboBox _ComboBox亚音解码类型;
+ [AccessedThroughProperty("Label5")]
+ private Label _Label5;
+ [AccessedThroughProperty("ComboBox亚音解码")]
+ private ComboBox _ComboBox亚音解码;
+ [AccessedThroughProperty("Label6")]
+ private Label _Label6;
+ [AccessedThroughProperty("CheckBox耳语")]
+ private CheckBox _CheckBox耳语;
+ [AccessedThroughProperty("CheckBox尾音消除")]
+ private CheckBox _CheckBox尾音消除;
+ [AccessedThroughProperty("ComboBoxSP不静音")]
+ private ComboBox _ComboBoxSP不静音;
+ [AccessedThroughProperty("ComboBox亚音编码")]
+ private ComboBox _ComboBox亚音编码;
+ [AccessedThroughProperty("Label9")]
+ private Label _Label9;
+ [AccessedThroughProperty("Label8")]
+ private Label _Label8;
+ [AccessedThroughProperty("ComboBox亚音编码类型")]
+ private ComboBox _ComboBox亚音编码类型;
+ [AccessedThroughProperty("Label7")]
+ private Label _Label7;
+ [AccessedThroughProperty("CheckBoxPTTID静音")]
+ private CheckBox _CheckBoxPTTID静音;
+ [AccessedThroughProperty("CheckBox发射禁止")]
+ private CheckBox _CheckBox发射禁止;
+ [AccessedThroughProperty("CheckBoxPTTID暂停")]
+ private CheckBox _CheckBoxPTTID暂停;
+ [AccessedThroughProperty("ComboBox可选信令")]
+ private ComboBox _ComboBox可选信令;
+ [AccessedThroughProperty("ComboBox繁忙信道锁定")]
+ private ComboBox _ComboBox繁忙信道锁定;
+ [AccessedThroughProperty("Label11")]
+ private Label _Label11;
+ [AccessedThroughProperty("Label10")]
+ private Label _Label10;
+ [AccessedThroughProperty("CheckBox脱网")]
+ private CheckBox _CheckBox脱网;
+ [AccessedThroughProperty("CheckBox倒频")]
+ private CheckBox _CheckBox倒频;
+ [AccessedThroughProperty("ComboBox两音系统参数")]
+ private ComboBox _ComboBox两音系统参数;
+ [AccessedThroughProperty("ComboBox带宽")]
+ private ComboBox _ComboBox带宽;
+ [AccessedThroughProperty("ComboBoxPTTID")]
+ private ComboBox _ComboBoxPTTID;
+ [AccessedThroughProperty("Label15")]
+ private Label _Label15;
+ [AccessedThroughProperty("ComboBox发射功率")]
+ private ComboBox _ComboBox发射功率;
+ [AccessedThroughProperty("Label14")]
+ private Label _Label14;
+ [AccessedThroughProperty("Label13")]
+ private Label _Label13;
+ [AccessedThroughProperty("Label12")]
+ private Label _Label12;
+ [AccessedThroughProperty("ComboBox呼叫")]
+ private ComboBox _ComboBox呼叫;
+ [AccessedThroughProperty("ComboBox五音系统参数")]
+ private ComboBox _ComboBox五音系统参数;
+ [AccessedThroughProperty("Label17")]
+ private Label _Label17;
+ [AccessedThroughProperty("Label16")]
+ private Label _Label16;
+ [AccessedThroughProperty("TextBox信道名称")]
+ private TextBox _TextBox信道名称;
+ [AccessedThroughProperty("TextBoxID代码")]
+ private TextBox _TextBoxID代码;
+ [AccessedThroughProperty("Label19")]
+ private Label _Label19;
+ [AccessedThroughProperty("Label18")]
+ private Label _Label18;
+ [AccessedThroughProperty("ComboBoxSFT")]
+ private ComboBox _ComboBoxSFT;
+ [AccessedThroughProperty("Label20")]
+ private Label _Label20;
+ [AccessedThroughProperty("GroupBox2")]
+ private GroupBox _GroupBox2;
+ [AccessedThroughProperty("Button3")]
+ private Button _Button3;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("ComboBox编辑信道号")]
+ private ComboBox _ComboBox编辑信道号;
+ [AccessedThroughProperty("CheckBox扫描添加")]
+ private CheckBox _CheckBox扫描添加;
- [DebuggerNonUserCode]
- public ChannelEditForm()
- {
- FormClosing += ChannelEditForm_FormClosing;
- Load += ChannelEditForm_Load;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (ChannelEditForm));
- Label1 = new Label();
- TextBoxRxFreq = new TextBox();
- Label2 = new Label();
- GroupBox1 = new GroupBox();
- GroupBox2 = new GroupBox();
- ComboBox两音系统参数 = new ComboBox();
- Label18 = new Label();
- TextBoxID代码 = new TextBox();
- Label15 = new Label();
- Label16 = new Label();
- Label17 = new Label();
- ComboBox五音系统参数 = new ComboBox();
- ComboBox呼叫 = new ComboBox();
- CheckBox扫描添加 = new CheckBox();
- CheckBox脱网 = new CheckBox();
- CheckBox倒频 = new CheckBox();
- CheckBoxPTTID静音 = new CheckBox();
- CheckBox发射禁止 = new CheckBox();
- ComboBoxSP不静音 = new ComboBox();
- Label9 = new Label();
- TextBox信道名称 = new TextBox();
- Label19 = new Label();
- CheckBoxPTTID暂停 = new CheckBox();
- CheckBox耳语 = new CheckBox();
- CheckBox尾音消除 = new CheckBox();
- ComboBox可选信令 = new ComboBox();
- ComboBoxSFT = new ComboBox();
- ComboBox带宽 = new ComboBox();
- Label20 = new Label();
- ComboBoxPTTID = new ComboBox();
- ComboBox发射功率 = new ComboBox();
- Label14 = new Label();
- ComboBox繁忙信道锁定 = new ComboBox();
- Label13 = new Label();
- Label11 = new Label();
- Label12 = new Label();
- Label10 = new Label();
- ComboBox亚音编码 = new ComboBox();
- ComboBox亚音解码 = new ComboBox();
- Label8 = new Label();
- Label6 = new Label();
- ComboBox亚音编码类型 = new ComboBox();
- Label7 = new Label();
- ComboBox亚音解码类型 = new ComboBox();
- Label5 = new Label();
- ComboBoxStep = new ComboBox();
- Label4 = new Label();
- TextBoxTxFreq = new TextBox();
- Label3 = new Label();
- Button3 = new Button();
- Button2 = new Button();
- Button1 = new Button();
- ComboBox编辑信道号 = new ComboBox();
- GroupBox1.SuspendLayout();
- GroupBox2.SuspendLayout();
- SuspendLayout();
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Name = "Label1";
- componentResourceManager.ApplyResources(TextBoxRxFreq, "TextBoxRxFreq");
- TextBoxRxFreq.Name = "TextBoxRxFreq";
- componentResourceManager.ApplyResources(Label2, "Label2");
- Label2.Name = "Label2";
- GroupBox1.Controls.Add(GroupBox2);
- GroupBox1.Controls.Add(CheckBox扫描添加);
- GroupBox1.Controls.Add(CheckBox脱网);
- GroupBox1.Controls.Add(CheckBox倒频);
- GroupBox1.Controls.Add(CheckBoxPTTID静音);
- GroupBox1.Controls.Add(CheckBox发射禁止);
- GroupBox1.Controls.Add(ComboBoxSP不静音);
- GroupBox1.Controls.Add(Label9);
- GroupBox1.Controls.Add(TextBox信道名称);
- GroupBox1.Controls.Add(Label19);
- GroupBox1.Controls.Add(CheckBoxPTTID暂停);
- GroupBox1.Controls.Add(CheckBox耳语);
- GroupBox1.Controls.Add(CheckBox尾音消除);
- GroupBox1.Controls.Add(ComboBox可选信令);
- GroupBox1.Controls.Add(ComboBoxSFT);
- GroupBox1.Controls.Add(ComboBox带宽);
- GroupBox1.Controls.Add(Label20);
- GroupBox1.Controls.Add(ComboBoxPTTID);
- GroupBox1.Controls.Add(ComboBox发射功率);
- GroupBox1.Controls.Add(Label14);
- GroupBox1.Controls.Add(ComboBox繁忙信道锁定);
- GroupBox1.Controls.Add(Label13);
- GroupBox1.Controls.Add(Label11);
- GroupBox1.Controls.Add(Label12);
- GroupBox1.Controls.Add(Label10);
- GroupBox1.Controls.Add(ComboBox亚音编码);
- GroupBox1.Controls.Add(ComboBox亚音解码);
- GroupBox1.Controls.Add(Label8);
- GroupBox1.Controls.Add(Label6);
- GroupBox1.Controls.Add(ComboBox亚音编码类型);
- GroupBox1.Controls.Add(Label7);
- GroupBox1.Controls.Add(ComboBox亚音解码类型);
- GroupBox1.Controls.Add(Label5);
- GroupBox1.Controls.Add(ComboBoxStep);
- GroupBox1.Controls.Add(Label4);
- GroupBox1.Controls.Add(TextBoxTxFreq);
- GroupBox1.Controls.Add(TextBoxRxFreq);
- GroupBox1.Controls.Add(Label2);
- GroupBox1.Controls.Add(Label1);
- componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
- GroupBox1.Name = "GroupBox1";
- GroupBox1.TabStop = false;
- GroupBox2.Controls.Add(ComboBox两音系统参数);
- GroupBox2.Controls.Add(Label18);
- GroupBox2.Controls.Add(TextBoxID代码);
- GroupBox2.Controls.Add(Label15);
- GroupBox2.Controls.Add(Label16);
- GroupBox2.Controls.Add(Label17);
- GroupBox2.Controls.Add(ComboBox五音系统参数);
- GroupBox2.Controls.Add(ComboBox呼叫);
- componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
- GroupBox2.Name = "GroupBox2";
- GroupBox2.TabStop = false;
- ComboBox两音系统参数.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音系统参数.FormattingEnabled = true;
- ComboBox两音系统参数.Items.AddRange(new object[9]
- {
- componentResourceManager.GetString("ComboBox两音系统参数.Items"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items1"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items2"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items3"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items4"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items5"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items6"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items7"),
- componentResourceManager.GetString("ComboBox两音系统参数.Items8")
- });
- componentResourceManager.ApplyResources(ComboBox两音系统参数, "ComboBox两音系统参数");
- ComboBox两音系统参数.Name = "ComboBox两音系统参数";
- componentResourceManager.ApplyResources(Label18, "Label18");
- Label18.Name = "Label18";
- componentResourceManager.ApplyResources(TextBoxID代码, "TextBoxID代码");
- TextBoxID代码.Name = "TextBoxID代码";
- componentResourceManager.ApplyResources(Label15, "Label15");
- Label15.Name = "Label15";
- componentResourceManager.ApplyResources(Label16, "Label16");
- Label16.Name = "Label16";
- componentResourceManager.ApplyResources(Label17, "Label17");
- Label17.Name = "Label17";
- ComboBox五音系统参数.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox五音系统参数.FormattingEnabled = true;
- ComboBox五音系统参数.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox五音系统参数.Items"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items1"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items2"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items3"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items4"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items5"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items6"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items7"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items8"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items9"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items10"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items11"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items12"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items13"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items14"),
- componentResourceManager.GetString("ComboBox五音系统参数.Items15")
- });
- componentResourceManager.ApplyResources(ComboBox五音系统参数, "ComboBox五音系统参数");
- ComboBox五音系统参数.Name = "ComboBox五音系统参数";
- ComboBox呼叫.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox呼叫.FormattingEnabled = true;
- ComboBox呼叫.Items.AddRange(new object[1]
- {
- componentResourceManager.GetString("ComboBox呼叫.Items")
- });
- componentResourceManager.ApplyResources(ComboBox呼叫, "ComboBox呼叫");
- ComboBox呼叫.Name = "ComboBox呼叫";
- componentResourceManager.ApplyResources(CheckBox扫描添加, "CheckBox扫描添加");
- CheckBox扫描添加.Name = "CheckBox扫描添加";
- CheckBox扫描添加.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBox脱网, "CheckBox脱网");
- CheckBox脱网.Name = "CheckBox脱网";
- CheckBox脱网.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBox倒频, "CheckBox倒频");
- CheckBox倒频.Name = "CheckBox倒频";
- CheckBox倒频.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBoxPTTID静音, "CheckBoxPTTID静音");
- CheckBoxPTTID静音.Name = "CheckBoxPTTID静音";
- CheckBoxPTTID静音.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBox发射禁止, "CheckBox发射禁止");
- CheckBox发射禁止.Name = "CheckBox发射禁止";
- CheckBox发射禁止.UseVisualStyleBackColor = true;
- ComboBoxSP不静音.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxSP不静音.FormattingEnabled = true;
- ComboBoxSP不静音.Items.AddRange(new object[3]
- {
- componentResourceManager.GetString("ComboBoxSP不静音.Items"),
- componentResourceManager.GetString("ComboBoxSP不静音.Items1"),
- componentResourceManager.GetString("ComboBoxSP不静音.Items2")
- });
- componentResourceManager.ApplyResources(ComboBoxSP不静音, "ComboBoxSP不静音");
- ComboBoxSP不静音.Name = "ComboBoxSP不静音";
- componentResourceManager.ApplyResources(Label9, "Label9");
- Label9.Name = "Label9";
- componentResourceManager.ApplyResources(TextBox信道名称, "TextBox信道名称");
- TextBox信道名称.Name = "TextBox信道名称";
- componentResourceManager.ApplyResources(Label19, "Label19");
- Label19.Name = "Label19";
- componentResourceManager.ApplyResources(CheckBoxPTTID暂停, "CheckBoxPTTID暂停");
- CheckBoxPTTID暂停.Name = "CheckBoxPTTID暂停";
- CheckBoxPTTID暂停.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBox耳语, "CheckBox耳语");
- CheckBox耳语.Name = "CheckBox耳语";
- CheckBox耳语.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(CheckBox尾音消除, "CheckBox尾音消除");
- CheckBox尾音消除.Name = "CheckBox尾音消除";
- CheckBox尾音消除.UseVisualStyleBackColor = true;
- ComboBox可选信令.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox可选信令.FormattingEnabled = true;
- ComboBox可选信令.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox可选信令.Items"),
- componentResourceManager.GetString("ComboBox可选信令.Items1"),
- componentResourceManager.GetString("ComboBox可选信令.Items2"),
- componentResourceManager.GetString("ComboBox可选信令.Items3")
- });
- componentResourceManager.ApplyResources(ComboBox可选信令, "ComboBox可选信令");
- ComboBox可选信令.Name = "ComboBox可选信令";
- ComboBoxSFT.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxSFT.FormattingEnabled = true;
- ComboBoxSFT.Items.AddRange(new object[3]
- {
- componentResourceManager.GetString("ComboBoxSFT.Items"),
- componentResourceManager.GetString("ComboBoxSFT.Items1"),
- componentResourceManager.GetString("ComboBoxSFT.Items2")
- });
- componentResourceManager.ApplyResources(ComboBoxSFT, "ComboBoxSFT");
- ComboBoxSFT.Name = "ComboBoxSFT";
- ComboBox带宽.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox带宽.FormattingEnabled = true;
- ComboBox带宽.Items.AddRange(new object[3]
- {
- componentResourceManager.GetString("ComboBox带宽.Items"),
- componentResourceManager.GetString("ComboBox带宽.Items1"),
- componentResourceManager.GetString("ComboBox带宽.Items2")
- });
- componentResourceManager.ApplyResources(ComboBox带宽, "ComboBox带宽");
- ComboBox带宽.Name = "ComboBox带宽";
- componentResourceManager.ApplyResources(Label20, "Label20");
- Label20.Name = "Label20";
- ComboBoxPTTID.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxPTTID.FormattingEnabled = true;
- ComboBoxPTTID.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBoxPTTID.Items"),
- componentResourceManager.GetString("ComboBoxPTTID.Items1"),
- componentResourceManager.GetString("ComboBoxPTTID.Items2"),
- componentResourceManager.GetString("ComboBoxPTTID.Items3")
- });
- componentResourceManager.ApplyResources(ComboBoxPTTID, "ComboBoxPTTID");
- ComboBoxPTTID.Name = "ComboBoxPTTID";
- ComboBox发射功率.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox发射功率.FormattingEnabled = true;
- ComboBox发射功率.Items.AddRange(new object[3]
- {
- componentResourceManager.GetString("ComboBox发射功率.Items"),
- componentResourceManager.GetString("ComboBox发射功率.Items1"),
- componentResourceManager.GetString("ComboBox发射功率.Items2")
- });
- componentResourceManager.ApplyResources(ComboBox发射功率, "ComboBox发射功率");
- ComboBox发射功率.Name = "ComboBox发射功率";
- componentResourceManager.ApplyResources(Label14, "Label14");
- Label14.Name = "Label14";
- ComboBox繁忙信道锁定.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox繁忙信道锁定.FormattingEnabled = true;
- ComboBox繁忙信道锁定.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox繁忙信道锁定.Items"),
- componentResourceManager.GetString("ComboBox繁忙信道锁定.Items1"),
- componentResourceManager.GetString("ComboBox繁忙信道锁定.Items2"),
- componentResourceManager.GetString("ComboBox繁忙信道锁定.Items3")
- });
- componentResourceManager.ApplyResources(ComboBox繁忙信道锁定, "ComboBox繁忙信道锁定");
- ComboBox繁忙信道锁定.Name = "ComboBox繁忙信道锁定";
- componentResourceManager.ApplyResources(Label13, "Label13");
- Label13.Name = "Label13";
- componentResourceManager.ApplyResources(Label11, "Label11");
- Label11.Name = "Label11";
- componentResourceManager.ApplyResources(Label12, "Label12");
- Label12.Name = "Label12";
- componentResourceManager.ApplyResources(Label10, "Label10");
- Label10.Name = "Label10";
- ComboBox亚音编码.FormattingEnabled = true;
- ComboBox亚音编码.Items.AddRange(new object[265]
- {
- componentResourceManager.GetString("ComboBox亚音编码.Items"),
- componentResourceManager.GetString("ComboBox亚音编码.Items1"),
- componentResourceManager.GetString("ComboBox亚音编码.Items2"),
- componentResourceManager.GetString("ComboBox亚音编码.Items3"),
- componentResourceManager.GetString("ComboBox亚音编码.Items4"),
- componentResourceManager.GetString("ComboBox亚音编码.Items5"),
- componentResourceManager.GetString("ComboBox亚音编码.Items6"),
- componentResourceManager.GetString("ComboBox亚音编码.Items7"),
- componentResourceManager.GetString("ComboBox亚音编码.Items8"),
- componentResourceManager.GetString("ComboBox亚音编码.Items9"),
- componentResourceManager.GetString("ComboBox亚音编码.Items10"),
- componentResourceManager.GetString("ComboBox亚音编码.Items11"),
- componentResourceManager.GetString("ComboBox亚音编码.Items12"),
- componentResourceManager.GetString("ComboBox亚音编码.Items13"),
- componentResourceManager.GetString("ComboBox亚音编码.Items14"),
- componentResourceManager.GetString("ComboBox亚音编码.Items15"),
- componentResourceManager.GetString("ComboBox亚音编码.Items16"),
- componentResourceManager.GetString("ComboBox亚音编码.Items17"),
- componentResourceManager.GetString("ComboBox亚音编码.Items18"),
- componentResourceManager.GetString("ComboBox亚音编码.Items19"),
- componentResourceManager.GetString("ComboBox亚音编码.Items20"),
- componentResourceManager.GetString("ComboBox亚音编码.Items21"),
- componentResourceManager.GetString("ComboBox亚音编码.Items22"),
- componentResourceManager.GetString("ComboBox亚音编码.Items23"),
- componentResourceManager.GetString("ComboBox亚音编码.Items24"),
- componentResourceManager.GetString("ComboBox亚音编码.Items25"),
- componentResourceManager.GetString("ComboBox亚音编码.Items26"),
- componentResourceManager.GetString("ComboBox亚音编码.Items27"),
- componentResourceManager.GetString("ComboBox亚音编码.Items28"),
- componentResourceManager.GetString("ComboBox亚音编码.Items29"),
- componentResourceManager.GetString("ComboBox亚音编码.Items30"),
- componentResourceManager.GetString("ComboBox亚音编码.Items31"),
- componentResourceManager.GetString("ComboBox亚音编码.Items32"),
- componentResourceManager.GetString("ComboBox亚音编码.Items33"),
- componentResourceManager.GetString("ComboBox亚音编码.Items34"),
- componentResourceManager.GetString("ComboBox亚音编码.Items35"),
- componentResourceManager.GetString("ComboBox亚音编码.Items36"),
- componentResourceManager.GetString("ComboBox亚音编码.Items37"),
- componentResourceManager.GetString("ComboBox亚音编码.Items38"),
- componentResourceManager.GetString("ComboBox亚音编码.Items39"),
- componentResourceManager.GetString("ComboBox亚音编码.Items40"),
- componentResourceManager.GetString("ComboBox亚音编码.Items41"),
- componentResourceManager.GetString("ComboBox亚音编码.Items42"),
- componentResourceManager.GetString("ComboBox亚音编码.Items43"),
- componentResourceManager.GetString("ComboBox亚音编码.Items44"),
- componentResourceManager.GetString("ComboBox亚音编码.Items45"),
- componentResourceManager.GetString("ComboBox亚音编码.Items46"),
- componentResourceManager.GetString("ComboBox亚音编码.Items47"),
- componentResourceManager.GetString("ComboBox亚音编码.Items48"),
- componentResourceManager.GetString("ComboBox亚音编码.Items49"),
- componentResourceManager.GetString("ComboBox亚音编码.Items50"),
- componentResourceManager.GetString("ComboBox亚音编码.Items51"),
- componentResourceManager.GetString("ComboBox亚音编码.Items52"),
- componentResourceManager.GetString("ComboBox亚音编码.Items53"),
- componentResourceManager.GetString("ComboBox亚音编码.Items54"),
- componentResourceManager.GetString("ComboBox亚音编码.Items55"),
- componentResourceManager.GetString("ComboBox亚音编码.Items56"),
- componentResourceManager.GetString("ComboBox亚音编码.Items57"),
- componentResourceManager.GetString("ComboBox亚音编码.Items58"),
- componentResourceManager.GetString("ComboBox亚音编码.Items59"),
- componentResourceManager.GetString("ComboBox亚音编码.Items60"),
- componentResourceManager.GetString("ComboBox亚音编码.Items61"),
- componentResourceManager.GetString("ComboBox亚音编码.Items62"),
- componentResourceManager.GetString("ComboBox亚音编码.Items63"),
- componentResourceManager.GetString("ComboBox亚音编码.Items64"),
- componentResourceManager.GetString("ComboBox亚音编码.Items65"),
- componentResourceManager.GetString("ComboBox亚音编码.Items66"),
- componentResourceManager.GetString("ComboBox亚音编码.Items67"),
- componentResourceManager.GetString("ComboBox亚音编码.Items68"),
- componentResourceManager.GetString("ComboBox亚音编码.Items69"),
- componentResourceManager.GetString("ComboBox亚音编码.Items70"),
- componentResourceManager.GetString("ComboBox亚音编码.Items71"),
- componentResourceManager.GetString("ComboBox亚音编码.Items72"),
- componentResourceManager.GetString("ComboBox亚音编码.Items73"),
- componentResourceManager.GetString("ComboBox亚音编码.Items74"),
- componentResourceManager.GetString("ComboBox亚音编码.Items75"),
- componentResourceManager.GetString("ComboBox亚音编码.Items76"),
- componentResourceManager.GetString("ComboBox亚音编码.Items77"),
- componentResourceManager.GetString("ComboBox亚音编码.Items78"),
- componentResourceManager.GetString("ComboBox亚音编码.Items79"),
- componentResourceManager.GetString("ComboBox亚音编码.Items80"),
- componentResourceManager.GetString("ComboBox亚音编码.Items81"),
- componentResourceManager.GetString("ComboBox亚音编码.Items82"),
- componentResourceManager.GetString("ComboBox亚音编码.Items83"),
- componentResourceManager.GetString("ComboBox亚音编码.Items84"),
- componentResourceManager.GetString("ComboBox亚音编码.Items85"),
- componentResourceManager.GetString("ComboBox亚音编码.Items86"),
- componentResourceManager.GetString("ComboBox亚音编码.Items87"),
- componentResourceManager.GetString("ComboBox亚音编码.Items88"),
- componentResourceManager.GetString("ComboBox亚音编码.Items89"),
- componentResourceManager.GetString("ComboBox亚音编码.Items90"),
- componentResourceManager.GetString("ComboBox亚音编码.Items91"),
- componentResourceManager.GetString("ComboBox亚音编码.Items92"),
- componentResourceManager.GetString("ComboBox亚音编码.Items93"),
- componentResourceManager.GetString("ComboBox亚音编码.Items94"),
- componentResourceManager.GetString("ComboBox亚音编码.Items95"),
- componentResourceManager.GetString("ComboBox亚音编码.Items96"),
- componentResourceManager.GetString("ComboBox亚音编码.Items97"),
- componentResourceManager.GetString("ComboBox亚音编码.Items98"),
- componentResourceManager.GetString("ComboBox亚音编码.Items99"),
- componentResourceManager.GetString("ComboBox亚音编码.Items100"),
- componentResourceManager.GetString("ComboBox亚音编码.Items101"),
- componentResourceManager.GetString("ComboBox亚音编码.Items102"),
- componentResourceManager.GetString("ComboBox亚音编码.Items103"),
- componentResourceManager.GetString("ComboBox亚音编码.Items104"),
- componentResourceManager.GetString("ComboBox亚音编码.Items105"),
- componentResourceManager.GetString("ComboBox亚音编码.Items106"),
- componentResourceManager.GetString("ComboBox亚音编码.Items107"),
- componentResourceManager.GetString("ComboBox亚音编码.Items108"),
- componentResourceManager.GetString("ComboBox亚音编码.Items109"),
- componentResourceManager.GetString("ComboBox亚音编码.Items110"),
- componentResourceManager.GetString("ComboBox亚音编码.Items111"),
- componentResourceManager.GetString("ComboBox亚音编码.Items112"),
- componentResourceManager.GetString("ComboBox亚音编码.Items113"),
- componentResourceManager.GetString("ComboBox亚音编码.Items114"),
- componentResourceManager.GetString("ComboBox亚音编码.Items115"),
- componentResourceManager.GetString("ComboBox亚音编码.Items116"),
- componentResourceManager.GetString("ComboBox亚音编码.Items117"),
- componentResourceManager.GetString("ComboBox亚音编码.Items118"),
- componentResourceManager.GetString("ComboBox亚音编码.Items119"),
- componentResourceManager.GetString("ComboBox亚音编码.Items120"),
- componentResourceManager.GetString("ComboBox亚音编码.Items121"),
- componentResourceManager.GetString("ComboBox亚音编码.Items122"),
- componentResourceManager.GetString("ComboBox亚音编码.Items123"),
- componentResourceManager.GetString("ComboBox亚音编码.Items124"),
- componentResourceManager.GetString("ComboBox亚音编码.Items125"),
- componentResourceManager.GetString("ComboBox亚音编码.Items126"),
- componentResourceManager.GetString("ComboBox亚音编码.Items127"),
- componentResourceManager.GetString("ComboBox亚音编码.Items128"),
- componentResourceManager.GetString("ComboBox亚音编码.Items129"),
- componentResourceManager.GetString("ComboBox亚音编码.Items130"),
- componentResourceManager.GetString("ComboBox亚音编码.Items131"),
- componentResourceManager.GetString("ComboBox亚音编码.Items132"),
- componentResourceManager.GetString("ComboBox亚音编码.Items133"),
- componentResourceManager.GetString("ComboBox亚音编码.Items134"),
- componentResourceManager.GetString("ComboBox亚音编码.Items135"),
- componentResourceManager.GetString("ComboBox亚音编码.Items136"),
- componentResourceManager.GetString("ComboBox亚音编码.Items137"),
- componentResourceManager.GetString("ComboBox亚音编码.Items138"),
- componentResourceManager.GetString("ComboBox亚音编码.Items139"),
- componentResourceManager.GetString("ComboBox亚音编码.Items140"),
- componentResourceManager.GetString("ComboBox亚音编码.Items141"),
- componentResourceManager.GetString("ComboBox亚音编码.Items142"),
- componentResourceManager.GetString("ComboBox亚音编码.Items143"),
- componentResourceManager.GetString("ComboBox亚音编码.Items144"),
- componentResourceManager.GetString("ComboBox亚音编码.Items145"),
- componentResourceManager.GetString("ComboBox亚音编码.Items146"),
- componentResourceManager.GetString("ComboBox亚音编码.Items147"),
- componentResourceManager.GetString("ComboBox亚音编码.Items148"),
- componentResourceManager.GetString("ComboBox亚音编码.Items149"),
- componentResourceManager.GetString("ComboBox亚音编码.Items150"),
- componentResourceManager.GetString("ComboBox亚音编码.Items151"),
- componentResourceManager.GetString("ComboBox亚音编码.Items152"),
- componentResourceManager.GetString("ComboBox亚音编码.Items153"),
- componentResourceManager.GetString("ComboBox亚音编码.Items154"),
- componentResourceManager.GetString("ComboBox亚音编码.Items155"),
- componentResourceManager.GetString("ComboBox亚音编码.Items156"),
- componentResourceManager.GetString("ComboBox亚音编码.Items157"),
- componentResourceManager.GetString("ComboBox亚音编码.Items158"),
- componentResourceManager.GetString("ComboBox亚音编码.Items159"),
- componentResourceManager.GetString("ComboBox亚音编码.Items160"),
- componentResourceManager.GetString("ComboBox亚音编码.Items161"),
- componentResourceManager.GetString("ComboBox亚音编码.Items162"),
- componentResourceManager.GetString("ComboBox亚音编码.Items163"),
- componentResourceManager.GetString("ComboBox亚音编码.Items164"),
- componentResourceManager.GetString("ComboBox亚音编码.Items165"),
- componentResourceManager.GetString("ComboBox亚音编码.Items166"),
- componentResourceManager.GetString("ComboBox亚音编码.Items167"),
- componentResourceManager.GetString("ComboBox亚音编码.Items168"),
- componentResourceManager.GetString("ComboBox亚音编码.Items169"),
- componentResourceManager.GetString("ComboBox亚音编码.Items170"),
- componentResourceManager.GetString("ComboBox亚音编码.Items171"),
- componentResourceManager.GetString("ComboBox亚音编码.Items172"),
- componentResourceManager.GetString("ComboBox亚音编码.Items173"),
- componentResourceManager.GetString("ComboBox亚音编码.Items174"),
- componentResourceManager.GetString("ComboBox亚音编码.Items175"),
- componentResourceManager.GetString("ComboBox亚音编码.Items176"),
- componentResourceManager.GetString("ComboBox亚音编码.Items177"),
- componentResourceManager.GetString("ComboBox亚音编码.Items178"),
- componentResourceManager.GetString("ComboBox亚音编码.Items179"),
- componentResourceManager.GetString("ComboBox亚音编码.Items180"),
- componentResourceManager.GetString("ComboBox亚音编码.Items181"),
- componentResourceManager.GetString("ComboBox亚音编码.Items182"),
- componentResourceManager.GetString("ComboBox亚音编码.Items183"),
- componentResourceManager.GetString("ComboBox亚音编码.Items184"),
- componentResourceManager.GetString("ComboBox亚音编码.Items185"),
- componentResourceManager.GetString("ComboBox亚音编码.Items186"),
- componentResourceManager.GetString("ComboBox亚音编码.Items187"),
- componentResourceManager.GetString("ComboBox亚音编码.Items188"),
- componentResourceManager.GetString("ComboBox亚音编码.Items189"),
- componentResourceManager.GetString("ComboBox亚音编码.Items190"),
- componentResourceManager.GetString("ComboBox亚音编码.Items191"),
- componentResourceManager.GetString("ComboBox亚音编码.Items192"),
- componentResourceManager.GetString("ComboBox亚音编码.Items193"),
- componentResourceManager.GetString("ComboBox亚音编码.Items194"),
- componentResourceManager.GetString("ComboBox亚音编码.Items195"),
- componentResourceManager.GetString("ComboBox亚音编码.Items196"),
- componentResourceManager.GetString("ComboBox亚音编码.Items197"),
- componentResourceManager.GetString("ComboBox亚音编码.Items198"),
- componentResourceManager.GetString("ComboBox亚音编码.Items199"),
- componentResourceManager.GetString("ComboBox亚音编码.Items200"),
- componentResourceManager.GetString("ComboBox亚音编码.Items201"),
- componentResourceManager.GetString("ComboBox亚音编码.Items202"),
- componentResourceManager.GetString("ComboBox亚音编码.Items203"),
- componentResourceManager.GetString("ComboBox亚音编码.Items204"),
- componentResourceManager.GetString("ComboBox亚音编码.Items205"),
- componentResourceManager.GetString("ComboBox亚音编码.Items206"),
- componentResourceManager.GetString("ComboBox亚音编码.Items207"),
- componentResourceManager.GetString("ComboBox亚音编码.Items208"),
- componentResourceManager.GetString("ComboBox亚音编码.Items209"),
- componentResourceManager.GetString("ComboBox亚音编码.Items210"),
- componentResourceManager.GetString("ComboBox亚音编码.Items211"),
- componentResourceManager.GetString("ComboBox亚音编码.Items212"),
- componentResourceManager.GetString("ComboBox亚音编码.Items213"),
- componentResourceManager.GetString("ComboBox亚音编码.Items214"),
- componentResourceManager.GetString("ComboBox亚音编码.Items215"),
- componentResourceManager.GetString("ComboBox亚音编码.Items216"),
- componentResourceManager.GetString("ComboBox亚音编码.Items217"),
- componentResourceManager.GetString("ComboBox亚音编码.Items218"),
- componentResourceManager.GetString("ComboBox亚音编码.Items219"),
- componentResourceManager.GetString("ComboBox亚音编码.Items220"),
- componentResourceManager.GetString("ComboBox亚音编码.Items221"),
- componentResourceManager.GetString("ComboBox亚音编码.Items222"),
- componentResourceManager.GetString("ComboBox亚音编码.Items223"),
- componentResourceManager.GetString("ComboBox亚音编码.Items224"),
- componentResourceManager.GetString("ComboBox亚音编码.Items225"),
- componentResourceManager.GetString("ComboBox亚音编码.Items226"),
- componentResourceManager.GetString("ComboBox亚音编码.Items227"),
- componentResourceManager.GetString("ComboBox亚音编码.Items228"),
- componentResourceManager.GetString("ComboBox亚音编码.Items229"),
- componentResourceManager.GetString("ComboBox亚音编码.Items230"),
- componentResourceManager.GetString("ComboBox亚音编码.Items231"),
- componentResourceManager.GetString("ComboBox亚音编码.Items232"),
- componentResourceManager.GetString("ComboBox亚音编码.Items233"),
- componentResourceManager.GetString("ComboBox亚音编码.Items234"),
- componentResourceManager.GetString("ComboBox亚音编码.Items235"),
- componentResourceManager.GetString("ComboBox亚音编码.Items236"),
- componentResourceManager.GetString("ComboBox亚音编码.Items237"),
- componentResourceManager.GetString("ComboBox亚音编码.Items238"),
- componentResourceManager.GetString("ComboBox亚音编码.Items239"),
- componentResourceManager.GetString("ComboBox亚音编码.Items240"),
- componentResourceManager.GetString("ComboBox亚音编码.Items241"),
- componentResourceManager.GetString("ComboBox亚音编码.Items242"),
- componentResourceManager.GetString("ComboBox亚音编码.Items243"),
- componentResourceManager.GetString("ComboBox亚音编码.Items244"),
- componentResourceManager.GetString("ComboBox亚音编码.Items245"),
- componentResourceManager.GetString("ComboBox亚音编码.Items246"),
- componentResourceManager.GetString("ComboBox亚音编码.Items247"),
- componentResourceManager.GetString("ComboBox亚音编码.Items248"),
- componentResourceManager.GetString("ComboBox亚音编码.Items249"),
- componentResourceManager.GetString("ComboBox亚音编码.Items250"),
- componentResourceManager.GetString("ComboBox亚音编码.Items251"),
- componentResourceManager.GetString("ComboBox亚音编码.Items252"),
- componentResourceManager.GetString("ComboBox亚音编码.Items253"),
- componentResourceManager.GetString("ComboBox亚音编码.Items254"),
- componentResourceManager.GetString("ComboBox亚音编码.Items255"),
- componentResourceManager.GetString("ComboBox亚音编码.Items256"),
- componentResourceManager.GetString("ComboBox亚音编码.Items257"),
- componentResourceManager.GetString("ComboBox亚音编码.Items258"),
- componentResourceManager.GetString("ComboBox亚音编码.Items259"),
- componentResourceManager.GetString("ComboBox亚音编码.Items260"),
- componentResourceManager.GetString("ComboBox亚音编码.Items261"),
- componentResourceManager.GetString("ComboBox亚音编码.Items262"),
- componentResourceManager.GetString("ComboBox亚音编码.Items263"),
- componentResourceManager.GetString("ComboBox亚音编码.Items264")
- });
- componentResourceManager.ApplyResources(ComboBox亚音编码, "ComboBox亚音编码");
- ComboBox亚音编码.Name = "ComboBox亚音编码";
- ComboBox亚音解码.FormattingEnabled = true;
- ComboBox亚音解码.Items.AddRange(new object[265]
- {
- componentResourceManager.GetString("ComboBox亚音解码.Items"),
- componentResourceManager.GetString("ComboBox亚音解码.Items1"),
- componentResourceManager.GetString("ComboBox亚音解码.Items2"),
- componentResourceManager.GetString("ComboBox亚音解码.Items3"),
- componentResourceManager.GetString("ComboBox亚音解码.Items4"),
- componentResourceManager.GetString("ComboBox亚音解码.Items5"),
- componentResourceManager.GetString("ComboBox亚音解码.Items6"),
- componentResourceManager.GetString("ComboBox亚音解码.Items7"),
- componentResourceManager.GetString("ComboBox亚音解码.Items8"),
- componentResourceManager.GetString("ComboBox亚音解码.Items9"),
- componentResourceManager.GetString("ComboBox亚音解码.Items10"),
- componentResourceManager.GetString("ComboBox亚音解码.Items11"),
- componentResourceManager.GetString("ComboBox亚音解码.Items12"),
- componentResourceManager.GetString("ComboBox亚音解码.Items13"),
- componentResourceManager.GetString("ComboBox亚音解码.Items14"),
- componentResourceManager.GetString("ComboBox亚音解码.Items15"),
- componentResourceManager.GetString("ComboBox亚音解码.Items16"),
- componentResourceManager.GetString("ComboBox亚音解码.Items17"),
- componentResourceManager.GetString("ComboBox亚音解码.Items18"),
- componentResourceManager.GetString("ComboBox亚音解码.Items19"),
- componentResourceManager.GetString("ComboBox亚音解码.Items20"),
- componentResourceManager.GetString("ComboBox亚音解码.Items21"),
- componentResourceManager.GetString("ComboBox亚音解码.Items22"),
- componentResourceManager.GetString("ComboBox亚音解码.Items23"),
- componentResourceManager.GetString("ComboBox亚音解码.Items24"),
- componentResourceManager.GetString("ComboBox亚音解码.Items25"),
- componentResourceManager.GetString("ComboBox亚音解码.Items26"),
- componentResourceManager.GetString("ComboBox亚音解码.Items27"),
- componentResourceManager.GetString("ComboBox亚音解码.Items28"),
- componentResourceManager.GetString("ComboBox亚音解码.Items29"),
- componentResourceManager.GetString("ComboBox亚音解码.Items30"),
- componentResourceManager.GetString("ComboBox亚音解码.Items31"),
- componentResourceManager.GetString("ComboBox亚音解码.Items32"),
- componentResourceManager.GetString("ComboBox亚音解码.Items33"),
- componentResourceManager.GetString("ComboBox亚音解码.Items34"),
- componentResourceManager.GetString("ComboBox亚音解码.Items35"),
- componentResourceManager.GetString("ComboBox亚音解码.Items36"),
- componentResourceManager.GetString("ComboBox亚音解码.Items37"),
- componentResourceManager.GetString("ComboBox亚音解码.Items38"),
- componentResourceManager.GetString("ComboBox亚音解码.Items39"),
- componentResourceManager.GetString("ComboBox亚音解码.Items40"),
- componentResourceManager.GetString("ComboBox亚音解码.Items41"),
- componentResourceManager.GetString("ComboBox亚音解码.Items42"),
- componentResourceManager.GetString("ComboBox亚音解码.Items43"),
- componentResourceManager.GetString("ComboBox亚音解码.Items44"),
- componentResourceManager.GetString("ComboBox亚音解码.Items45"),
- componentResourceManager.GetString("ComboBox亚音解码.Items46"),
- componentResourceManager.GetString("ComboBox亚音解码.Items47"),
- componentResourceManager.GetString("ComboBox亚音解码.Items48"),
- componentResourceManager.GetString("ComboBox亚音解码.Items49"),
- componentResourceManager.GetString("ComboBox亚音解码.Items50"),
- componentResourceManager.GetString("ComboBox亚音解码.Items51"),
- componentResourceManager.GetString("ComboBox亚音解码.Items52"),
- componentResourceManager.GetString("ComboBox亚音解码.Items53"),
- componentResourceManager.GetString("ComboBox亚音解码.Items54"),
- componentResourceManager.GetString("ComboBox亚音解码.Items55"),
- componentResourceManager.GetString("ComboBox亚音解码.Items56"),
- componentResourceManager.GetString("ComboBox亚音解码.Items57"),
- componentResourceManager.GetString("ComboBox亚音解码.Items58"),
- componentResourceManager.GetString("ComboBox亚音解码.Items59"),
- componentResourceManager.GetString("ComboBox亚音解码.Items60"),
- componentResourceManager.GetString("ComboBox亚音解码.Items61"),
- componentResourceManager.GetString("ComboBox亚音解码.Items62"),
- componentResourceManager.GetString("ComboBox亚音解码.Items63"),
- componentResourceManager.GetString("ComboBox亚音解码.Items64"),
- componentResourceManager.GetString("ComboBox亚音解码.Items65"),
- componentResourceManager.GetString("ComboBox亚音解码.Items66"),
- componentResourceManager.GetString("ComboBox亚音解码.Items67"),
- componentResourceManager.GetString("ComboBox亚音解码.Items68"),
- componentResourceManager.GetString("ComboBox亚音解码.Items69"),
- componentResourceManager.GetString("ComboBox亚音解码.Items70"),
- componentResourceManager.GetString("ComboBox亚音解码.Items71"),
- componentResourceManager.GetString("ComboBox亚音解码.Items72"),
- componentResourceManager.GetString("ComboBox亚音解码.Items73"),
- componentResourceManager.GetString("ComboBox亚音解码.Items74"),
- componentResourceManager.GetString("ComboBox亚音解码.Items75"),
- componentResourceManager.GetString("ComboBox亚音解码.Items76"),
- componentResourceManager.GetString("ComboBox亚音解码.Items77"),
- componentResourceManager.GetString("ComboBox亚音解码.Items78"),
- componentResourceManager.GetString("ComboBox亚音解码.Items79"),
- componentResourceManager.GetString("ComboBox亚音解码.Items80"),
- componentResourceManager.GetString("ComboBox亚音解码.Items81"),
- componentResourceManager.GetString("ComboBox亚音解码.Items82"),
- componentResourceManager.GetString("ComboBox亚音解码.Items83"),
- componentResourceManager.GetString("ComboBox亚音解码.Items84"),
- componentResourceManager.GetString("ComboBox亚音解码.Items85"),
- componentResourceManager.GetString("ComboBox亚音解码.Items86"),
- componentResourceManager.GetString("ComboBox亚音解码.Items87"),
- componentResourceManager.GetString("ComboBox亚音解码.Items88"),
- componentResourceManager.GetString("ComboBox亚音解码.Items89"),
- componentResourceManager.GetString("ComboBox亚音解码.Items90"),
- componentResourceManager.GetString("ComboBox亚音解码.Items91"),
- componentResourceManager.GetString("ComboBox亚音解码.Items92"),
- componentResourceManager.GetString("ComboBox亚音解码.Items93"),
- componentResourceManager.GetString("ComboBox亚音解码.Items94"),
- componentResourceManager.GetString("ComboBox亚音解码.Items95"),
- componentResourceManager.GetString("ComboBox亚音解码.Items96"),
- componentResourceManager.GetString("ComboBox亚音解码.Items97"),
- componentResourceManager.GetString("ComboBox亚音解码.Items98"),
- componentResourceManager.GetString("ComboBox亚音解码.Items99"),
- componentResourceManager.GetString("ComboBox亚音解码.Items100"),
- componentResourceManager.GetString("ComboBox亚音解码.Items101"),
- componentResourceManager.GetString("ComboBox亚音解码.Items102"),
- componentResourceManager.GetString("ComboBox亚音解码.Items103"),
- componentResourceManager.GetString("ComboBox亚音解码.Items104"),
- componentResourceManager.GetString("ComboBox亚音解码.Items105"),
- componentResourceManager.GetString("ComboBox亚音解码.Items106"),
- componentResourceManager.GetString("ComboBox亚音解码.Items107"),
- componentResourceManager.GetString("ComboBox亚音解码.Items108"),
- componentResourceManager.GetString("ComboBox亚音解码.Items109"),
- componentResourceManager.GetString("ComboBox亚音解码.Items110"),
- componentResourceManager.GetString("ComboBox亚音解码.Items111"),
- componentResourceManager.GetString("ComboBox亚音解码.Items112"),
- componentResourceManager.GetString("ComboBox亚音解码.Items113"),
- componentResourceManager.GetString("ComboBox亚音解码.Items114"),
- componentResourceManager.GetString("ComboBox亚音解码.Items115"),
- componentResourceManager.GetString("ComboBox亚音解码.Items116"),
- componentResourceManager.GetString("ComboBox亚音解码.Items117"),
- componentResourceManager.GetString("ComboBox亚音解码.Items118"),
- componentResourceManager.GetString("ComboBox亚音解码.Items119"),
- componentResourceManager.GetString("ComboBox亚音解码.Items120"),
- componentResourceManager.GetString("ComboBox亚音解码.Items121"),
- componentResourceManager.GetString("ComboBox亚音解码.Items122"),
- componentResourceManager.GetString("ComboBox亚音解码.Items123"),
- componentResourceManager.GetString("ComboBox亚音解码.Items124"),
- componentResourceManager.GetString("ComboBox亚音解码.Items125"),
- componentResourceManager.GetString("ComboBox亚音解码.Items126"),
- componentResourceManager.GetString("ComboBox亚音解码.Items127"),
- componentResourceManager.GetString("ComboBox亚音解码.Items128"),
- componentResourceManager.GetString("ComboBox亚音解码.Items129"),
- componentResourceManager.GetString("ComboBox亚音解码.Items130"),
- componentResourceManager.GetString("ComboBox亚音解码.Items131"),
- componentResourceManager.GetString("ComboBox亚音解码.Items132"),
- componentResourceManager.GetString("ComboBox亚音解码.Items133"),
- componentResourceManager.GetString("ComboBox亚音解码.Items134"),
- componentResourceManager.GetString("ComboBox亚音解码.Items135"),
- componentResourceManager.GetString("ComboBox亚音解码.Items136"),
- componentResourceManager.GetString("ComboBox亚音解码.Items137"),
- componentResourceManager.GetString("ComboBox亚音解码.Items138"),
- componentResourceManager.GetString("ComboBox亚音解码.Items139"),
- componentResourceManager.GetString("ComboBox亚音解码.Items140"),
- componentResourceManager.GetString("ComboBox亚音解码.Items141"),
- componentResourceManager.GetString("ComboBox亚音解码.Items142"),
- componentResourceManager.GetString("ComboBox亚音解码.Items143"),
- componentResourceManager.GetString("ComboBox亚音解码.Items144"),
- componentResourceManager.GetString("ComboBox亚音解码.Items145"),
- componentResourceManager.GetString("ComboBox亚音解码.Items146"),
- componentResourceManager.GetString("ComboBox亚音解码.Items147"),
- componentResourceManager.GetString("ComboBox亚音解码.Items148"),
- componentResourceManager.GetString("ComboBox亚音解码.Items149"),
- componentResourceManager.GetString("ComboBox亚音解码.Items150"),
- componentResourceManager.GetString("ComboBox亚音解码.Items151"),
- componentResourceManager.GetString("ComboBox亚音解码.Items152"),
- componentResourceManager.GetString("ComboBox亚音解码.Items153"),
- componentResourceManager.GetString("ComboBox亚音解码.Items154"),
- componentResourceManager.GetString("ComboBox亚音解码.Items155"),
- componentResourceManager.GetString("ComboBox亚音解码.Items156"),
- componentResourceManager.GetString("ComboBox亚音解码.Items157"),
- componentResourceManager.GetString("ComboBox亚音解码.Items158"),
- componentResourceManager.GetString("ComboBox亚音解码.Items159"),
- componentResourceManager.GetString("ComboBox亚音解码.Items160"),
- componentResourceManager.GetString("ComboBox亚音解码.Items161"),
- componentResourceManager.GetString("ComboBox亚音解码.Items162"),
- componentResourceManager.GetString("ComboBox亚音解码.Items163"),
- componentResourceManager.GetString("ComboBox亚音解码.Items164"),
- componentResourceManager.GetString("ComboBox亚音解码.Items165"),
- componentResourceManager.GetString("ComboBox亚音解码.Items166"),
- componentResourceManager.GetString("ComboBox亚音解码.Items167"),
- componentResourceManager.GetString("ComboBox亚音解码.Items168"),
- componentResourceManager.GetString("ComboBox亚音解码.Items169"),
- componentResourceManager.GetString("ComboBox亚音解码.Items170"),
- componentResourceManager.GetString("ComboBox亚音解码.Items171"),
- componentResourceManager.GetString("ComboBox亚音解码.Items172"),
- componentResourceManager.GetString("ComboBox亚音解码.Items173"),
- componentResourceManager.GetString("ComboBox亚音解码.Items174"),
- componentResourceManager.GetString("ComboBox亚音解码.Items175"),
- componentResourceManager.GetString("ComboBox亚音解码.Items176"),
- componentResourceManager.GetString("ComboBox亚音解码.Items177"),
- componentResourceManager.GetString("ComboBox亚音解码.Items178"),
- componentResourceManager.GetString("ComboBox亚音解码.Items179"),
- componentResourceManager.GetString("ComboBox亚音解码.Items180"),
- componentResourceManager.GetString("ComboBox亚音解码.Items181"),
- componentResourceManager.GetString("ComboBox亚音解码.Items182"),
- componentResourceManager.GetString("ComboBox亚音解码.Items183"),
- componentResourceManager.GetString("ComboBox亚音解码.Items184"),
- componentResourceManager.GetString("ComboBox亚音解码.Items185"),
- componentResourceManager.GetString("ComboBox亚音解码.Items186"),
- componentResourceManager.GetString("ComboBox亚音解码.Items187"),
- componentResourceManager.GetString("ComboBox亚音解码.Items188"),
- componentResourceManager.GetString("ComboBox亚音解码.Items189"),
- componentResourceManager.GetString("ComboBox亚音解码.Items190"),
- componentResourceManager.GetString("ComboBox亚音解码.Items191"),
- componentResourceManager.GetString("ComboBox亚音解码.Items192"),
- componentResourceManager.GetString("ComboBox亚音解码.Items193"),
- componentResourceManager.GetString("ComboBox亚音解码.Items194"),
- componentResourceManager.GetString("ComboBox亚音解码.Items195"),
- componentResourceManager.GetString("ComboBox亚音解码.Items196"),
- componentResourceManager.GetString("ComboBox亚音解码.Items197"),
- componentResourceManager.GetString("ComboBox亚音解码.Items198"),
- componentResourceManager.GetString("ComboBox亚音解码.Items199"),
- componentResourceManager.GetString("ComboBox亚音解码.Items200"),
- componentResourceManager.GetString("ComboBox亚音解码.Items201"),
- componentResourceManager.GetString("ComboBox亚音解码.Items202"),
- componentResourceManager.GetString("ComboBox亚音解码.Items203"),
- componentResourceManager.GetString("ComboBox亚音解码.Items204"),
- componentResourceManager.GetString("ComboBox亚音解码.Items205"),
- componentResourceManager.GetString("ComboBox亚音解码.Items206"),
- componentResourceManager.GetString("ComboBox亚音解码.Items207"),
- componentResourceManager.GetString("ComboBox亚音解码.Items208"),
- componentResourceManager.GetString("ComboBox亚音解码.Items209"),
- componentResourceManager.GetString("ComboBox亚音解码.Items210"),
- componentResourceManager.GetString("ComboBox亚音解码.Items211"),
- componentResourceManager.GetString("ComboBox亚音解码.Items212"),
- componentResourceManager.GetString("ComboBox亚音解码.Items213"),
- componentResourceManager.GetString("ComboBox亚音解码.Items214"),
- componentResourceManager.GetString("ComboBox亚音解码.Items215"),
- componentResourceManager.GetString("ComboBox亚音解码.Items216"),
- componentResourceManager.GetString("ComboBox亚音解码.Items217"),
- componentResourceManager.GetString("ComboBox亚音解码.Items218"),
- componentResourceManager.GetString("ComboBox亚音解码.Items219"),
- componentResourceManager.GetString("ComboBox亚音解码.Items220"),
- componentResourceManager.GetString("ComboBox亚音解码.Items221"),
- componentResourceManager.GetString("ComboBox亚音解码.Items222"),
- componentResourceManager.GetString("ComboBox亚音解码.Items223"),
- componentResourceManager.GetString("ComboBox亚音解码.Items224"),
- componentResourceManager.GetString("ComboBox亚音解码.Items225"),
- componentResourceManager.GetString("ComboBox亚音解码.Items226"),
- componentResourceManager.GetString("ComboBox亚音解码.Items227"),
- componentResourceManager.GetString("ComboBox亚音解码.Items228"),
- componentResourceManager.GetString("ComboBox亚音解码.Items229"),
- componentResourceManager.GetString("ComboBox亚音解码.Items230"),
- componentResourceManager.GetString("ComboBox亚音解码.Items231"),
- componentResourceManager.GetString("ComboBox亚音解码.Items232"),
- componentResourceManager.GetString("ComboBox亚音解码.Items233"),
- componentResourceManager.GetString("ComboBox亚音解码.Items234"),
- componentResourceManager.GetString("ComboBox亚音解码.Items235"),
- componentResourceManager.GetString("ComboBox亚音解码.Items236"),
- componentResourceManager.GetString("ComboBox亚音解码.Items237"),
- componentResourceManager.GetString("ComboBox亚音解码.Items238"),
- componentResourceManager.GetString("ComboBox亚音解码.Items239"),
- componentResourceManager.GetString("ComboBox亚音解码.Items240"),
- componentResourceManager.GetString("ComboBox亚音解码.Items241"),
- componentResourceManager.GetString("ComboBox亚音解码.Items242"),
- componentResourceManager.GetString("ComboBox亚音解码.Items243"),
- componentResourceManager.GetString("ComboBox亚音解码.Items244"),
- componentResourceManager.GetString("ComboBox亚音解码.Items245"),
- componentResourceManager.GetString("ComboBox亚音解码.Items246"),
- componentResourceManager.GetString("ComboBox亚音解码.Items247"),
- componentResourceManager.GetString("ComboBox亚音解码.Items248"),
- componentResourceManager.GetString("ComboBox亚音解码.Items249"),
- componentResourceManager.GetString("ComboBox亚音解码.Items250"),
- componentResourceManager.GetString("ComboBox亚音解码.Items251"),
- componentResourceManager.GetString("ComboBox亚音解码.Items252"),
- componentResourceManager.GetString("ComboBox亚音解码.Items253"),
- componentResourceManager.GetString("ComboBox亚音解码.Items254"),
- componentResourceManager.GetString("ComboBox亚音解码.Items255"),
- componentResourceManager.GetString("ComboBox亚音解码.Items256"),
- componentResourceManager.GetString("ComboBox亚音解码.Items257"),
- componentResourceManager.GetString("ComboBox亚音解码.Items258"),
- componentResourceManager.GetString("ComboBox亚音解码.Items259"),
- componentResourceManager.GetString("ComboBox亚音解码.Items260"),
- componentResourceManager.GetString("ComboBox亚音解码.Items261"),
- componentResourceManager.GetString("ComboBox亚音解码.Items262"),
- componentResourceManager.GetString("ComboBox亚音解码.Items263"),
- componentResourceManager.GetString("ComboBox亚音解码.Items264")
- });
- componentResourceManager.ApplyResources(ComboBox亚音解码, "ComboBox亚音解码");
- ComboBox亚音解码.Name = "ComboBox亚音解码";
- componentResourceManager.ApplyResources(Label8, "Label8");
- Label8.Name = "Label8";
- componentResourceManager.ApplyResources(Label6, "Label6");
- Label6.Name = "Label6";
- ComboBox亚音编码类型.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox亚音编码类型.FormattingEnabled = true;
- ComboBox亚音编码类型.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox亚音编码类型.Items"),
- componentResourceManager.GetString("ComboBox亚音编码类型.Items1"),
- componentResourceManager.GetString("ComboBox亚音编码类型.Items2"),
- componentResourceManager.GetString("ComboBox亚音编码类型.Items3")
- });
- componentResourceManager.ApplyResources(ComboBox亚音编码类型, "ComboBox亚音编码类型");
- ComboBox亚音编码类型.Name = "ComboBox亚音编码类型";
- componentResourceManager.ApplyResources(Label7, "Label7");
- Label7.Name = "Label7";
- ComboBox亚音解码类型.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox亚音解码类型.FormattingEnabled = true;
- ComboBox亚音解码类型.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox亚音解码类型.Items"),
- componentResourceManager.GetString("ComboBox亚音解码类型.Items1"),
- componentResourceManager.GetString("ComboBox亚音解码类型.Items2"),
- componentResourceManager.GetString("ComboBox亚音解码类型.Items3")
- });
- componentResourceManager.ApplyResources(ComboBox亚音解码类型, "ComboBox亚音解码类型");
- ComboBox亚音解码类型.Name = "ComboBox亚音解码类型";
- componentResourceManager.ApplyResources(Label5, "Label5");
- Label5.Name = "Label5";
- ComboBoxStep.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxStep.FormattingEnabled = true;
- ComboBoxStep.Items.AddRange(new object[11]
- {
- componentResourceManager.GetString("ComboBoxStep.Items"),
- componentResourceManager.GetString("ComboBoxStep.Items1"),
- componentResourceManager.GetString("ComboBoxStep.Items2"),
- componentResourceManager.GetString("ComboBoxStep.Items3"),
- componentResourceManager.GetString("ComboBoxStep.Items4"),
- componentResourceManager.GetString("ComboBoxStep.Items5"),
- componentResourceManager.GetString("ComboBoxStep.Items6"),
- componentResourceManager.GetString("ComboBoxStep.Items7"),
- componentResourceManager.GetString("ComboBoxStep.Items8"),
- componentResourceManager.GetString("ComboBoxStep.Items9"),
- componentResourceManager.GetString("ComboBoxStep.Items10")
- });
- componentResourceManager.ApplyResources(ComboBoxStep, "ComboBoxStep");
- ComboBoxStep.Name = "ComboBoxStep";
- componentResourceManager.ApplyResources(Label4, "Label4");
- Label4.Name = "Label4";
- componentResourceManager.ApplyResources(TextBoxTxFreq, "TextBoxTxFreq");
- TextBoxTxFreq.Name = "TextBoxTxFreq";
- componentResourceManager.ApplyResources(Label3, "Label3");
- Label3.Name = "Label3";
- componentResourceManager.ApplyResources(Button3, "Button3");
- Button3.Name = "Button3";
- Button3.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- ComboBox编辑信道号.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
- ComboBox编辑信道号.AutoCompleteSource = AutoCompleteSource.ListItems;
- ComboBox编辑信道号.FormattingEnabled = true;
- ComboBox编辑信道号.Items.AddRange(new object[516]
- {
- componentResourceManager.GetString("ComboBox编辑信道号.Items"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items1"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items2"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items3"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items4"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items5"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items6"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items7"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items8"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items9"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items10"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items11"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items12"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items13"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items14"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items15"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items16"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items17"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items18"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items19"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items20"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items21"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items22"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items23"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items24"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items25"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items26"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items27"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items28"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items29"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items30"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items31"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items32"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items33"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items34"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items35"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items36"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items37"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items38"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items39"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items40"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items41"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items42"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items43"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items44"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items45"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items46"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items47"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items48"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items49"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items50"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items51"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items52"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items53"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items54"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items55"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items56"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items57"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items58"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items59"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items60"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items61"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items62"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items63"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items64"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items65"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items66"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items67"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items68"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items69"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items70"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items71"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items72"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items73"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items74"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items75"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items76"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items77"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items78"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items79"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items80"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items81"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items82"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items83"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items84"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items85"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items86"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items87"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items88"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items89"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items90"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items91"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items92"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items93"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items94"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items95"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items96"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items97"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items98"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items99"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items100"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items101"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items102"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items103"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items104"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items105"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items106"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items107"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items108"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items109"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items110"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items111"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items112"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items113"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items114"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items115"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items116"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items117"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items118"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items119"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items120"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items121"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items122"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items123"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items124"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items125"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items126"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items127"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items128"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items129"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items130"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items131"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items132"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items133"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items134"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items135"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items136"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items137"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items138"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items139"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items140"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items141"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items142"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items143"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items144"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items145"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items146"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items147"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items148"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items149"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items150"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items151"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items152"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items153"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items154"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items155"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items156"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items157"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items158"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items159"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items160"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items161"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items162"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items163"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items164"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items165"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items166"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items167"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items168"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items169"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items170"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items171"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items172"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items173"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items174"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items175"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items176"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items177"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items178"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items179"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items180"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items181"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items182"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items183"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items184"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items185"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items186"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items187"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items188"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items189"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items190"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items191"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items192"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items193"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items194"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items195"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items196"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items197"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items198"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items199"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items200"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items201"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items202"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items203"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items204"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items205"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items206"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items207"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items208"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items209"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items210"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items211"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items212"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items213"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items214"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items215"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items216"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items217"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items218"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items219"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items220"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items221"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items222"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items223"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items224"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items225"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items226"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items227"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items228"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items229"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items230"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items231"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items232"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items233"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items234"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items235"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items236"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items237"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items238"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items239"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items240"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items241"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items242"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items243"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items244"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items245"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items246"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items247"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items248"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items249"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items250"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items251"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items252"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items253"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items254"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items255"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items256"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items257"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items258"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items259"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items260"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items261"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items262"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items263"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items264"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items265"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items266"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items267"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items268"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items269"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items270"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items271"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items272"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items273"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items274"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items275"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items276"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items277"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items278"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items279"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items280"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items281"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items282"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items283"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items284"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items285"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items286"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items287"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items288"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items289"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items290"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items291"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items292"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items293"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items294"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items295"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items296"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items297"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items298"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items299"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items300"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items301"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items302"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items303"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items304"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items305"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items306"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items307"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items308"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items309"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items310"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items311"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items312"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items313"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items314"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items315"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items316"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items317"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items318"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items319"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items320"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items321"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items322"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items323"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items324"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items325"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items326"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items327"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items328"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items329"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items330"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items331"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items332"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items333"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items334"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items335"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items336"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items337"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items338"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items339"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items340"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items341"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items342"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items343"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items344"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items345"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items346"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items347"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items348"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items349"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items350"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items351"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items352"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items353"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items354"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items355"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items356"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items357"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items358"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items359"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items360"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items361"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items362"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items363"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items364"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items365"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items366"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items367"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items368"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items369"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items370"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items371"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items372"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items373"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items374"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items375"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items376"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items377"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items378"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items379"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items380"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items381"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items382"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items383"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items384"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items385"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items386"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items387"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items388"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items389"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items390"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items391"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items392"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items393"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items394"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items395"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items396"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items397"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items398"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items399"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items400"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items401"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items402"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items403"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items404"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items405"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items406"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items407"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items408"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items409"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items410"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items411"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items412"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items413"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items414"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items415"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items416"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items417"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items418"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items419"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items420"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items421"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items422"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items423"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items424"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items425"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items426"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items427"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items428"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items429"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items430"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items431"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items432"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items433"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items434"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items435"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items436"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items437"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items438"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items439"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items440"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items441"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items442"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items443"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items444"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items445"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items446"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items447"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items448"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items449"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items450"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items451"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items452"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items453"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items454"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items455"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items456"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items457"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items458"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items459"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items460"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items461"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items462"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items463"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items464"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items465"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items466"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items467"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items468"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items469"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items470"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items471"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items472"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items473"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items474"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items475"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items476"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items477"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items478"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items479"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items480"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items481"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items482"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items483"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items484"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items485"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items486"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items487"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items488"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items489"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items490"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items491"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items492"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items493"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items494"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items495"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items496"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items497"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items498"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items499"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items500"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items501"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items502"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items503"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items504"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items505"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items506"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items507"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items508"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items509"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items510"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items511"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items512"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items513"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items514"),
- componentResourceManager.GetString("ComboBox编辑信道号.Items515")
- });
- componentResourceManager.ApplyResources(ComboBox编辑信道号, "ComboBox编辑信道号");
- ComboBox编辑信道号.Name = "ComboBox编辑信道号";
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- Controls.Add(ComboBox编辑信道号);
- Controls.Add(Button3);
- Controls.Add(Button2);
- Controls.Add(Button1);
- Controls.Add(Label3);
- Controls.Add(GroupBox1);
- Name = nameof (ChannelEditForm);
- GroupBox1.ResumeLayout(false);
- GroupBox1.PerformLayout();
- GroupBox2.ResumeLayout(false);
- GroupBox2.PerformLayout();
- ResumeLayout(false);
- PerformLayout();
- }
-
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
-
- internal virtual TextBox TextBoxRxFreq
- {
- [DebuggerNonUserCode] get => _TextBoxRxFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBoxRxFreq != null)
+ [DebuggerNonUserCode]
+ static ChannelEditForm()
{
- _TextBoxRxFreq.LostFocus -= TextBoxRxFreq_LostFocus;
- _TextBoxRxFreq.KeyPress -= TextBoxRxFreq_KeyPress;
}
- _TextBoxRxFreq = value;
- if (_TextBoxRxFreq == null)
- return;
- _TextBoxRxFreq.LostFocus += TextBoxRxFreq_LostFocus;
- _TextBoxRxFreq.KeyPress += TextBoxRxFreq_KeyPress;
- }
- }
- internal virtual Label Label2
- {
- [DebuggerNonUserCode] get => _Label2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label2 = value;
- }
-
- internal virtual GroupBox GroupBox1
- {
- [DebuggerNonUserCode] get => _GroupBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox1 = value;
- }
- }
-
- internal virtual TextBox TextBoxTxFreq
- {
- [DebuggerNonUserCode] get => _TextBoxTxFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBoxTxFreq != null)
+ [DebuggerNonUserCode]
+ public ChannelEditForm()
{
- _TextBoxTxFreq.LostFocus -= TextBoxTxFreq_LostFocus;
- _TextBoxTxFreq.KeyPress -= TextBoxtxFreq_KeyPress;
+ FormClosing += ChannelEditForm_FormClosing;
+ Load += ChannelEditForm_Load;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
}
- _TextBoxTxFreq = value;
- if (_TextBoxTxFreq == null)
- return;
- _TextBoxTxFreq.LostFocus += TextBoxTxFreq_LostFocus;
- _TextBoxTxFreq.KeyPress += TextBoxtxFreq_KeyPress;
- }
- }
- internal virtual Label Label3
- {
- [DebuggerNonUserCode] get => _Label3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label3 = value;
- }
-
- internal virtual ComboBox ComboBoxStep
- {
- [DebuggerNonUserCode] get => _ComboBoxStep;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxStep != null)
- _ComboBoxStep.SelectionChangeCommitted -= ComboBoxStep_SelectionChangeCommitted;
- _ComboBoxStep = value;
- if (_ComboBoxStep == null)
- return;
- _ComboBoxStep.SelectionChangeCommitted += ComboBoxStep_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label4
- {
- [DebuggerNonUserCode] get => _Label4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label4 = value;
- }
-
- internal virtual ComboBox ComboBox亚音解码类型
- {
- [DebuggerNonUserCode] get => _ComboBox亚音解码类型;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox亚音解码类型 != null)
- _ComboBox亚音解码类型.SelectionChangeCommitted -= ComboBox亚音解码类型_SelectionChangeCommitted;
- _ComboBox亚音解码类型 = value;
- if (_ComboBox亚音解码类型 == null)
- return;
- _ComboBox亚音解码类型.SelectionChangeCommitted += ComboBox亚音解码类型_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label5
- {
- [DebuggerNonUserCode] get => _Label5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label5 = value;
- }
-
- internal virtual ComboBox ComboBox亚音解码
- {
- [DebuggerNonUserCode] get => _ComboBox亚音解码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox亚音解码 != null)
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
{
- _ComboBox亚音解码.SelectedValueChanged -= ComboBox亚音解码_SelectedValueChanged;
- _ComboBox亚音解码.Validating -= ComboBox亚音解码_Validating;
- _ComboBox亚音解码.KeyPress -= ComboBox亚音解码_KeyPress;
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
}
- _ComboBox亚音解码 = value;
- if (_ComboBox亚音解码 == null)
- return;
- _ComboBox亚音解码.SelectedValueChanged += ComboBox亚音解码_SelectedValueChanged;
- _ComboBox亚音解码.Validating += ComboBox亚音解码_Validating;
- _ComboBox亚音解码.KeyPress += ComboBox亚音解码_KeyPress;
- }
- }
- internal virtual Label Label6
- {
- [DebuggerNonUserCode] get => _Label6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label6 = value;
- }
-
- internal virtual CheckBox CheckBox耳语
- {
- [DebuggerNonUserCode] get => _CheckBox耳语;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox耳语 != null)
- _CheckBox耳语.CheckedChanged -= CheckBox耳语_CheckedChanged;
- _CheckBox耳语 = value;
- if (_CheckBox耳语 == null)
- return;
- _CheckBox耳语.CheckedChanged += CheckBox耳语_CheckedChanged;
- }
- }
-
- internal virtual CheckBox CheckBox尾音消除
- {
- [DebuggerNonUserCode] get => _CheckBox尾音消除;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox尾音消除 != null)
- _CheckBox尾音消除.CheckedChanged -= CheckBox尾音消除_CheckedChanged;
- _CheckBox尾音消除 = value;
- if (_CheckBox尾音消除 == null)
- return;
- _CheckBox尾音消除.CheckedChanged += CheckBox尾音消除_CheckedChanged;
- }
- }
-
- internal virtual ComboBox ComboBoxSP不静音
- {
- [DebuggerNonUserCode] get => _ComboBoxSP不静音;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxSP不静音 != null)
- _ComboBoxSP不静音.SelectionChangeCommitted -= ComboBoxSP不静音_SelectionChangeCommitted;
- _ComboBoxSP不静音 = value;
- if (_ComboBoxSP不静音 == null)
- return;
- _ComboBoxSP不静音.SelectionChangeCommitted += ComboBoxSP不静音_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox亚音编码
- {
- [DebuggerNonUserCode] get => _ComboBox亚音编码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox亚音编码 != null)
+ [DebuggerStepThrough]
+ private void InitializeComponent()
{
- _ComboBox亚音编码.SelectedValueChanged -= ComboBox亚音编码_SelectedValueChanged;
- _ComboBox亚音编码.Validating -= ComboBox亚音编码_Validating;
- _ComboBox亚音编码.KeyPress -= ComboBox亚音编码_KeyPress;
+ var componentResourceManager = new ComponentResourceManager(typeof(ChannelEditForm));
+ Label1 = new Label();
+ TextBoxRxFreq = new TextBox();
+ Label2 = new Label();
+ GroupBox1 = new GroupBox();
+ GroupBox2 = new GroupBox();
+ ComboBox两音系统参数 = new ComboBox();
+ Label18 = new Label();
+ TextBoxID代码 = new TextBox();
+ Label15 = new Label();
+ Label16 = new Label();
+ Label17 = new Label();
+ ComboBox五音系统参数 = new ComboBox();
+ ComboBox呼叫 = new ComboBox();
+ CheckBox扫描添加 = new CheckBox();
+ CheckBox脱网 = new CheckBox();
+ CheckBox倒频 = new CheckBox();
+ CheckBoxPTTID静音 = new CheckBox();
+ CheckBox发射禁止 = new CheckBox();
+ ComboBoxSP不静音 = new ComboBox();
+ Label9 = new Label();
+ TextBox信道名称 = new TextBox();
+ Label19 = new Label();
+ CheckBoxPTTID暂停 = new CheckBox();
+ CheckBox耳语 = new CheckBox();
+ CheckBox尾音消除 = new CheckBox();
+ ComboBox可选信令 = new ComboBox();
+ ComboBoxSFT = new ComboBox();
+ ComboBox带宽 = new ComboBox();
+ Label20 = new Label();
+ ComboBoxPTTID = new ComboBox();
+ ComboBox发射功率 = new ComboBox();
+ Label14 = new Label();
+ ComboBox繁忙信道锁定 = new ComboBox();
+ Label13 = new Label();
+ Label11 = new Label();
+ Label12 = new Label();
+ Label10 = new Label();
+ ComboBox亚音编码 = new ComboBox();
+ ComboBox亚音解码 = new ComboBox();
+ Label8 = new Label();
+ Label6 = new Label();
+ ComboBox亚音编码类型 = new ComboBox();
+ Label7 = new Label();
+ ComboBox亚音解码类型 = new ComboBox();
+ Label5 = new Label();
+ ComboBoxStep = new ComboBox();
+ Label4 = new Label();
+ TextBoxTxFreq = new TextBox();
+ Label3 = new Label();
+ Button3 = new Button();
+ Button2 = new Button();
+ Button1 = new Button();
+ ComboBox编辑信道号 = new ComboBox();
+ GroupBox1.SuspendLayout();
+ GroupBox2.SuspendLayout();
+ SuspendLayout();
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Name = "Label1";
+ componentResourceManager.ApplyResources(TextBoxRxFreq, "TextBoxRxFreq");
+ TextBoxRxFreq.Name = "TextBoxRxFreq";
+ componentResourceManager.ApplyResources(Label2, "Label2");
+ Label2.Name = "Label2";
+ GroupBox1.Controls.Add(GroupBox2);
+ GroupBox1.Controls.Add(CheckBox扫描添加);
+ GroupBox1.Controls.Add(CheckBox脱网);
+ GroupBox1.Controls.Add(CheckBox倒频);
+ GroupBox1.Controls.Add(CheckBoxPTTID静音);
+ GroupBox1.Controls.Add(CheckBox发射禁止);
+ GroupBox1.Controls.Add(ComboBoxSP不静音);
+ GroupBox1.Controls.Add(Label9);
+ GroupBox1.Controls.Add(TextBox信道名称);
+ GroupBox1.Controls.Add(Label19);
+ GroupBox1.Controls.Add(CheckBoxPTTID暂停);
+ GroupBox1.Controls.Add(CheckBox耳语);
+ GroupBox1.Controls.Add(CheckBox尾音消除);
+ GroupBox1.Controls.Add(ComboBox可选信令);
+ GroupBox1.Controls.Add(ComboBoxSFT);
+ GroupBox1.Controls.Add(ComboBox带宽);
+ GroupBox1.Controls.Add(Label20);
+ GroupBox1.Controls.Add(ComboBoxPTTID);
+ GroupBox1.Controls.Add(ComboBox发射功率);
+ GroupBox1.Controls.Add(Label14);
+ GroupBox1.Controls.Add(ComboBox繁忙信道锁定);
+ GroupBox1.Controls.Add(Label13);
+ GroupBox1.Controls.Add(Label11);
+ GroupBox1.Controls.Add(Label12);
+ GroupBox1.Controls.Add(Label10);
+ GroupBox1.Controls.Add(ComboBox亚音编码);
+ GroupBox1.Controls.Add(ComboBox亚音解码);
+ GroupBox1.Controls.Add(Label8);
+ GroupBox1.Controls.Add(Label6);
+ GroupBox1.Controls.Add(ComboBox亚音编码类型);
+ GroupBox1.Controls.Add(Label7);
+ GroupBox1.Controls.Add(ComboBox亚音解码类型);
+ GroupBox1.Controls.Add(Label5);
+ GroupBox1.Controls.Add(ComboBoxStep);
+ GroupBox1.Controls.Add(Label4);
+ GroupBox1.Controls.Add(TextBoxTxFreq);
+ GroupBox1.Controls.Add(TextBoxRxFreq);
+ GroupBox1.Controls.Add(Label2);
+ GroupBox1.Controls.Add(Label1);
+ componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
+ GroupBox1.Name = "GroupBox1";
+ GroupBox1.TabStop = false;
+ GroupBox2.Controls.Add(ComboBox两音系统参数);
+ GroupBox2.Controls.Add(Label18);
+ GroupBox2.Controls.Add(TextBoxID代码);
+ GroupBox2.Controls.Add(Label15);
+ GroupBox2.Controls.Add(Label16);
+ GroupBox2.Controls.Add(Label17);
+ GroupBox2.Controls.Add(ComboBox五音系统参数);
+ GroupBox2.Controls.Add(ComboBox呼叫);
+ componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
+ GroupBox2.Name = "GroupBox2";
+ GroupBox2.TabStop = false;
+ ComboBox两音系统参数.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音系统参数.FormattingEnabled = true;
+ ComboBox两音系统参数.Items.AddRange(new object[9]
+ {
+ componentResourceManager.GetString("ComboBox两音系统参数.Items"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items1"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items2"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items3"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items4"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items5"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items6"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items7"),
+ componentResourceManager.GetString("ComboBox两音系统参数.Items8")
+ });
+ componentResourceManager.ApplyResources(ComboBox两音系统参数, "ComboBox两音系统参数");
+ ComboBox两音系统参数.Name = "ComboBox两音系统参数";
+ componentResourceManager.ApplyResources(Label18, "Label18");
+ Label18.Name = "Label18";
+ componentResourceManager.ApplyResources(TextBoxID代码, "TextBoxID代码");
+ TextBoxID代码.Name = "TextBoxID代码";
+ componentResourceManager.ApplyResources(Label15, "Label15");
+ Label15.Name = "Label15";
+ componentResourceManager.ApplyResources(Label16, "Label16");
+ Label16.Name = "Label16";
+ componentResourceManager.ApplyResources(Label17, "Label17");
+ Label17.Name = "Label17";
+ ComboBox五音系统参数.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox五音系统参数.FormattingEnabled = true;
+ ComboBox五音系统参数.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox五音系统参数.Items"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items1"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items2"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items3"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items4"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items5"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items6"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items7"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items8"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items9"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items10"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items11"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items12"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items13"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items14"),
+ componentResourceManager.GetString("ComboBox五音系统参数.Items15")
+ });
+ componentResourceManager.ApplyResources(ComboBox五音系统参数, "ComboBox五音系统参数");
+ ComboBox五音系统参数.Name = "ComboBox五音系统参数";
+ ComboBox呼叫.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox呼叫.FormattingEnabled = true;
+ ComboBox呼叫.Items.AddRange(new object[1]
+ {
+ componentResourceManager.GetString("ComboBox呼叫.Items")
+ });
+ componentResourceManager.ApplyResources(ComboBox呼叫, "ComboBox呼叫");
+ ComboBox呼叫.Name = "ComboBox呼叫";
+ componentResourceManager.ApplyResources(CheckBox扫描添加, "CheckBox扫描添加");
+ CheckBox扫描添加.Name = "CheckBox扫描添加";
+ CheckBox扫描添加.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBox脱网, "CheckBox脱网");
+ CheckBox脱网.Name = "CheckBox脱网";
+ CheckBox脱网.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBox倒频, "CheckBox倒频");
+ CheckBox倒频.Name = "CheckBox倒频";
+ CheckBox倒频.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBoxPTTID静音, "CheckBoxPTTID静音");
+ CheckBoxPTTID静音.Name = "CheckBoxPTTID静音";
+ CheckBoxPTTID静音.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBox发射禁止, "CheckBox发射禁止");
+ CheckBox发射禁止.Name = "CheckBox发射禁止";
+ CheckBox发射禁止.UseVisualStyleBackColor = true;
+ ComboBoxSP不静音.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxSP不静音.FormattingEnabled = true;
+ ComboBoxSP不静音.Items.AddRange(new object[3]
+ {
+ componentResourceManager.GetString("ComboBoxSP不静音.Items"),
+ componentResourceManager.GetString("ComboBoxSP不静音.Items1"),
+ componentResourceManager.GetString("ComboBoxSP不静音.Items2")
+ });
+ componentResourceManager.ApplyResources(ComboBoxSP不静音, "ComboBoxSP不静音");
+ ComboBoxSP不静音.Name = "ComboBoxSP不静音";
+ componentResourceManager.ApplyResources(Label9, "Label9");
+ Label9.Name = "Label9";
+ componentResourceManager.ApplyResources(TextBox信道名称, "TextBox信道名称");
+ TextBox信道名称.Name = "TextBox信道名称";
+ componentResourceManager.ApplyResources(Label19, "Label19");
+ Label19.Name = "Label19";
+ componentResourceManager.ApplyResources(CheckBoxPTTID暂停, "CheckBoxPTTID暂停");
+ CheckBoxPTTID暂停.Name = "CheckBoxPTTID暂停";
+ CheckBoxPTTID暂停.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBox耳语, "CheckBox耳语");
+ CheckBox耳语.Name = "CheckBox耳语";
+ CheckBox耳语.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(CheckBox尾音消除, "CheckBox尾音消除");
+ CheckBox尾音消除.Name = "CheckBox尾音消除";
+ CheckBox尾音消除.UseVisualStyleBackColor = true;
+ ComboBox可选信令.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox可选信令.FormattingEnabled = true;
+ ComboBox可选信令.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox可选信令.Items"),
+ componentResourceManager.GetString("ComboBox可选信令.Items1"),
+ componentResourceManager.GetString("ComboBox可选信令.Items2"),
+ componentResourceManager.GetString("ComboBox可选信令.Items3")
+ });
+ componentResourceManager.ApplyResources(ComboBox可选信令, "ComboBox可选信令");
+ ComboBox可选信令.Name = "ComboBox可选信令";
+ ComboBoxSFT.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxSFT.FormattingEnabled = true;
+ ComboBoxSFT.Items.AddRange(new object[3]
+ {
+ componentResourceManager.GetString("ComboBoxSFT.Items"),
+ componentResourceManager.GetString("ComboBoxSFT.Items1"),
+ componentResourceManager.GetString("ComboBoxSFT.Items2")
+ });
+ componentResourceManager.ApplyResources(ComboBoxSFT, "ComboBoxSFT");
+ ComboBoxSFT.Name = "ComboBoxSFT";
+ ComboBox带宽.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox带宽.FormattingEnabled = true;
+ ComboBox带宽.Items.AddRange(new object[3]
+ {
+ componentResourceManager.GetString("ComboBox带宽.Items"),
+ componentResourceManager.GetString("ComboBox带宽.Items1"),
+ componentResourceManager.GetString("ComboBox带宽.Items2")
+ });
+ componentResourceManager.ApplyResources(ComboBox带宽, "ComboBox带宽");
+ ComboBox带宽.Name = "ComboBox带宽";
+ componentResourceManager.ApplyResources(Label20, "Label20");
+ Label20.Name = "Label20";
+ ComboBoxPTTID.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxPTTID.FormattingEnabled = true;
+ ComboBoxPTTID.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBoxPTTID.Items"),
+ componentResourceManager.GetString("ComboBoxPTTID.Items1"),
+ componentResourceManager.GetString("ComboBoxPTTID.Items2"),
+ componentResourceManager.GetString("ComboBoxPTTID.Items3")
+ });
+ componentResourceManager.ApplyResources(ComboBoxPTTID, "ComboBoxPTTID");
+ ComboBoxPTTID.Name = "ComboBoxPTTID";
+ ComboBox发射功率.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox发射功率.FormattingEnabled = true;
+ ComboBox发射功率.Items.AddRange(new object[3]
+ {
+ componentResourceManager.GetString("ComboBox发射功率.Items"),
+ componentResourceManager.GetString("ComboBox发射功率.Items1"),
+ componentResourceManager.GetString("ComboBox发射功率.Items2")
+ });
+ componentResourceManager.ApplyResources(ComboBox发射功率, "ComboBox发射功率");
+ ComboBox发射功率.Name = "ComboBox发射功率";
+ componentResourceManager.ApplyResources(Label14, "Label14");
+ Label14.Name = "Label14";
+ ComboBox繁忙信道锁定.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox繁忙信道锁定.FormattingEnabled = true;
+ ComboBox繁忙信道锁定.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox繁忙信道锁定.Items"),
+ componentResourceManager.GetString("ComboBox繁忙信道锁定.Items1"),
+ componentResourceManager.GetString("ComboBox繁忙信道锁定.Items2"),
+ componentResourceManager.GetString("ComboBox繁忙信道锁定.Items3")
+ });
+ componentResourceManager.ApplyResources(ComboBox繁忙信道锁定, "ComboBox繁忙信道锁定");
+ ComboBox繁忙信道锁定.Name = "ComboBox繁忙信道锁定";
+ componentResourceManager.ApplyResources(Label13, "Label13");
+ Label13.Name = "Label13";
+ componentResourceManager.ApplyResources(Label11, "Label11");
+ Label11.Name = "Label11";
+ componentResourceManager.ApplyResources(Label12, "Label12");
+ Label12.Name = "Label12";
+ componentResourceManager.ApplyResources(Label10, "Label10");
+ Label10.Name = "Label10";
+ ComboBox亚音编码.FormattingEnabled = true;
+ ComboBox亚音编码.Items.AddRange(new object[265]
+ {
+ componentResourceManager.GetString("ComboBox亚音编码.Items"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items1"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items2"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items3"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items4"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items5"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items6"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items7"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items8"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items9"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items10"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items11"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items12"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items13"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items14"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items15"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items16"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items17"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items18"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items19"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items20"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items21"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items22"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items23"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items24"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items25"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items26"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items27"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items28"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items29"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items30"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items31"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items32"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items33"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items34"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items35"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items36"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items37"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items38"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items39"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items40"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items41"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items42"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items43"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items44"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items45"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items46"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items47"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items48"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items49"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items50"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items51"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items52"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items53"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items54"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items55"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items56"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items57"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items58"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items59"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items60"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items61"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items62"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items63"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items64"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items65"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items66"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items67"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items68"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items69"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items70"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items71"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items72"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items73"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items74"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items75"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items76"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items77"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items78"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items79"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items80"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items81"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items82"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items83"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items84"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items85"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items86"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items87"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items88"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items89"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items90"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items91"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items92"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items93"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items94"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items95"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items96"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items97"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items98"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items99"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items100"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items101"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items102"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items103"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items104"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items105"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items106"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items107"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items108"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items109"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items110"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items111"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items112"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items113"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items114"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items115"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items116"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items117"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items118"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items119"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items120"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items121"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items122"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items123"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items124"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items125"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items126"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items127"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items128"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items129"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items130"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items131"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items132"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items133"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items134"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items135"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items136"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items137"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items138"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items139"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items140"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items141"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items142"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items143"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items144"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items145"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items146"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items147"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items148"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items149"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items150"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items151"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items152"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items153"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items154"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items155"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items156"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items157"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items158"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items159"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items160"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items161"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items162"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items163"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items164"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items165"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items166"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items167"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items168"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items169"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items170"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items171"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items172"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items173"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items174"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items175"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items176"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items177"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items178"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items179"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items180"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items181"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items182"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items183"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items184"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items185"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items186"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items187"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items188"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items189"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items190"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items191"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items192"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items193"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items194"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items195"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items196"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items197"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items198"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items199"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items200"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items201"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items202"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items203"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items204"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items205"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items206"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items207"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items208"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items209"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items210"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items211"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items212"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items213"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items214"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items215"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items216"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items217"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items218"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items219"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items220"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items221"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items222"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items223"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items224"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items225"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items226"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items227"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items228"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items229"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items230"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items231"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items232"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items233"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items234"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items235"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items236"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items237"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items238"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items239"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items240"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items241"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items242"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items243"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items244"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items245"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items246"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items247"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items248"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items249"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items250"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items251"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items252"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items253"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items254"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items255"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items256"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items257"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items258"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items259"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items260"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items261"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items262"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items263"),
+ componentResourceManager.GetString("ComboBox亚音编码.Items264")
+ });
+ componentResourceManager.ApplyResources(ComboBox亚音编码, "ComboBox亚音编码");
+ ComboBox亚音编码.Name = "ComboBox亚音编码";
+ ComboBox亚音解码.FormattingEnabled = true;
+ ComboBox亚音解码.Items.AddRange(new object[265]
+ {
+ componentResourceManager.GetString("ComboBox亚音解码.Items"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items1"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items2"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items3"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items4"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items5"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items6"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items7"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items8"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items9"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items10"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items11"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items12"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items13"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items14"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items15"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items16"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items17"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items18"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items19"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items20"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items21"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items22"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items23"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items24"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items25"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items26"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items27"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items28"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items29"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items30"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items31"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items32"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items33"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items34"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items35"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items36"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items37"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items38"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items39"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items40"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items41"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items42"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items43"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items44"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items45"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items46"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items47"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items48"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items49"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items50"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items51"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items52"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items53"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items54"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items55"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items56"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items57"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items58"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items59"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items60"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items61"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items62"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items63"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items64"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items65"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items66"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items67"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items68"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items69"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items70"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items71"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items72"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items73"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items74"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items75"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items76"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items77"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items78"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items79"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items80"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items81"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items82"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items83"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items84"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items85"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items86"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items87"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items88"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items89"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items90"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items91"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items92"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items93"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items94"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items95"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items96"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items97"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items98"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items99"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items100"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items101"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items102"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items103"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items104"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items105"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items106"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items107"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items108"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items109"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items110"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items111"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items112"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items113"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items114"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items115"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items116"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items117"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items118"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items119"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items120"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items121"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items122"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items123"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items124"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items125"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items126"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items127"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items128"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items129"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items130"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items131"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items132"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items133"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items134"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items135"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items136"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items137"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items138"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items139"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items140"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items141"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items142"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items143"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items144"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items145"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items146"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items147"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items148"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items149"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items150"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items151"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items152"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items153"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items154"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items155"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items156"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items157"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items158"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items159"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items160"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items161"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items162"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items163"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items164"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items165"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items166"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items167"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items168"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items169"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items170"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items171"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items172"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items173"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items174"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items175"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items176"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items177"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items178"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items179"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items180"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items181"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items182"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items183"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items184"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items185"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items186"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items187"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items188"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items189"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items190"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items191"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items192"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items193"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items194"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items195"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items196"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items197"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items198"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items199"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items200"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items201"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items202"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items203"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items204"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items205"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items206"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items207"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items208"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items209"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items210"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items211"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items212"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items213"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items214"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items215"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items216"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items217"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items218"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items219"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items220"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items221"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items222"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items223"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items224"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items225"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items226"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items227"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items228"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items229"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items230"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items231"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items232"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items233"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items234"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items235"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items236"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items237"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items238"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items239"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items240"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items241"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items242"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items243"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items244"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items245"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items246"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items247"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items248"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items249"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items250"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items251"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items252"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items253"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items254"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items255"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items256"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items257"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items258"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items259"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items260"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items261"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items262"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items263"),
+ componentResourceManager.GetString("ComboBox亚音解码.Items264")
+ });
+ componentResourceManager.ApplyResources(ComboBox亚音解码, "ComboBox亚音解码");
+ ComboBox亚音解码.Name = "ComboBox亚音解码";
+ componentResourceManager.ApplyResources(Label8, "Label8");
+ Label8.Name = "Label8";
+ componentResourceManager.ApplyResources(Label6, "Label6");
+ Label6.Name = "Label6";
+ ComboBox亚音编码类型.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox亚音编码类型.FormattingEnabled = true;
+ ComboBox亚音编码类型.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox亚音编码类型.Items"),
+ componentResourceManager.GetString("ComboBox亚音编码类型.Items1"),
+ componentResourceManager.GetString("ComboBox亚音编码类型.Items2"),
+ componentResourceManager.GetString("ComboBox亚音编码类型.Items3")
+ });
+ componentResourceManager.ApplyResources(ComboBox亚音编码类型, "ComboBox亚音编码类型");
+ ComboBox亚音编码类型.Name = "ComboBox亚音编码类型";
+ componentResourceManager.ApplyResources(Label7, "Label7");
+ Label7.Name = "Label7";
+ ComboBox亚音解码类型.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox亚音解码类型.FormattingEnabled = true;
+ ComboBox亚音解码类型.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox亚音解码类型.Items"),
+ componentResourceManager.GetString("ComboBox亚音解码类型.Items1"),
+ componentResourceManager.GetString("ComboBox亚音解码类型.Items2"),
+ componentResourceManager.GetString("ComboBox亚音解码类型.Items3")
+ });
+ componentResourceManager.ApplyResources(ComboBox亚音解码类型, "ComboBox亚音解码类型");
+ ComboBox亚音解码类型.Name = "ComboBox亚音解码类型";
+ componentResourceManager.ApplyResources(Label5, "Label5");
+ Label5.Name = "Label5";
+ ComboBoxStep.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxStep.FormattingEnabled = true;
+ ComboBoxStep.Items.AddRange(new object[11]
+ {
+ componentResourceManager.GetString("ComboBoxStep.Items"),
+ componentResourceManager.GetString("ComboBoxStep.Items1"),
+ componentResourceManager.GetString("ComboBoxStep.Items2"),
+ componentResourceManager.GetString("ComboBoxStep.Items3"),
+ componentResourceManager.GetString("ComboBoxStep.Items4"),
+ componentResourceManager.GetString("ComboBoxStep.Items5"),
+ componentResourceManager.GetString("ComboBoxStep.Items6"),
+ componentResourceManager.GetString("ComboBoxStep.Items7"),
+ componentResourceManager.GetString("ComboBoxStep.Items8"),
+ componentResourceManager.GetString("ComboBoxStep.Items9"),
+ componentResourceManager.GetString("ComboBoxStep.Items10")
+ });
+ componentResourceManager.ApplyResources(ComboBoxStep, "ComboBoxStep");
+ ComboBoxStep.Name = "ComboBoxStep";
+ componentResourceManager.ApplyResources(Label4, "Label4");
+ Label4.Name = "Label4";
+ componentResourceManager.ApplyResources(TextBoxTxFreq, "TextBoxTxFreq");
+ TextBoxTxFreq.Name = "TextBoxTxFreq";
+ componentResourceManager.ApplyResources(Label3, "Label3");
+ Label3.Name = "Label3";
+ componentResourceManager.ApplyResources(Button3, "Button3");
+ Button3.Name = "Button3";
+ Button3.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ ComboBox编辑信道号.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
+ ComboBox编辑信道号.AutoCompleteSource = AutoCompleteSource.ListItems;
+ ComboBox编辑信道号.FormattingEnabled = true;
+ ComboBox编辑信道号.Items.AddRange(new object[516]
+ {
+ componentResourceManager.GetString("ComboBox编辑信道号.Items"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items1"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items2"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items3"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items4"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items5"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items6"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items7"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items8"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items9"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items10"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items11"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items12"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items13"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items14"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items15"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items16"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items17"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items18"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items19"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items20"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items21"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items22"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items23"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items24"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items25"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items26"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items27"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items28"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items29"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items30"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items31"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items32"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items33"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items34"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items35"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items36"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items37"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items38"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items39"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items40"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items41"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items42"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items43"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items44"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items45"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items46"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items47"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items48"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items49"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items50"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items51"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items52"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items53"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items54"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items55"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items56"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items57"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items58"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items59"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items60"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items61"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items62"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items63"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items64"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items65"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items66"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items67"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items68"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items69"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items70"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items71"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items72"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items73"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items74"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items75"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items76"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items77"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items78"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items79"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items80"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items81"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items82"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items83"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items84"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items85"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items86"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items87"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items88"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items89"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items90"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items91"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items92"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items93"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items94"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items95"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items96"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items97"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items98"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items99"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items100"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items101"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items102"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items103"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items104"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items105"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items106"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items107"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items108"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items109"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items110"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items111"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items112"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items113"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items114"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items115"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items116"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items117"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items118"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items119"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items120"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items121"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items122"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items123"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items124"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items125"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items126"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items127"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items128"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items129"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items130"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items131"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items132"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items133"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items134"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items135"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items136"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items137"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items138"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items139"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items140"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items141"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items142"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items143"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items144"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items145"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items146"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items147"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items148"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items149"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items150"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items151"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items152"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items153"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items154"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items155"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items156"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items157"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items158"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items159"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items160"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items161"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items162"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items163"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items164"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items165"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items166"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items167"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items168"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items169"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items170"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items171"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items172"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items173"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items174"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items175"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items176"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items177"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items178"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items179"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items180"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items181"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items182"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items183"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items184"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items185"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items186"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items187"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items188"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items189"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items190"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items191"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items192"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items193"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items194"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items195"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items196"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items197"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items198"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items199"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items200"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items201"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items202"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items203"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items204"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items205"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items206"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items207"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items208"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items209"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items210"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items211"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items212"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items213"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items214"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items215"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items216"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items217"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items218"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items219"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items220"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items221"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items222"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items223"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items224"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items225"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items226"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items227"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items228"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items229"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items230"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items231"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items232"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items233"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items234"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items235"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items236"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items237"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items238"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items239"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items240"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items241"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items242"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items243"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items244"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items245"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items246"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items247"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items248"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items249"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items250"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items251"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items252"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items253"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items254"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items255"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items256"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items257"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items258"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items259"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items260"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items261"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items262"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items263"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items264"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items265"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items266"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items267"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items268"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items269"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items270"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items271"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items272"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items273"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items274"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items275"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items276"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items277"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items278"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items279"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items280"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items281"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items282"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items283"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items284"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items285"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items286"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items287"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items288"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items289"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items290"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items291"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items292"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items293"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items294"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items295"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items296"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items297"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items298"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items299"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items300"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items301"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items302"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items303"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items304"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items305"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items306"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items307"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items308"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items309"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items310"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items311"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items312"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items313"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items314"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items315"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items316"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items317"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items318"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items319"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items320"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items321"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items322"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items323"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items324"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items325"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items326"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items327"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items328"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items329"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items330"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items331"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items332"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items333"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items334"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items335"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items336"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items337"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items338"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items339"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items340"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items341"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items342"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items343"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items344"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items345"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items346"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items347"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items348"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items349"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items350"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items351"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items352"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items353"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items354"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items355"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items356"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items357"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items358"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items359"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items360"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items361"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items362"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items363"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items364"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items365"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items366"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items367"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items368"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items369"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items370"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items371"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items372"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items373"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items374"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items375"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items376"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items377"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items378"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items379"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items380"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items381"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items382"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items383"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items384"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items385"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items386"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items387"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items388"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items389"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items390"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items391"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items392"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items393"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items394"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items395"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items396"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items397"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items398"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items399"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items400"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items401"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items402"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items403"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items404"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items405"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items406"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items407"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items408"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items409"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items410"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items411"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items412"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items413"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items414"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items415"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items416"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items417"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items418"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items419"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items420"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items421"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items422"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items423"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items424"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items425"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items426"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items427"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items428"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items429"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items430"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items431"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items432"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items433"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items434"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items435"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items436"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items437"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items438"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items439"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items440"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items441"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items442"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items443"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items444"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items445"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items446"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items447"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items448"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items449"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items450"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items451"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items452"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items453"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items454"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items455"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items456"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items457"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items458"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items459"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items460"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items461"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items462"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items463"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items464"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items465"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items466"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items467"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items468"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items469"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items470"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items471"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items472"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items473"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items474"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items475"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items476"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items477"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items478"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items479"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items480"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items481"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items482"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items483"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items484"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items485"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items486"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items487"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items488"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items489"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items490"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items491"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items492"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items493"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items494"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items495"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items496"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items497"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items498"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items499"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items500"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items501"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items502"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items503"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items504"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items505"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items506"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items507"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items508"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items509"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items510"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items511"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items512"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items513"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items514"),
+ componentResourceManager.GetString("ComboBox编辑信道号.Items515")
+ });
+ componentResourceManager.ApplyResources(ComboBox编辑信道号, "ComboBox编辑信道号");
+ ComboBox编辑信道号.Name = "ComboBox编辑信道号";
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ Controls.Add(ComboBox编辑信道号);
+ Controls.Add(Button3);
+ Controls.Add(Button2);
+ Controls.Add(Button1);
+ Controls.Add(Label3);
+ Controls.Add(GroupBox1);
+ Name = nameof(ChannelEditForm);
+ GroupBox1.ResumeLayout(false);
+ GroupBox1.PerformLayout();
+ GroupBox2.ResumeLayout(false);
+ GroupBox2.PerformLayout();
+ ResumeLayout(false);
+ PerformLayout();
}
- _ComboBox亚音编码 = value;
- if (_ComboBox亚音编码 == null)
- return;
- _ComboBox亚音编码.SelectedValueChanged += ComboBox亚音编码_SelectedValueChanged;
- _ComboBox亚音编码.Validating += ComboBox亚音编码_Validating;
- _ComboBox亚音编码.KeyPress += ComboBox亚音编码_KeyPress;
- }
- }
- internal virtual Label Label9
- {
- [DebuggerNonUserCode] get => _Label9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label9 = value;
- }
-
- internal virtual Label Label8
- {
- [DebuggerNonUserCode] get => _Label8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label8 = value;
- }
-
- internal virtual ComboBox ComboBox亚音编码类型
- {
- [DebuggerNonUserCode] get => _ComboBox亚音编码类型;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox亚音编码类型 != null)
- _ComboBox亚音编码类型.SelectionChangeCommitted -= ComboBox亚音编码类型_SelectionChangeCommitted;
- _ComboBox亚音编码类型 = value;
- if (_ComboBox亚音编码类型 == null)
- return;
- _ComboBox亚音编码类型.SelectionChangeCommitted += ComboBox亚音编码类型_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label7
- {
- [DebuggerNonUserCode] get => _Label7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label7 = value;
- }
-
- internal virtual CheckBox CheckBoxPTTID静音
- {
- [DebuggerNonUserCode] get => _CheckBoxPTTID静音;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBoxPTTID静音 != null)
- _CheckBoxPTTID静音.CheckedChanged -= CheckBoxPTTID静音_CheckedChanged;
- _CheckBoxPTTID静音 = value;
- if (_CheckBoxPTTID静音 == null)
- return;
- _CheckBoxPTTID静音.CheckedChanged += CheckBoxPTTID静音_CheckedChanged;
- }
- }
-
- internal virtual CheckBox CheckBox发射禁止
- {
- [DebuggerNonUserCode] get => _CheckBox发射禁止;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox发射禁止 != null)
- _CheckBox发射禁止.CheckedChanged -= CheckBox发射禁止_CheckedChanged;
- _CheckBox发射禁止 = value;
- if (_CheckBox发射禁止 == null)
- return;
- _CheckBox发射禁止.CheckedChanged += CheckBox发射禁止_CheckedChanged;
- }
- }
-
- internal virtual CheckBox CheckBoxPTTID暂停
- {
- [DebuggerNonUserCode] get => _CheckBoxPTTID暂停;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBoxPTTID暂停 != null)
- _CheckBoxPTTID暂停.CheckedChanged -= CheckBoxPTTID暂停_CheckedChanged;
- _CheckBoxPTTID暂停 = value;
- if (_CheckBoxPTTID暂停 == null)
- return;
- _CheckBoxPTTID暂停.CheckedChanged += CheckBoxPTTID暂停_CheckedChanged;
- }
- }
-
- internal virtual ComboBox ComboBox可选信令
- {
- [DebuggerNonUserCode] get => _ComboBox可选信令;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox可选信令 != null)
- _ComboBox可选信令.SelectionChangeCommitted -= ComboBox可选信令_SelectionChangeCommitted;
- _ComboBox可选信令 = value;
- if (_ComboBox可选信令 == null)
- return;
- _ComboBox可选信令.SelectionChangeCommitted += ComboBox可选信令_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox繁忙信道锁定
- {
- [DebuggerNonUserCode] get => _ComboBox繁忙信道锁定;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox繁忙信道锁定 != null)
- _ComboBox繁忙信道锁定.SelectionChangeCommitted -= ComboBox繁忙信道锁定_SelectionChangeCommitted;
- _ComboBox繁忙信道锁定 = value;
- if (_ComboBox繁忙信道锁定 == null)
- return;
- _ComboBox繁忙信道锁定.SelectionChangeCommitted += ComboBox繁忙信道锁定_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label11
- {
- [DebuggerNonUserCode] get => _Label11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label11 = value;
- }
- }
-
- internal virtual Label Label10
- {
- [DebuggerNonUserCode] get => _Label10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label10 = value;
- }
- }
-
- internal virtual CheckBox CheckBox脱网
- {
- [DebuggerNonUserCode] get => _CheckBox脱网;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox脱网 != null)
- _CheckBox脱网.CheckedChanged -= CheckBox脱网_CheckedChanged;
- _CheckBox脱网 = value;
- if (_CheckBox脱网 == null)
- return;
- _CheckBox脱网.CheckedChanged += CheckBox脱网_CheckedChanged;
- }
- }
-
- internal virtual CheckBox CheckBox倒频
- {
- [DebuggerNonUserCode] get => _CheckBox倒频;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox倒频 != null)
- _CheckBox倒频.CheckedChanged -= CheckBox倒频_CheckedChanged;
- _CheckBox倒频 = value;
- if (_CheckBox倒频 == null)
- return;
- _CheckBox倒频.CheckedChanged += CheckBox倒频_CheckedChanged;
- }
- }
-
- internal virtual ComboBox ComboBox两音系统参数
- {
- [DebuggerNonUserCode] get => _ComboBox两音系统参数;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox两音系统参数 != null)
- _ComboBox两音系统参数.SelectionChangeCommitted -= ComboBox两音系统参数_SelectionChangeCommitted;
- _ComboBox两音系统参数 = value;
- if (_ComboBox两音系统参数 == null)
- return;
- _ComboBox两音系统参数.SelectionChangeCommitted += ComboBox两音系统参数_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox带宽
- {
- [DebuggerNonUserCode] get => _ComboBox带宽;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox带宽 != null)
- _ComboBox带宽.SelectionChangeCommitted -= ComboBox带宽_SelectionChangeCommitted;
- _ComboBox带宽 = value;
- if (_ComboBox带宽 == null)
- return;
- _ComboBox带宽.SelectionChangeCommitted += ComboBox带宽_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBoxPTTID
- {
- [DebuggerNonUserCode] get => _ComboBoxPTTID;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxPTTID != null)
- _ComboBoxPTTID.SelectionChangeCommitted -= ComboBoxPTTID_SelectionChangeCommitted;
- _ComboBoxPTTID = value;
- if (_ComboBoxPTTID == null)
- return;
- _ComboBoxPTTID.SelectionChangeCommitted += ComboBoxPTTID_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label15
- {
- [DebuggerNonUserCode] get => _Label15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label15 = value;
- }
- }
-
- internal virtual ComboBox ComboBox发射功率
- {
- [DebuggerNonUserCode] get => _ComboBox发射功率;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox发射功率 != null)
- _ComboBox发射功率.SelectionChangeCommitted -= ComboBox发射功率_SelectionChangeCommitted;
- _ComboBox发射功率 = value;
- if (_ComboBox发射功率 == null)
- return;
- _ComboBox发射功率.SelectionChangeCommitted += ComboBox发射功率_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label14
- {
- [DebuggerNonUserCode] get => _Label14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label14 = value;
- }
- }
-
- internal virtual Label Label13
- {
- [DebuggerNonUserCode] get => _Label13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label13 = value;
- }
- }
-
- internal virtual Label Label12
- {
- [DebuggerNonUserCode] get => _Label12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label12 = value;
- }
- }
-
- internal virtual ComboBox ComboBox呼叫
- {
- [DebuggerNonUserCode] get => _ComboBox呼叫;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox呼叫 != null)
- _ComboBox呼叫.SelectionChangeCommitted -= ComboBox呼叫_SelectionChangeCommitted;
- _ComboBox呼叫 = value;
- if (_ComboBox呼叫 == null)
- return;
- _ComboBox呼叫.SelectionChangeCommitted += ComboBox呼叫_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox五音系统参数
- {
- [DebuggerNonUserCode] get => _ComboBox五音系统参数;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox五音系统参数 != null)
- _ComboBox五音系统参数.SelectionChangeCommitted -= ComboBox五音系统参数_SelectionChangeCommitted;
- _ComboBox五音系统参数 = value;
- if (_ComboBox五音系统参数 == null)
- return;
- _ComboBox五音系统参数.SelectionChangeCommitted += ComboBox五音系统参数_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label17
- {
- [DebuggerNonUserCode] get => _Label17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label17 = value;
- }
- }
-
- internal virtual Label Label16
- {
- [DebuggerNonUserCode] get => _Label16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label16 = value;
- }
- }
-
- internal virtual TextBox TextBox信道名称
- {
- [DebuggerNonUserCode] get => _TextBox信道名称;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBox信道名称 != null)
- _TextBox信道名称.LostFocus -= TextBox信道名称_LostFocus;
- _TextBox信道名称 = value;
- if (_TextBox信道名称 == null)
- return;
- _TextBox信道名称.LostFocus += TextBox信道名称_LostFocus;
- }
- }
-
- internal virtual TextBox TextBoxID代码
- {
- [DebuggerNonUserCode] get => _TextBoxID代码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBoxID代码 != null)
+ internal virtual Label Label1
{
- _TextBoxID代码.LostFocus -= TextBoxID代码_LostFocus;
- _TextBoxID代码.KeyPress -= TextBoxID代码_KeyPress;
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
}
- _TextBoxID代码 = value;
- if (_TextBoxID代码 == null)
- return;
- _TextBoxID代码.LostFocus += TextBoxID代码_LostFocus;
- _TextBoxID代码.KeyPress += TextBoxID代码_KeyPress;
- }
- }
- internal virtual Label Label19
- {
- [DebuggerNonUserCode] get => _Label19;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label19 = value;
- }
- }
-
- internal virtual Label Label18
- {
- [DebuggerNonUserCode] get => _Label18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label18 = value;
- }
- }
-
- internal virtual ComboBox ComboBoxSFT
- {
- [DebuggerNonUserCode] get => _ComboBoxSFT;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxSFT != null)
- _ComboBoxSFT.SelectionChangeCommitted -= ComboBoxSFT_SelectionChangeCommitted;
- _ComboBoxSFT = value;
- if (_ComboBoxSFT == null)
- return;
- _ComboBoxSFT.SelectionChangeCommitted += ComboBoxSFT_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label20
- {
- [DebuggerNonUserCode] get => _Label20;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label20 = value;
- }
- }
-
- internal virtual GroupBox GroupBox2
- {
- [DebuggerNonUserCode] get => _GroupBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox2 = value;
- }
- }
-
- internal virtual Button Button3
- {
- [DebuggerNonUserCode] get => _Button3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button3 = value;
- }
- }
-
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button2 = value;
- }
- }
-
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
-
- internal virtual ComboBox ComboBox编辑信道号
- {
- [DebuggerNonUserCode] get => _ComboBox编辑信道号;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox编辑信道号 != null)
- _ComboBox编辑信道号.SelectedIndexChanged -= ComboBox编辑信道号_SelectedIndexChanged;
- _ComboBox编辑信道号 = value;
- if (_ComboBox编辑信道号 == null)
- return;
- _ComboBox编辑信道号.SelectedIndexChanged += ComboBox编辑信道号_SelectedIndexChanged;
- }
- }
-
- internal virtual CheckBox CheckBox扫描添加
- {
- [DebuggerNonUserCode] get => _CheckBox扫描添加;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox扫描添加 != null)
- _CheckBox扫描添加.CheckedChanged -= CheckBox扫描添加_CheckedChanged;
- _CheckBox扫描添加 = value;
- if (_CheckBox扫描添加 == null)
- return;
- _CheckBox扫描添加.CheckedChanged += CheckBox扫描添加_CheckedChanged;
- }
- }
-
- private void ChannelEditForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- publicva.ChannelEditFormLoader = false;
- }
-
- public void ChannelEditForm_Load(object sender, EventArgs e)
- {
- ComboBox编辑信道号.SelectedIndex = MyProject.Forms.ChannelMsg.ChannelMsgDataGridView.CurrentCell.RowIndex;
- GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- publicva.ChannelEditFormLoader = true;
- }
-
- public void Get_ComboBoxCallList(string[] str)
- {
- var num1 = ComboBox呼叫.SelectedIndex;
- if (num1 > Information.UBound(str))
- num1 = 0;
- ComboBox呼叫.Items.Clear();
- var num2 = Information.UBound(str);
- var index = 0;
- while (index <= num2)
- {
- ComboBox呼叫.Items.Add(str[index].ToString());
- checked { ++index; }
- }
- ComboBox呼叫.SelectedIndex = num1;
- }
-
- public void ChangeSignal(int i, bool InitDefault)
- {
- var str1 = new string[17]
- {
- "无",
- Conversions.ToString(1),
- Conversions.ToString(2),
- Conversions.ToString(3),
- Conversions.ToString(4),
- Conversions.ToString(5),
- Conversions.ToString(6),
- Conversions.ToString(7),
- Conversions.ToString(8),
- Conversions.ToString(9),
- Conversions.ToString(10),
- Conversions.ToString(11),
- Conversions.ToString(12),
- Conversions.ToString(13),
- Conversions.ToString(14),
- Conversions.ToString(15),
- Conversions.ToString(16)
- };
- var str2 = new string[17]
- {
- "OFF",
- Conversions.ToString(1),
- Conversions.ToString(2),
- Conversions.ToString(3),
- Conversions.ToString(4),
- Conversions.ToString(5),
- Conversions.ToString(6),
- Conversions.ToString(7),
- Conversions.ToString(8),
- Conversions.ToString(9),
- Conversions.ToString(10),
- Conversions.ToString(11),
- Conversions.ToString(12),
- Conversions.ToString(13),
- Conversions.ToString(14),
- Conversions.ToString(15),
- Conversions.ToString(16)
- };
- var str3 = new string[33]
- {
- "无",
- Conversions.ToString(1),
- Conversions.ToString(2),
- Conversions.ToString(3),
- Conversions.ToString(4),
- Conversions.ToString(5),
- Conversions.ToString(6),
- Conversions.ToString(7),
- Conversions.ToString(8),
- Conversions.ToString(9),
- Conversions.ToString(10),
- Conversions.ToString(11),
- Conversions.ToString(12),
- Conversions.ToString(13),
- Conversions.ToString(14),
- Conversions.ToString(15),
- Conversions.ToString(16),
- Conversions.ToString(17),
- Conversions.ToString(18),
- Conversions.ToString(19),
- Conversions.ToString(20),
- Conversions.ToString(21),
- Conversions.ToString(22),
- Conversions.ToString(23),
- Conversions.ToString(24),
- Conversions.ToString(25),
- Conversions.ToString(26),
- Conversions.ToString(27),
- Conversions.ToString(28),
- Conversions.ToString(29),
- Conversions.ToString(30),
- Conversions.ToString(31),
- Conversions.ToString(32)
- };
- var str4 = new string[33]
- {
- "OFF",
- Conversions.ToString(1),
- Conversions.ToString(2),
- Conversions.ToString(3),
- Conversions.ToString(4),
- Conversions.ToString(5),
- Conversions.ToString(6),
- Conversions.ToString(7),
- Conversions.ToString(8),
- Conversions.ToString(9),
- Conversions.ToString(10),
- Conversions.ToString(11),
- Conversions.ToString(12),
- Conversions.ToString(13),
- Conversions.ToString(14),
- Conversions.ToString(15),
- Conversions.ToString(16),
- Conversions.ToString(17),
- Conversions.ToString(18),
- Conversions.ToString(19),
- Conversions.ToString(20),
- Conversions.ToString(21),
- Conversions.ToString(22),
- Conversions.ToString(23),
- Conversions.ToString(24),
- Conversions.ToString(25),
- Conversions.ToString(26),
- Conversions.ToString(27),
- Conversions.ToString(28),
- Conversions.ToString(29),
- Conversions.ToString(30),
- Conversions.ToString(31),
- Conversions.ToString(32)
- };
- switch (i)
- {
- case 1:
- Label15.Enabled = false;
- Label16.Enabled = false;
- Label17.Enabled = true;
- Label18.Enabled = true;
- ComboBox两音系统参数.Enabled = false;
- ComboBox五音系统参数.Enabled = false;
- ComboBox呼叫.Enabled = true;
- TextBoxID代码.Enabled = true;
- ComboBoxPTTID.Enabled = true;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- Get_ComboBoxCallList(str1);
- break;
- }
- Get_ComboBoxCallList(str2);
- break;
- case 2:
- Label15.Enabled = true;
- Label16.Enabled = false;
- Label17.Enabled = true;
- Label18.Enabled = false;
- ComboBox两音系统参数.Enabled = true;
- ComboBox五音系统参数.Enabled = false;
- ComboBox呼叫.Enabled = true;
- TextBoxID代码.Enabled = false;
- ComboBoxPTTID.Enabled = false;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- Get_ComboBoxCallList(str3);
- break;
- }
- Get_ComboBoxCallList(str4);
- break;
- case 3:
- Label15.Enabled = false;
- Label16.Enabled = true;
- Label17.Enabled = true;
- Label18.Enabled = false;
- ComboBox两音系统参数.Enabled = false;
- ComboBox五音系统参数.Enabled = true;
- ComboBox呼叫.Enabled = true;
- TextBoxID代码.Enabled = false;
- ComboBoxPTTID.Enabled = false;
- if (Operators.CompareString(publicva.Language, "zh-CHS", false) == 0)
- {
- Get_ComboBoxCallList(str3);
- break;
- }
- Get_ComboBoxCallList(str4);
- break;
- default:
- Label15.Enabled = false;
- Label16.Enabled = false;
- Label17.Enabled = false;
- Label18.Enabled = false;
- ComboBox两音系统参数.Enabled = false;
- ComboBox五音系统参数.Enabled = false;
- ComboBox呼叫.Enabled = false;
- TextBoxID代码.Enabled = false;
- ComboBoxPTTID.Enabled = false;
- break;
- }
- if (!InitDefault)
- return;
- if (i == 0 && ComboBox繁忙信道锁定.SelectedIndex == 3)
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- ComboBox两音系统参数.SelectedIndex = 1;
- ComboBox五音系统参数.SelectedIndex = 0;
- ComboBox呼叫.SelectedIndex = 0;
- TextBoxID代码.Text = "000";
- ComboBoxPTTID.SelectedIndex = 0;
- }
-
- public object Get_CHEdit_CTC_DCS_Str(int Address)
- {
- var num = (int) (byte) ((publicva.EEPROM_Byte[checked (Address + 0)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4);
- string chEditCtcDcsStr;
- if (num == 0)
- {
- chEditCtcDcsStr = Conversions.ToString(ComboBox亚音解码.Items[0]);
- }
- else
- {
- var a = (double) checked ((publicva.EEPROM_Byte[Address + 0] & 15) * 256 + publicva.EEPROM_Byte[Address + 1]);
- if (num == 3)
+ internal virtual TextBox TextBoxRxFreq
{
- var integer = Conversions.ToInteger(Conversion.Oct(checked ((long) Math.Round(a)) & 511L));
- chEditCtcDcsStr = (publicva.EEPROM_Byte[checked (Address + 0)] & (uint) publicva.Bit7) <= 0U ? "D" + string.Format("{0:D3}", integer) + "N" : "D" + string.Format("{0:D3}", integer) + "I";
+ [DebuggerNonUserCode]
+ get => _TextBoxRxFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBoxRxFreq != null)
+ {
+ _TextBoxRxFreq.LostFocus -= TextBoxRxFreq_LostFocus;
+ _TextBoxRxFreq.KeyPress -= TextBoxRxFreq_KeyPress;
+ }
+
+ _TextBoxRxFreq = value;
+ if (_TextBoxRxFreq == null)
+ return;
+ _TextBoxRxFreq.LostFocus += TextBoxRxFreq_LostFocus;
+ _TextBoxRxFreq.KeyPress += TextBoxRxFreq_KeyPress;
+ }
}
- else
- chEditCtcDcsStr = string.Format("{0:###.0}", a / 10.0);
- }
- if (!ComboBox亚音解码.Items.Contains(chEditCtcDcsStr))
- {
- ComboBox亚音解码.Items.Add(chEditCtcDcsStr);
- if (!ComboBox亚音编码.Items.Contains(chEditCtcDcsStr))
- ComboBox亚音编码.Items.Add(chEditCtcDcsStr);
- }
- return chEditCtcDcsStr;
- }
- public void Set_CHEdit_CTC_DCS_Data(int Address, string ToneStr, int ToneMode)
- {
- if (!ComboBox亚音解码.Items.Contains(ToneStr))
- {
- ComboBox亚音解码.Items.Add(ToneStr);
- if (!ComboBox亚音编码.Items.Contains(ToneStr))
- ComboBox亚音编码.Items.Add(ToneStr);
- }
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & unchecked ((byte) ~(publicva.Bit4 | publicva.Bit5)) | ToneMode << 4));
- switch (ToneMode)
- {
- case 0:
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) (publicva.EEPROM_Byte[Address + 1] & 0));
- break;
- case 3:
- var a1 = Conversions.ToDouble("&H" + Conversion.Hex("&O" + Conversions.ToString(Conversions.ToDouble(ToneStr.Substring(1, 3)))));
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a1) & 3840L) >> 8));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) ((long) Math.Round(a1) & byte.MaxValue));
- publicva.EEPROM_Byte[checked (Address + 0)] = Operators.CompareString("I", ToneStr.Substring(4, 1), false) != 0 ? (byte) (publicva.EEPROM_Byte[checked (Address + 0)] & ~publicva.Bit7) : (byte) (publicva.EEPROM_Byte[checked (Address + 0)] | publicva.Bit7);
- break;
- default:
- double num;
- try
- {
- num = Conversions.ToDouble(ToneStr);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- num = 67.0;
- ProjectData.ClearProjectError();
- }
- var a2 = num * 10.0;
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a2) & 3840L) >> 8));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) ((long) Math.Round(a2) & byte.MaxValue));
- break;
- }
- }
-
- public object GetDTMFID_Text(int address, int Sum)
- {
- var str1 = "";
- var num = 0;
- do
- {
- var str2 = BitConverter.ToString(publicva.EEPROM_Byte, checked (num + address), 1).Replace("E", "*").Replace("F", "#");
- str1 += str2;
- checked { ++num; }
- }
- while (num <= 4);
- return Strings.RTrim(str1.Substring(0, Sum));
- }
-
- public void GetDTMFID_Code(int address, string text)
- {
- publicva.EEPROM_Byte[checked (address + 5)] = checked ((byte) text.Length);
- text = text.PadRight(10, '0');
- text = text.Replace("*", "E");
- text = text.Replace("#", "F");
- var num = 0;
- do
- {
- var str = text.Substring(checked (num * 2), 2);
- publicva.EEPROM_Byte[checked (address + num)] = Conversions.ToByte("&h" + str);
- checked { ++num; }
- }
- while (num <= 4);
- }
-
- public void GetStr_CHMsg(int i)
- {
- var flag = false;
- var integer = Conversions.ToInteger(MyProject.Forms.ChannelMsg.Get_CHAddress(i));
- if (i > 511)
- {
- if (Operators.ConditionalCompareObjectNotEqual("", MyProject.Forms.ChannelMsg.Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
- flag = true;
- }
- else if (MyProject.Forms.ChannelMsg.CHStatus_Read(i, 8064) && Operators.ConditionalCompareObjectNotEqual("", MyProject.Forms.ChannelMsg.Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
- flag = true;
- if (flag)
- {
- TextBoxRxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.Get_RxFreqStr(checked (integer + 0), publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)));
- TextBoxTxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.Get_TxFreqStr(checked (integer + 3), publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 12)] & (publicva.Bit0 | publicva.Bit1)));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxStep, checked (integer + 6), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox亚音解码类型, checked (integer + 7), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(checked (integer + 7)));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox亚音编码类型, checked (integer + 9), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(checked (integer + 9)));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox尾音消除, checked (integer + 9), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox耳语, checked (integer + 11), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxSP不静音, checked (integer + 11), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定, checked (integer + 11), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBoxPTTID暂停, checked (integer + 12), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox可选信令, checked (integer + 12), (byte) (publicva.Bit4 | publicva.Bit5 | publicva.Bit6), 4);
- SetControl_Enable(true);
- ChangeSignal(ComboBox可选信令.SelectedIndex, false);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox发射禁止, checked (integer + 12), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBoxPTTID静音, checked (integer + 13), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox发射功率, checked (integer + 13), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxPTTID, checked (integer + 13), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox倒频, checked (integer + 14), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox脱网, checked (integer + 14), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox带宽, checked (integer + 14), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxSFT, checked (integer + 14), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音系统参数, checked (integer + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox五音系统参数, checked (integer + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox呼叫, checked (integer + 18), publicva.AllBit, 0);
- SetControl_DTMF_ID_Sum();
- TextBoxID代码.Text = Conversions.ToString(GetDTMFID_Text(checked (integer + 20), publicva.EEPROM_Byte[checked (integer + 25)]));
- if (i > 511)
+ internal virtual Label Label2
{
- CheckBox扫描添加.Checked = false;
- TextBox信道名称.Text = "";
- TextBox信道名称.Enabled = false;
+ [DebuggerNonUserCode]
+ get => _Label2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label2 = value;
}
- else
+
+ internal virtual GroupBox GroupBox1
{
- TextBox信道名称.Enabled = true;
- TextBox信道名称.Text = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked (integer + 26), 6));
- CheckBox扫描添加.Checked = MyProject.Forms.ChannelMsg.CHStatus_Read(i, 8128);
+ [DebuggerNonUserCode]
+ get => _GroupBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox1 = value; }
}
- }
- else
- {
- TextBoxRxFreq.Text = "";
- CHEditMsg_Init(TextBoxRxFreq.Text);
- SetControl_Enable(false);
- }
- }
- public void SetControl_DTMF_ID_Sum()
- {
- if ((publicva.EEPROM_Byte[3895] & (uint) publicva.Bit6) > 0U)
- TextBoxID代码.MaxLength = 3;
- else
- TextBoxID代码.MaxLength = 10;
- }
-
- public void SetData_EditCHMsg(int i)
- {
- var flag = false;
- var integer = Conversions.ToInteger(MyProject.Forms.ChannelMsg.Get_CHAddress(i));
- if (Operators.CompareString(TextBoxRxFreq.Text, "", false) != 0 && Operators.CompareString("", TextBoxTxFreq.Text, false) != 0)
- flag = true;
- if (flag)
- {
- publicva.EEPROM_Byte[checked (integer + 15)] = Conversions.ToByte(MyProject.Forms.ChannelMsg.Get_FreqRangID(Conversions.ToDouble(TextBoxRxFreq.Text)));
- publicva.EEPROM_Byte[checked (integer + 11)] = Conversions.ToByte(Operators.OrObject((byte) (publicva.EEPROM_Byte[checked (integer + 11)] & (byte) ~(publicva.Bit0 | publicva.Bit1)), MyProject.Forms.ChannelMsg.Get_FreqStepFlag(Conversions.ToDouble(TextBoxRxFreq.Text))));
- MyProject.Forms.ChannelMsg.Set_FreqData(checked (integer + 0), TextBoxRxFreq.Text);
- publicva.EEPROM_Byte[checked (integer + 12)] = Conversions.ToByte(Operators.OrObject((byte) (publicva.EEPROM_Byte[checked (integer + 12)] & (byte) ~(publicva.Bit0 | publicva.Bit1)), MyProject.Forms.ChannelMsg.Get_FreqStepFlag(Conversions.ToDouble(TextBoxTxFreq.Text))));
- MyProject.Forms.ChannelMsg.Set_FreqData(checked (integer + 3), TextBoxTxFreq.Text);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxStep, checked (integer + 6), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox亚音解码类型, checked (integer + 7), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- Set_CHEdit_CTC_DCS_Data(checked (integer + 7), ComboBox亚音解码.Text, ComboBox亚音解码类型.SelectedIndex);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox亚音编码类型, checked (integer + 9), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- Set_CHEdit_CTC_DCS_Data(checked (integer + 9), ComboBox亚音编码.Text, ComboBox亚音编码类型.SelectedIndex);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox尾音消除, checked (integer + 9), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox耳语, checked (integer + 11), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxSP不静音, checked (integer + 11), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox繁忙信道锁定, checked (integer + 11), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBoxPTTID暂停, checked (integer + 12), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox可选信令, checked (integer + 12), (byte) (publicva.Bit4 | publicva.Bit5 | publicva.Bit6), 4);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox发射禁止, checked (integer + 12), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBoxPTTID静音, checked (integer + 13), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox发射功率, checked (integer + 13), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxPTTID, checked (integer + 13), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox倒频, checked (integer + 14), publicva.Bit7, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox脱网, checked (integer + 14), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox带宽, checked (integer + 14), (byte) (publicva.Bit4 | publicva.Bit5), 4);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxSFT, checked (integer + 14), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音系统参数, checked (integer + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox五音系统参数, checked (integer + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox呼叫, checked (integer + 18), publicva.AllBit, 0);
- GetDTMFID_Code(checked (integer + 20), TextBoxID代码.Text);
- Encoding.ASCII.GetBytes(TextBox信道名称.Text.PadRight(6), 0, 6, publicva.EEPROM_Byte, checked (integer + 26));
- if (CheckBox扫描添加.Checked)
+ internal virtual TextBox TextBoxTxFreq
{
- if (i <= 511)
- MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "添加", 8128);
+ [DebuggerNonUserCode]
+ get => _TextBoxTxFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBoxTxFreq != null)
+ {
+ _TextBoxTxFreq.LostFocus -= TextBoxTxFreq_LostFocus;
+ _TextBoxTxFreq.KeyPress -= TextBoxtxFreq_KeyPress;
+ }
+
+ _TextBoxTxFreq = value;
+ if (_TextBoxTxFreq == null)
+ return;
+ _TextBoxTxFreq.LostFocus += TextBoxTxFreq_LostFocus;
+ _TextBoxTxFreq.KeyPress += TextBoxtxFreq_KeyPress;
+ }
}
- else if (i <= 511)
- MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8128);
- if (i > 511)
- return;
- MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "添加", 8064);
- }
- else
- {
- var num = 0;
- do
+
+ internal virtual Label Label3
{
- publicva.EEPROM_Byte[checked (integer + num)] = 0;
- checked { ++num; }
+ [DebuggerNonUserCode]
+ get => _Label3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label3 = value;
}
- while (num <= 31);
- if (i <= 511)
+
+ internal virtual ComboBox ComboBoxStep
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8064);
- MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8128);
+ [DebuggerNonUserCode]
+ get => _ComboBoxStep;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxStep != null)
+ _ComboBoxStep.SelectionChangeCommitted -= ComboBoxStep_SelectionChangeCommitted;
+ _ComboBoxStep = value;
+ if (_ComboBoxStep == null)
+ return;
+ _ComboBoxStep.SelectionChangeCommitted += ComboBoxStep_SelectionChangeCommitted;
+ }
}
- }
- }
- public void CHEditMsg_Init(string str)
- {
- TextBoxTxFreq.Text = str;
- ComboBoxSFT.SelectedIndex = 0;
- ComboBoxStep.SelectedIndex = 1;
- ComboBox带宽.SelectedIndex = 2;
- ComboBox亚音解码类型.SelectedIndex = 0;
- ComboBox亚音解码.SelectedIndex = 0;
- ComboBox亚音编码类型.SelectedIndex = 0;
- ComboBox亚音编码.SelectedIndex = 0;
- ComboBox可选信令.SelectedIndex = 0;
- ComboBoxSP不静音.SelectedIndex = 0;
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- ComboBox发射功率.SelectedIndex = 0;
- ComboBoxPTTID.SelectedIndex = 0;
- TextBox信道名称.Text = "------";
- CheckBox尾音消除.Checked = true;
- CheckBox耳语.Checked = false;
- CheckBoxPTTID暂停.Checked = false;
- CheckBox发射禁止.Checked = false;
- CheckBoxPTTID静音.Checked = false;
- CheckBox倒频.Checked = false;
- CheckBox脱网.Checked = false;
- CheckBox扫描添加.Checked = true;
- ComboBox两音系统参数.SelectedIndex = 1;
- ComboBox五音系统参数.SelectedIndex = 0;
- ComboBox呼叫.SelectedIndex = 0;
- TextBoxID代码.Text = "000";
- }
-
- public void SetControl_Enable(bool i)
- {
- ComboBoxSFT.Enabled = i;
- TextBoxTxFreq.Enabled = i;
- ComboBoxStep.Enabled = i;
- ComboBox带宽.Enabled = i;
- ComboBox亚音解码类型.Enabled = i;
- ComboBox亚音解码.Enabled = i;
- ComboBox亚音编码类型.Enabled = i;
- ComboBox亚音编码.Enabled = i;
- ComboBox可选信令.Enabled = i;
- ComboBoxSP不静音.Enabled = i;
- ComboBox繁忙信道锁定.Enabled = i;
- ComboBox发射功率.Enabled = i;
- ComboBoxPTTID.Enabled = i;
- TextBox信道名称.Enabled = i;
- CheckBox尾音消除.Enabled = i;
- CheckBox耳语.Enabled = i;
- CheckBoxPTTID暂停.Enabled = i;
- CheckBox发射禁止.Enabled = i;
- CheckBoxPTTID静音.Enabled = i;
- CheckBox倒频.Enabled = i;
- CheckBox脱网.Enabled = i;
- CheckBox扫描添加.Enabled = i;
- ComboBox两音系统参数.Enabled = i;
- ComboBox五音系统参数.Enabled = i;
- ComboBox呼叫.Enabled = i;
- TextBoxID代码.Enabled = i;
- }
-
- private void ComboBox编辑信道号_SelectedIndexChanged(object sender, EventArgs e)
- {
- GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void TextBoxRxFreq_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ internal virtual Label Label4
{
- if (TextBoxRxFreq.Text.Contains("."))
- e.Handled = true;
- else
- e.Handled = false;
+ [DebuggerNonUserCode]
+ get => _Label4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label4 = value;
}
- else
- e.Handled = false;
- }
- else if (e.KeyChar == '\r')
- {
- TextBoxRxFreq_LostFocus(RuntimeHelpers.GetObjectValue(sender), e);
- e.Handled = true;
- }
- else
- e.Handled = true;
- }
- private void TextBoxtxFreq_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ internal virtual ComboBox ComboBox亚音解码类型
{
- if (TextBoxTxFreq.Text.Contains("."))
- e.Handled = true;
- else
- e.Handled = false;
+ [DebuggerNonUserCode]
+ get => _ComboBox亚音解码类型;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox亚音解码类型 != null)
+ _ComboBox亚音解码类型.SelectionChangeCommitted -= ComboBox亚音解码类型_SelectionChangeCommitted;
+ _ComboBox亚音解码类型 = value;
+ if (_ComboBox亚音解码类型 == null)
+ return;
+ _ComboBox亚音解码类型.SelectionChangeCommitted += ComboBox亚音解码类型_SelectionChangeCommitted;
+ }
}
- else
- e.Handled = false;
- }
- else if (e.KeyChar == '\r')
- {
- TextBoxTxFreq_LostFocus(RuntimeHelpers.GetObjectValue(sender), e);
- e.Handled = true;
- }
- else
- e.Handled = true;
- }
- private void TextBoxRxFreq_LostFocus(object sender, EventArgs e)
- {
- if (Operators.CompareString(TextBoxRxFreq.Text, "", false) != 0)
- {
- var Left = Conversions.ToString(MyProject.Forms.ChannelMsg.JudgeInputRxFreq(TextBoxRxFreq.Text, false));
- TextBoxRxFreq.Text = Left;
- if (Operators.CompareString(TextBoxTxFreq.Text, "", false) == 0)
+ internal virtual Label Label5
{
- if (Operators.CompareString(Left, "", false) == 0)
- {
- TextBoxRxFreq.Text = "";
- CHEditMsg_Init(TextBoxRxFreq.Text);
- SetControl_Enable(false);
- }
- else
- {
- if (Conversions.ToDouble(Left) > 300.0)
- CHEditMsg_Init("5.00000");
+ [DebuggerNonUserCode]
+ get => _Label5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label5 = value;
+ }
+
+ internal virtual ComboBox ComboBox亚音解码
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox亚音解码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox亚音解码 != null)
+ {
+ _ComboBox亚音解码.SelectedValueChanged -= ComboBox亚音解码_SelectedValueChanged;
+ _ComboBox亚音解码.Validating -= ComboBox亚音解码_Validating;
+ _ComboBox亚音解码.KeyPress -= ComboBox亚音解码_KeyPress;
+ }
+
+ _ComboBox亚音解码 = value;
+ if (_ComboBox亚音解码 == null)
+ return;
+ _ComboBox亚音解码.SelectedValueChanged += ComboBox亚音解码_SelectedValueChanged;
+ _ComboBox亚音解码.Validating += ComboBox亚音解码_Validating;
+ _ComboBox亚音解码.KeyPress += ComboBox亚音解码_KeyPress;
+ }
+ }
+
+ internal virtual Label Label6
+ {
+ [DebuggerNonUserCode]
+ get => _Label6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label6 = value;
+ }
+
+ internal virtual CheckBox CheckBox耳语
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox耳语;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox耳语 != null)
+ _CheckBox耳语.CheckedChanged -= CheckBox耳语_CheckedChanged;
+ _CheckBox耳语 = value;
+ if (_CheckBox耳语 == null)
+ return;
+ _CheckBox耳语.CheckedChanged += CheckBox耳语_CheckedChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBox尾音消除
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox尾音消除;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox尾音消除 != null)
+ _CheckBox尾音消除.CheckedChanged -= CheckBox尾音消除_CheckedChanged;
+ _CheckBox尾音消除 = value;
+ if (_CheckBox尾音消除 == null)
+ return;
+ _CheckBox尾音消除.CheckedChanged += CheckBox尾音消除_CheckedChanged;
+ }
+ }
+
+ internal virtual ComboBox ComboBoxSP不静音
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxSP不静音;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxSP不静音 != null)
+ _ComboBoxSP不静音.SelectionChangeCommitted -= ComboBoxSP不静音_SelectionChangeCommitted;
+ _ComboBoxSP不静音 = value;
+ if (_ComboBoxSP不静音 == null)
+ return;
+ _ComboBoxSP不静音.SelectionChangeCommitted += ComboBoxSP不静音_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox亚音编码
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox亚音编码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox亚音编码 != null)
+ {
+ _ComboBox亚音编码.SelectedValueChanged -= ComboBox亚音编码_SelectedValueChanged;
+ _ComboBox亚音编码.Validating -= ComboBox亚音编码_Validating;
+ _ComboBox亚音编码.KeyPress -= ComboBox亚音编码_KeyPress;
+ }
+
+ _ComboBox亚音编码 = value;
+ if (_ComboBox亚音编码 == null)
+ return;
+ _ComboBox亚音编码.SelectedValueChanged += ComboBox亚音编码_SelectedValueChanged;
+ _ComboBox亚音编码.Validating += ComboBox亚音编码_Validating;
+ _ComboBox亚音编码.KeyPress += ComboBox亚音编码_KeyPress;
+ }
+ }
+
+ internal virtual Label Label9
+ {
+ [DebuggerNonUserCode]
+ get => _Label9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label9 = value;
+ }
+
+ internal virtual Label Label8
+ {
+ [DebuggerNonUserCode]
+ get => _Label8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label8 = value;
+ }
+
+ internal virtual ComboBox ComboBox亚音编码类型
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox亚音编码类型;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox亚音编码类型 != null)
+ _ComboBox亚音编码类型.SelectionChangeCommitted -= ComboBox亚音编码类型_SelectionChangeCommitted;
+ _ComboBox亚音编码类型 = value;
+ if (_ComboBox亚音编码类型 == null)
+ return;
+ _ComboBox亚音编码类型.SelectionChangeCommitted += ComboBox亚音编码类型_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label7
+ {
+ [DebuggerNonUserCode]
+ get => _Label7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label7 = value;
+ }
+
+ internal virtual CheckBox CheckBoxPTTID静音
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBoxPTTID静音;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBoxPTTID静音 != null)
+ _CheckBoxPTTID静音.CheckedChanged -= CheckBoxPTTID静音_CheckedChanged;
+ _CheckBoxPTTID静音 = value;
+ if (_CheckBoxPTTID静音 == null)
+ return;
+ _CheckBoxPTTID静音.CheckedChanged += CheckBoxPTTID静音_CheckedChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBox发射禁止
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox发射禁止;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox发射禁止 != null)
+ _CheckBox发射禁止.CheckedChanged -= CheckBox发射禁止_CheckedChanged;
+ _CheckBox发射禁止 = value;
+ if (_CheckBox发射禁止 == null)
+ return;
+ _CheckBox发射禁止.CheckedChanged += CheckBox发射禁止_CheckedChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBoxPTTID暂停
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBoxPTTID暂停;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBoxPTTID暂停 != null)
+ _CheckBoxPTTID暂停.CheckedChanged -= CheckBoxPTTID暂停_CheckedChanged;
+ _CheckBoxPTTID暂停 = value;
+ if (_CheckBoxPTTID暂停 == null)
+ return;
+ _CheckBoxPTTID暂停.CheckedChanged += CheckBoxPTTID暂停_CheckedChanged;
+ }
+ }
+
+ internal virtual ComboBox ComboBox可选信令
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox可选信令;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox可选信令 != null)
+ _ComboBox可选信令.SelectionChangeCommitted -= ComboBox可选信令_SelectionChangeCommitted;
+ _ComboBox可选信令 = value;
+ if (_ComboBox可选信令 == null)
+ return;
+ _ComboBox可选信令.SelectionChangeCommitted += ComboBox可选信令_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox繁忙信道锁定
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox繁忙信道锁定;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox繁忙信道锁定 != null)
+ _ComboBox繁忙信道锁定.SelectionChangeCommitted -= ComboBox繁忙信道锁定_SelectionChangeCommitted;
+ _ComboBox繁忙信道锁定 = value;
+ if (_ComboBox繁忙信道锁定 == null)
+ return;
+ _ComboBox繁忙信道锁定.SelectionChangeCommitted += ComboBox繁忙信道锁定_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label11
+ {
+ [DebuggerNonUserCode]
+ get => _Label11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label11 = value; }
+ }
+
+ internal virtual Label Label10
+ {
+ [DebuggerNonUserCode]
+ get => _Label10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label10 = value; }
+ }
+
+ internal virtual CheckBox CheckBox脱网
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox脱网;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox脱网 != null)
+ _CheckBox脱网.CheckedChanged -= CheckBox脱网_CheckedChanged;
+ _CheckBox脱网 = value;
+ if (_CheckBox脱网 == null)
+ return;
+ _CheckBox脱网.CheckedChanged += CheckBox脱网_CheckedChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBox倒频
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox倒频;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox倒频 != null)
+ _CheckBox倒频.CheckedChanged -= CheckBox倒频_CheckedChanged;
+ _CheckBox倒频 = value;
+ if (_CheckBox倒频 == null)
+ return;
+ _CheckBox倒频.CheckedChanged += CheckBox倒频_CheckedChanged;
+ }
+ }
+
+ internal virtual ComboBox ComboBox两音系统参数
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音系统参数;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox两音系统参数 != null)
+ _ComboBox两音系统参数.SelectionChangeCommitted -= ComboBox两音系统参数_SelectionChangeCommitted;
+ _ComboBox两音系统参数 = value;
+ if (_ComboBox两音系统参数 == null)
+ return;
+ _ComboBox两音系统参数.SelectionChangeCommitted += ComboBox两音系统参数_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox带宽
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox带宽;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox带宽 != null)
+ _ComboBox带宽.SelectionChangeCommitted -= ComboBox带宽_SelectionChangeCommitted;
+ _ComboBox带宽 = value;
+ if (_ComboBox带宽 == null)
+ return;
+ _ComboBox带宽.SelectionChangeCommitted += ComboBox带宽_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBoxPTTID
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxPTTID;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxPTTID != null)
+ _ComboBoxPTTID.SelectionChangeCommitted -= ComboBoxPTTID_SelectionChangeCommitted;
+ _ComboBoxPTTID = value;
+ if (_ComboBoxPTTID == null)
+ return;
+ _ComboBoxPTTID.SelectionChangeCommitted += ComboBoxPTTID_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label15
+ {
+ [DebuggerNonUserCode]
+ get => _Label15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label15 = value; }
+ }
+
+ internal virtual ComboBox ComboBox发射功率
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox发射功率;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox发射功率 != null)
+ _ComboBox发射功率.SelectionChangeCommitted -= ComboBox发射功率_SelectionChangeCommitted;
+ _ComboBox发射功率 = value;
+ if (_ComboBox发射功率 == null)
+ return;
+ _ComboBox发射功率.SelectionChangeCommitted += ComboBox发射功率_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label14
+ {
+ [DebuggerNonUserCode]
+ get => _Label14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label14 = value; }
+ }
+
+ internal virtual Label Label13
+ {
+ [DebuggerNonUserCode]
+ get => _Label13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label13 = value; }
+ }
+
+ internal virtual Label Label12
+ {
+ [DebuggerNonUserCode]
+ get => _Label12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label12 = value; }
+ }
+
+ internal virtual ComboBox ComboBox呼叫
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox呼叫;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox呼叫 != null)
+ _ComboBox呼叫.SelectionChangeCommitted -= ComboBox呼叫_SelectionChangeCommitted;
+ _ComboBox呼叫 = value;
+ if (_ComboBox呼叫 == null)
+ return;
+ _ComboBox呼叫.SelectionChangeCommitted += ComboBox呼叫_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox五音系统参数
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox五音系统参数;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox五音系统参数 != null)
+ _ComboBox五音系统参数.SelectionChangeCommitted -= ComboBox五音系统参数_SelectionChangeCommitted;
+ _ComboBox五音系统参数 = value;
+ if (_ComboBox五音系统参数 == null)
+ return;
+ _ComboBox五音系统参数.SelectionChangeCommitted += ComboBox五音系统参数_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label17
+ {
+ [DebuggerNonUserCode]
+ get => _Label17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label17 = value; }
+ }
+
+ internal virtual Label Label16
+ {
+ [DebuggerNonUserCode]
+ get => _Label16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label16 = value; }
+ }
+
+ internal virtual TextBox TextBox信道名称
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox信道名称;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBox信道名称 != null)
+ _TextBox信道名称.LostFocus -= TextBox信道名称_LostFocus;
+ _TextBox信道名称 = value;
+ if (_TextBox信道名称 == null)
+ return;
+ _TextBox信道名称.LostFocus += TextBox信道名称_LostFocus;
+ }
+ }
+
+ internal virtual TextBox TextBoxID代码
+ {
+ [DebuggerNonUserCode]
+ get => _TextBoxID代码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBoxID代码 != null)
+ {
+ _TextBoxID代码.LostFocus -= TextBoxID代码_LostFocus;
+ _TextBoxID代码.KeyPress -= TextBoxID代码_KeyPress;
+ }
+
+ _TextBoxID代码 = value;
+ if (_TextBoxID代码 == null)
+ return;
+ _TextBoxID代码.LostFocus += TextBoxID代码_LostFocus;
+ _TextBoxID代码.KeyPress += TextBoxID代码_KeyPress;
+ }
+ }
+
+ internal virtual Label Label19
+ {
+ [DebuggerNonUserCode]
+ get => _Label19;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label19 = value; }
+ }
+
+ internal virtual Label Label18
+ {
+ [DebuggerNonUserCode]
+ get => _Label18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label18 = value; }
+ }
+
+ internal virtual ComboBox ComboBoxSFT
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxSFT;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxSFT != null)
+ _ComboBoxSFT.SelectionChangeCommitted -= ComboBoxSFT_SelectionChangeCommitted;
+ _ComboBoxSFT = value;
+ if (_ComboBoxSFT == null)
+ return;
+ _ComboBoxSFT.SelectionChangeCommitted += ComboBoxSFT_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label20
+ {
+ [DebuggerNonUserCode]
+ get => _Label20;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label20 = value; }
+ }
+
+ internal virtual GroupBox GroupBox2
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox2 = value; }
+ }
+
+ internal virtual Button Button3
+ {
+ [DebuggerNonUserCode]
+ get => _Button3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button3 = value; }
+ }
+
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button2 = value; }
+ }
+
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
+
+ internal virtual ComboBox ComboBox编辑信道号
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox编辑信道号;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox编辑信道号 != null)
+ _ComboBox编辑信道号.SelectedIndexChanged -= ComboBox编辑信道号_SelectedIndexChanged;
+ _ComboBox编辑信道号 = value;
+ if (_ComboBox编辑信道号 == null)
+ return;
+ _ComboBox编辑信道号.SelectedIndexChanged += ComboBox编辑信道号_SelectedIndexChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBox扫描添加
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox扫描添加;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox扫描添加 != null)
+ _CheckBox扫描添加.CheckedChanged -= CheckBox扫描添加_CheckedChanged;
+ _CheckBox扫描添加 = value;
+ if (_CheckBox扫描添加 == null)
+ return;
+ _CheckBox扫描添加.CheckedChanged += CheckBox扫描添加_CheckedChanged;
+ }
+ }
+
+ private void ChannelEditForm_FormClosing(object sender, FormClosingEventArgs e)
+ {
+ publicva.ChannelEditFormLoader = false;
+ }
+
+ public void ChannelEditForm_Load(object sender, EventArgs e)
+ {
+ ComboBox编辑信道号.SelectedIndex = MyProject.Forms.ChannelMsg.ChannelMsgDataGridView.CurrentCell.RowIndex;
+ GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ publicva.ChannelEditFormLoader = true;
+ }
+
+ public void Get_ComboBoxCallList(string[] str)
+ {
+ var num1 = ComboBox呼叫.SelectedIndex;
+ if (num1 > Information.UBound(str))
+ num1 = 0;
+ ComboBox呼叫.Items.Clear();
+ var num2 = Information.UBound(str);
+ var index = 0;
+ while (index <= num2)
+ {
+ ComboBox呼叫.Items.Add(str[index]);
+ checked
+ {
+ ++index;
+ }
+ }
+
+ ComboBox呼叫.SelectedIndex = num1;
+ }
+
+ public void ChangeSignal(int i, bool InitDefault)
+ {
+ var str1 = new string[17]
+ {
+ "无",
+ Conversions.ToString(1),
+ Conversions.ToString(2),
+ Conversions.ToString(3),
+ Conversions.ToString(4),
+ Conversions.ToString(5),
+ Conversions.ToString(6),
+ Conversions.ToString(7),
+ Conversions.ToString(8),
+ Conversions.ToString(9),
+ Conversions.ToString(10),
+ Conversions.ToString(11),
+ Conversions.ToString(12),
+ Conversions.ToString(13),
+ Conversions.ToString(14),
+ Conversions.ToString(15),
+ Conversions.ToString(16)
+ };
+ var str2 = new string[17]
+ {
+ "OFF",
+ Conversions.ToString(1),
+ Conversions.ToString(2),
+ Conversions.ToString(3),
+ Conversions.ToString(4),
+ Conversions.ToString(5),
+ Conversions.ToString(6),
+ Conversions.ToString(7),
+ Conversions.ToString(8),
+ Conversions.ToString(9),
+ Conversions.ToString(10),
+ Conversions.ToString(11),
+ Conversions.ToString(12),
+ Conversions.ToString(13),
+ Conversions.ToString(14),
+ Conversions.ToString(15),
+ Conversions.ToString(16)
+ };
+ var str3 = new string[33]
+ {
+ "无",
+ Conversions.ToString(1),
+ Conversions.ToString(2),
+ Conversions.ToString(3),
+ Conversions.ToString(4),
+ Conversions.ToString(5),
+ Conversions.ToString(6),
+ Conversions.ToString(7),
+ Conversions.ToString(8),
+ Conversions.ToString(9),
+ Conversions.ToString(10),
+ Conversions.ToString(11),
+ Conversions.ToString(12),
+ Conversions.ToString(13),
+ Conversions.ToString(14),
+ Conversions.ToString(15),
+ Conversions.ToString(16),
+ Conversions.ToString(17),
+ Conversions.ToString(18),
+ Conversions.ToString(19),
+ Conversions.ToString(20),
+ Conversions.ToString(21),
+ Conversions.ToString(22),
+ Conversions.ToString(23),
+ Conversions.ToString(24),
+ Conversions.ToString(25),
+ Conversions.ToString(26),
+ Conversions.ToString(27),
+ Conversions.ToString(28),
+ Conversions.ToString(29),
+ Conversions.ToString(30),
+ Conversions.ToString(31),
+ Conversions.ToString(32)
+ };
+ var str4 = new string[33]
+ {
+ "OFF",
+ Conversions.ToString(1),
+ Conversions.ToString(2),
+ Conversions.ToString(3),
+ Conversions.ToString(4),
+ Conversions.ToString(5),
+ Conversions.ToString(6),
+ Conversions.ToString(7),
+ Conversions.ToString(8),
+ Conversions.ToString(9),
+ Conversions.ToString(10),
+ Conversions.ToString(11),
+ Conversions.ToString(12),
+ Conversions.ToString(13),
+ Conversions.ToString(14),
+ Conversions.ToString(15),
+ Conversions.ToString(16),
+ Conversions.ToString(17),
+ Conversions.ToString(18),
+ Conversions.ToString(19),
+ Conversions.ToString(20),
+ Conversions.ToString(21),
+ Conversions.ToString(22),
+ Conversions.ToString(23),
+ Conversions.ToString(24),
+ Conversions.ToString(25),
+ Conversions.ToString(26),
+ Conversions.ToString(27),
+ Conversions.ToString(28),
+ Conversions.ToString(29),
+ Conversions.ToString(30),
+ Conversions.ToString(31),
+ Conversions.ToString(32)
+ };
+ switch (i)
+ {
+ case 1:
+ Label15.Enabled = false;
+ Label16.Enabled = false;
+ Label17.Enabled = true;
+ Label18.Enabled = true;
+ ComboBox两音系统参数.Enabled = false;
+ ComboBox五音系统参数.Enabled = false;
+ ComboBox呼叫.Enabled = true;
+ TextBoxID代码.Enabled = true;
+ ComboBoxPTTID.Enabled = true;
+ Get_ComboBoxCallList(str2);
+ break;
+ case 2:
+ Label15.Enabled = true;
+ Label16.Enabled = false;
+ Label17.Enabled = true;
+ Label18.Enabled = false;
+ ComboBox两音系统参数.Enabled = true;
+ ComboBox五音系统参数.Enabled = false;
+ ComboBox呼叫.Enabled = true;
+ TextBoxID代码.Enabled = false;
+ ComboBoxPTTID.Enabled = false;
+ Get_ComboBoxCallList(str4);
+ break;
+ case 3:
+ Label15.Enabled = false;
+ Label16.Enabled = true;
+ Label17.Enabled = true;
+ Label18.Enabled = false;
+ ComboBox两音系统参数.Enabled = false;
+ ComboBox五音系统参数.Enabled = true;
+ ComboBox呼叫.Enabled = true;
+ TextBoxID代码.Enabled = false;
+ ComboBoxPTTID.Enabled = false;
+ Get_ComboBoxCallList(str4);
+ break;
+ default:
+ Label15.Enabled = false;
+ Label16.Enabled = false;
+ Label17.Enabled = false;
+ Label18.Enabled = false;
+ ComboBox两音系统参数.Enabled = false;
+ ComboBox五音系统参数.Enabled = false;
+ ComboBox呼叫.Enabled = false;
+ TextBoxID代码.Enabled = false;
+ ComboBoxPTTID.Enabled = false;
+ break;
+ }
+
+ if (!InitDefault)
+ return;
+ if (i == 0 && ComboBox繁忙信道锁定.SelectedIndex == 3)
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+ ComboBox两音系统参数.SelectedIndex = 1;
+ ComboBox五音系统参数.SelectedIndex = 0;
+ ComboBox呼叫.SelectedIndex = 0;
+ TextBoxID代码.Text = "000";
+ ComboBoxPTTID.SelectedIndex = 0;
+ }
+
+ public object Get_CHEdit_CTC_DCS_Str(int Address)
+ {
+ var num = (int) (byte) ((publicva.EEPROM_Byte[checked(Address + 0)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4);
+ string chEditCtcDcsStr;
+ if (num == 0)
+ {
+ chEditCtcDcsStr = Conversions.ToString(ComboBox亚音解码.Items[0]);
+ }
else
- CHEditMsg_Init("0.60000");
- SetControl_Enable(true);
- ChangeSignal(ComboBox可选信令.SelectedIndex, false);
- }
+ {
+ var a = (double) checked((publicva.EEPROM_Byte[Address + 0] & 15) * 256 + publicva.EEPROM_Byte[Address + 1]);
+ if (num == 3)
+ {
+ var integer = Conversions.ToInteger(Conversion.Oct(checked((long) Math.Round(a)) & 511L));
+ chEditCtcDcsStr = (publicva.EEPROM_Byte[checked(Address + 0)] & (uint) publicva.Bit7) <= 0U
+ ? "D" + string.Format("{0:D3}", integer) + "N"
+ : "D" + string.Format("{0:D3}", integer) + "I";
+ }
+ else
+ chEditCtcDcsStr = string.Format("{0:###.0}", a / 10.0);
+ }
+
+ if (!ComboBox亚音解码.Items.Contains(chEditCtcDcsStr))
+ {
+ ComboBox亚音解码.Items.Add(chEditCtcDcsStr);
+ if (!ComboBox亚音编码.Items.Contains(chEditCtcDcsStr))
+ ComboBox亚音编码.Items.Add(chEditCtcDcsStr);
+ }
+
+ return chEditCtcDcsStr;
}
- else if (Operators.CompareString(Left, "", false) == 0)
+
+ public void Set_CHEdit_CTC_DCS_Data(int Address, string ToneStr, int ToneMode)
{
- TextBoxRxFreq.Text = "";
- CHEditMsg_Init(TextBoxRxFreq.Text);
- SetControl_Enable(false);
+ if (!ComboBox亚音解码.Items.Contains(ToneStr))
+ {
+ ComboBox亚音解码.Items.Add(ToneStr);
+ if (!ComboBox亚音编码.Items.Contains(ToneStr))
+ ComboBox亚音编码.Items.Add(ToneStr);
+ }
+
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & unchecked((byte) ~(publicva.Bit4 | publicva.Bit5)) | ToneMode << 4));
+ switch (ToneMode)
+ {
+ case 0:
+ publicva.EEPROM_Byte[checked(Address + 0)] = checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) (publicva.EEPROM_Byte[Address + 1] & 0));
+ break;
+ case 3:
+ var a1 = Conversions.ToDouble("&H" + Conversion.Hex("&O" + Conversions.ToString(Conversions.ToDouble(ToneStr.Substring(1, 3)))));
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a1) & 3840L) >> 8));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) ((long) Math.Round(a1) & byte.MaxValue));
+ publicva.EEPROM_Byte[checked(Address + 0)] = Operators.CompareString("I", ToneStr.Substring(4, 1), false) != 0
+ ? (byte) (publicva.EEPROM_Byte[checked(Address + 0)] & ~publicva.Bit7)
+ : (byte) (publicva.EEPROM_Byte[checked(Address + 0)] | publicva.Bit7);
+ break;
+ default:
+ double num;
+ try
+ {
+ num = Conversions.ToDouble(ToneStr);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ num = 67.0;
+ ProjectData.ClearProjectError();
+ }
+
+ var a2 = num * 10.0;
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a2) & 3840L) >> 8));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) ((long) Math.Round(a2) & byte.MaxValue));
+ break;
+ }
}
- }
- else
- {
- TextBoxRxFreq.Text = "";
- CHEditMsg_Init(TextBoxRxFreq.Text);
- SetControl_Enable(false);
- }
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
- MyProject.Forms.ScanFuncMsgForm.SetControl_PRICHList();
- MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- }
- private void TextBoxTxFreq_LostFocus(object sender, EventArgs e)
- {
- TextBoxTxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.JudgeInputTxFreq(TextBoxRxFreq.Text, TextBoxTxFreq.Text, false));
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBoxSFT_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBoxStep_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox带宽_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox亚音编码_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- e.KeyChar = char.ToUpper(e.KeyChar);
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ public object GetDTMFID_Text(int address, int Sum)
{
- if (ComboBox亚音编码.Text.Contains("."))
- e.Handled = true;
- else
- e.Handled = false;
- }
- else
- e.Handled = false;
- }
- else if (e.KeyChar == '\r')
- {
- ComboBox亚音编码类型.Focus();
- e.Handled = true;
- }
- else
- e.Handled = true;
- }
+ var str1 = "";
+ var num = 0;
+ do
+ {
+ var str2 = BitConverter.ToString(publicva.EEPROM_Byte, checked(num + address), 1)
+ .Replace("E", "*")
+ .Replace("F", "#");
+ str1 += str2;
+ checked
+ {
+ ++num;
+ }
+ }
+ while (num <= 4);
- private void ComboBox亚音编码_Validating(object sender, CancelEventArgs e)
- {
- var text = ComboBox亚音编码.Text;
- if (Operators.CompareString(text.ToString().Substring(0, 1), "D", false) == 0)
- {
- if (text.ToString().Length != 5)
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
- else if (!(Operators.CompareString(text.ToString().Substring(4, 1), "N", false) == 0 | Operators.CompareString(text.ToString().Substring(4, 1), "I", false) == 0))
+ return Strings.RTrim(str1.Substring(0, Sum));
+ }
+
+ public void GetDTMFID_Code(int address, string text)
{
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ publicva.EEPROM_Byte[checked(address + 5)] = checked((byte) text.Length);
+ text = text.PadRight(10, '0');
+ text = text.Replace("*", "E");
+ text = text.Replace("#", "F");
+ var num = 0;
+ do
+ {
+ var str = text.Substring(checked(num * 2), 2);
+ publicva.EEPROM_Byte[checked(address + num)] = Conversions.ToByte("&h" + str);
+ checked
+ {
+ ++num;
+ }
+ }
+ while (num <= 4);
}
- else
+
+ public void GetStr_CHMsg(int i)
{
- ComboBox亚音编码.Text = text;
- ComboBox亚音编码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ var flag = false;
+ var integer = Conversions.ToInteger(MyProject.Forms.ChannelMsg.Get_CHAddress(i));
+ if (i > 511)
+ {
+ if (Operators.ConditionalCompareObjectNotEqual("",
+ MyProject.Forms.ChannelMsg.Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked(integer + 15)] & 15,
+ publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
+ flag = true;
+ }
+ else if (MyProject.Forms.ChannelMsg.CHStatus_Read(i, 8064) && Operators.ConditionalCompareObjectNotEqual("",
+ MyProject.Forms.ChannelMsg.Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked(integer + 15)] & 15,
+ publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
+ flag = true;
+
+ if (flag)
+ {
+ TextBoxRxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.Get_RxFreqStr(checked(integer + 0),
+ publicva.EEPROM_Byte[checked(integer + 15)] & 15, publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)));
+ TextBoxTxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.Get_TxFreqStr(checked(integer + 3),
+ publicva.EEPROM_Byte[checked(integer + 15)] & 15, publicva.EEPROM_Byte[checked(integer + 12)] & (publicva.Bit0 | publicva.Bit1)));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxStep, checked(integer + 6), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox亚音解码类型, checked(integer + 7), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(checked(integer + 7)));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox亚音编码类型, checked(integer + 9), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(checked(integer + 9)));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox尾音消除, checked(integer + 9), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox耳语, checked(integer + 11), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxSP不静音, checked(integer + 11), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定, checked(integer + 11), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBoxPTTID暂停, checked(integer + 12), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox可选信令, checked(integer + 12),
+ (byte) (publicva.Bit4 | publicva.Bit5 | publicva.Bit6), 4);
+ SetControl_Enable(true);
+ ChangeSignal(ComboBox可选信令.SelectedIndex, false);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox发射禁止, checked(integer + 12), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBoxPTTID静音, checked(integer + 13), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox发射功率, checked(integer + 13), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxPTTID, checked(integer + 13), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox倒频, checked(integer + 14), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox脱网, checked(integer + 14), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox带宽, checked(integer + 14), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxSFT, checked(integer + 14), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音系统参数, checked(integer + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox五音系统参数, checked(integer + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox呼叫, checked(integer + 18), publicva.AllBit, 0);
+ SetControl_DTMF_ID_Sum();
+ TextBoxID代码.Text = Conversions.ToString(GetDTMFID_Text(checked(integer + 20), publicva.EEPROM_Byte[checked(integer + 25)]));
+ if (i > 511)
+ {
+ CheckBox扫描添加.Checked = false;
+ TextBox信道名称.Text = "";
+ TextBox信道名称.Enabled = false;
+ }
+ else
+ {
+ TextBox信道名称.Enabled = true;
+ TextBox信道名称.Text = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked(integer + 26), 6));
+ CheckBox扫描添加.Checked = MyProject.Forms.ChannelMsg.CHStatus_Read(i, 8128);
+ }
+ }
+ else
+ {
+ TextBoxRxFreq.Text = "";
+ CHEditMsg_Init(TextBoxRxFreq.Text);
+ SetControl_Enable(false);
+ }
}
- }
- else
- {
- double num;
- try
+
+ public void SetControl_DTMF_ID_Sum()
{
- num = Conversions.ToDouble(text);
+ if ((publicva.EEPROM_Byte[3895] & (uint) publicva.Bit6) > 0U)
+ TextBoxID代码.MaxLength = 3;
+ else
+ TextBoxID代码.MaxLength = 10;
}
- catch (Exception ex)
+
+ public void SetData_EditCHMsg(int i)
{
- ProjectData.SetProjectError(ex);
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
- ProjectData.ClearProjectError();
- return;
+ var flag = false;
+ var integer = Conversions.ToInteger(MyProject.Forms.ChannelMsg.Get_CHAddress(i));
+ if (Operators.CompareString(TextBoxRxFreq.Text, "", false) != 0 && Operators.CompareString("", TextBoxTxFreq.Text, false) != 0)
+ flag = true;
+ if (flag)
+ {
+ publicva.EEPROM_Byte[checked(integer + 15)] =
+ Conversions.ToByte(MyProject.Forms.ChannelMsg.Get_FreqRangID(Conversions.ToDouble(TextBoxRxFreq.Text)));
+ publicva.EEPROM_Byte[checked(integer + 11)] = Conversions.ToByte(Operators.OrObject(
+ (byte) (publicva.EEPROM_Byte[checked(integer + 11)] & (byte) ~(publicva.Bit0 | publicva.Bit1)),
+ MyProject.Forms.ChannelMsg.Get_FreqStepFlag(Conversions.ToDouble(TextBoxRxFreq.Text))));
+ MyProject.Forms.ChannelMsg.Set_FreqData(checked(integer + 0), TextBoxRxFreq.Text);
+ publicva.EEPROM_Byte[checked(integer + 12)] = Conversions.ToByte(Operators.OrObject(
+ (byte) (publicva.EEPROM_Byte[checked(integer + 12)] & (byte) ~(publicva.Bit0 | publicva.Bit1)),
+ MyProject.Forms.ChannelMsg.Get_FreqStepFlag(Conversions.ToDouble(TextBoxTxFreq.Text))));
+ MyProject.Forms.ChannelMsg.Set_FreqData(checked(integer + 3), TextBoxTxFreq.Text);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxStep, checked(integer + 6), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox亚音解码类型, checked(integer + 7), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ Set_CHEdit_CTC_DCS_Data(checked(integer + 7), ComboBox亚音解码.Text, ComboBox亚音解码类型.SelectedIndex);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox亚音编码类型, checked(integer + 9), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ Set_CHEdit_CTC_DCS_Data(checked(integer + 9), ComboBox亚音编码.Text, ComboBox亚音编码类型.SelectedIndex);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox尾音消除, checked(integer + 9), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox耳语, checked(integer + 11), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxSP不静音, checked(integer + 11), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox繁忙信道锁定, checked(integer + 11), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBoxPTTID暂停, checked(integer + 12), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox可选信令, checked(integer + 12),
+ (byte) (publicva.Bit4 | publicva.Bit5 | publicva.Bit6), 4);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox发射禁止, checked(integer + 12), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBoxPTTID静音, checked(integer + 13), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox发射功率, checked(integer + 13), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxPTTID, checked(integer + 13), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox倒频, checked(integer + 14), publicva.Bit7, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox脱网, checked(integer + 14), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox带宽, checked(integer + 14), (byte) (publicva.Bit4 | publicva.Bit5), 4);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxSFT, checked(integer + 14), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音系统参数, checked(integer + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox五音系统参数, checked(integer + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox呼叫, checked(integer + 18), publicva.AllBit, 0);
+ GetDTMFID_Code(checked(integer + 20), TextBoxID代码.Text);
+ Encoding.ASCII.GetBytes(TextBox信道名称.Text.PadRight(6), 0, 6, publicva.EEPROM_Byte, checked(integer + 26));
+ if (CheckBox扫描添加.Checked)
+ {
+ if (i <= 511)
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "添加", 8128);
+ }
+ else if (i <= 511)
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8128);
+
+ if (i > 511)
+ return;
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "添加", 8064);
+ }
+ else
+ {
+ var num = 0;
+ do
+ {
+ publicva.EEPROM_Byte[checked(integer + num)] = 0;
+ checked
+ {
+ ++num;
+ }
+ }
+ while (num <= 31);
+
+ if (i <= 511)
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8064);
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(i, "删除", 8128);
+ }
+ }
}
- if (num > 254.1 | num < 63.0)
+
+ public void CHEditMsg_Init(string str)
{
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ TextBoxTxFreq.Text = str;
+ ComboBoxSFT.SelectedIndex = 0;
+ ComboBoxStep.SelectedIndex = 1;
+ ComboBox带宽.SelectedIndex = 2;
+ ComboBox亚音解码类型.SelectedIndex = 0;
+ ComboBox亚音解码.SelectedIndex = 0;
+ ComboBox亚音编码类型.SelectedIndex = 0;
+ ComboBox亚音编码.SelectedIndex = 0;
+ ComboBox可选信令.SelectedIndex = 0;
+ ComboBoxSP不静音.SelectedIndex = 0;
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+ ComboBox发射功率.SelectedIndex = 0;
+ ComboBoxPTTID.SelectedIndex = 0;
+ TextBox信道名称.Text = "------";
+ CheckBox尾音消除.Checked = true;
+ CheckBox耳语.Checked = false;
+ CheckBoxPTTID暂停.Checked = false;
+ CheckBox发射禁止.Checked = false;
+ CheckBoxPTTID静音.Checked = false;
+ CheckBox倒频.Checked = false;
+ CheckBox脱网.Checked = false;
+ CheckBox扫描添加.Checked = true;
+ ComboBox两音系统参数.SelectedIndex = 1;
+ ComboBox五音系统参数.SelectedIndex = 0;
+ ComboBox呼叫.SelectedIndex = 0;
+ TextBoxID代码.Text = "000";
}
- else
+
+ public void SetControl_Enable(bool i)
{
- ComboBox亚音编码.Text = string.Format("{0:###.0}", num);
- ComboBox亚音编码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ ComboBoxSFT.Enabled = i;
+ TextBoxTxFreq.Enabled = i;
+ ComboBoxStep.Enabled = i;
+ ComboBox带宽.Enabled = i;
+ ComboBox亚音解码类型.Enabled = i;
+ ComboBox亚音解码.Enabled = i;
+ ComboBox亚音编码类型.Enabled = i;
+ ComboBox亚音编码.Enabled = i;
+ ComboBox可选信令.Enabled = i;
+ ComboBoxSP不静音.Enabled = i;
+ ComboBox繁忙信道锁定.Enabled = i;
+ ComboBox发射功率.Enabled = i;
+ ComboBoxPTTID.Enabled = i;
+ TextBox信道名称.Enabled = i;
+ CheckBox尾音消除.Enabled = i;
+ CheckBox耳语.Enabled = i;
+ CheckBoxPTTID暂停.Enabled = i;
+ CheckBox发射禁止.Enabled = i;
+ CheckBoxPTTID静音.Enabled = i;
+ CheckBox倒频.Enabled = i;
+ CheckBox脱网.Enabled = i;
+ CheckBox扫描添加.Enabled = i;
+ ComboBox两音系统参数.Enabled = i;
+ ComboBox五音系统参数.Enabled = i;
+ ComboBox呼叫.Enabled = i;
+ TextBoxID代码.Enabled = i;
}
- }
- }
- private void ComboBox亚音编码_SelectedValueChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- switch (ComboBox亚音编码类型.SelectedIndex)
- {
- case 0:
- ComboBox亚音编码.SelectedIndex = 0;
- break;
- case 1:
- if (!Versioned.IsNumeric(ComboBox亚音编码.Text))
- {
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
- break;
- }
- break;
- case 2:
- if (!Versioned.IsNumeric(ComboBox亚音编码.Text))
- {
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
- break;
- }
- break;
- case 3:
- if (Operators.CompareString("D", ComboBox亚音编码.Text.ToString().Substring(0, 1), false) != 0)
- ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
- break;
- }
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox亚音编码类型_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (ComboBox亚音编码类型.SelectedIndex < 2 && CheckBox倒频.Checked && ComboBox繁忙信道锁定.SelectedIndex == 2)
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- switch (ComboBox亚音编码类型.SelectedIndex)
- {
- case 0:
- ComboBox亚音编码.SelectedIndex = 0;
- break;
- case 1:
- ComboBox亚音编码.SelectedIndex = 9;
- break;
- case 2:
- ComboBox亚音编码.SelectedIndex = 9;
- break;
- case 3:
- ComboBox亚音编码.SelectedIndex = 52;
- break;
- }
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox亚音解码_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- e.KeyChar = char.ToUpper(e.KeyChar);
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ private void ComboBox编辑信道号_SelectedIndexChanged(object sender, EventArgs e)
{
- if (ComboBox亚音解码.Text.Contains("."))
- e.Handled = true;
- else
- e.Handled = false;
+ GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
}
- else
- e.Handled = false;
- }
- else if (e.KeyChar == '\r')
- {
- ComboBox亚音解码类型.Focus();
- e.Handled = true;
- }
- else
- e.Handled = true;
- }
- private void ComboBox亚音解码_Validating(object sender, CancelEventArgs e)
- {
- var text = ComboBox亚音解码.Text;
- if (Operators.CompareString(text.ToString().Substring(0, 1), "D", false) == 0)
- {
- if (text.ToString().Length != 5)
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
- else if (!(Operators.CompareString(text.ToString().Substring(4, 1), "N", false) == 0 | Operators.CompareString(text.ToString().Substring(4, 1), "I", false) == 0))
+ private void TextBoxRxFreq_KeyPress(object sender, KeyPressEventArgs e)
{
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (TextBoxRxFreq.Text.Contains("."))
+ e.Handled = true;
+ else
+ e.Handled = false;
+ }
+ else
+ e.Handled = false;
+ }
+ else if (e.KeyChar == '\r')
+ {
+ TextBoxRxFreq_LostFocus(RuntimeHelpers.GetObjectValue(sender), e);
+ e.Handled = true;
+ }
+ else
+ e.Handled = true;
}
- else
+
+ private void TextBoxtxFreq_KeyPress(object sender, KeyPressEventArgs e)
{
- ComboBox亚音解码.Text = text;
- ComboBox亚音解码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (TextBoxTxFreq.Text.Contains("."))
+ e.Handled = true;
+ else
+ e.Handled = false;
+ }
+ else
+ e.Handled = false;
+ }
+ else if (e.KeyChar == '\r')
+ {
+ TextBoxTxFreq_LostFocus(RuntimeHelpers.GetObjectValue(sender), e);
+ e.Handled = true;
+ }
+ else
+ e.Handled = true;
}
- }
- else
- {
- double num;
- try
+
+ private void TextBoxRxFreq_LostFocus(object sender, EventArgs e)
{
- num = Conversions.ToDouble(text);
+ if (Operators.CompareString(TextBoxRxFreq.Text, "", false) != 0)
+ {
+ var Left = Conversions.ToString(MyProject.Forms.ChannelMsg.JudgeInputRxFreq(TextBoxRxFreq.Text, false));
+ TextBoxRxFreq.Text = Left;
+ if (Operators.CompareString(TextBoxTxFreq.Text, "", false) == 0)
+ {
+ if (Operators.CompareString(Left, "", false) == 0)
+ {
+ TextBoxRxFreq.Text = "";
+ CHEditMsg_Init(TextBoxRxFreq.Text);
+ SetControl_Enable(false);
+ }
+ else
+ {
+ if (Conversions.ToDouble(Left) > 300.0)
+ CHEditMsg_Init("5.00000");
+ else
+ CHEditMsg_Init("0.60000");
+ SetControl_Enable(true);
+ ChangeSignal(ComboBox可选信令.SelectedIndex, false);
+ }
+ }
+ else if (Operators.CompareString(Left, "", false) == 0)
+ {
+ TextBoxRxFreq.Text = "";
+ CHEditMsg_Init(TextBoxRxFreq.Text);
+ SetControl_Enable(false);
+ }
+ }
+ else
+ {
+ TextBoxRxFreq.Text = "";
+ CHEditMsg_Init(TextBoxRxFreq.Text);
+ SetControl_Enable(false);
+ }
+
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
+ MyProject.Forms.ScanFuncMsgForm.SetControl_PRICHList();
+ MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
}
- catch (Exception ex)
+
+ private void TextBoxTxFreq_LostFocus(object sender, EventArgs e)
{
- ProjectData.SetProjectError(ex);
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
- ProjectData.ClearProjectError();
- return;
+ TextBoxTxFreq.Text = Conversions.ToString(MyProject.Forms.ChannelMsg.JudgeInputTxFreq(TextBoxRxFreq.Text, TextBoxTxFreq.Text, false));
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
}
- if (num > 254.1 | num < 63.0)
+
+ private void ComboBoxSFT_SelectionChangeCommitted(object sender, EventArgs e)
{
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
}
- else
+
+ private void ComboBoxStep_SelectionChangeCommitted(object sender, EventArgs e)
{
- ComboBox亚音解码.Text = string.Format("{0:###.0}", num);
- ComboBox亚音解码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
}
- }
- }
- private void ComboBox亚音解码_SelectedValueChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- switch (ComboBox亚音解码类型.SelectedIndex)
- {
- case 0:
- ComboBox亚音解码.SelectedIndex = 0;
- break;
- case 1:
- if (!Versioned.IsNumeric(ComboBox亚音解码.Text))
- {
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
- break;
- }
- break;
- case 2:
- if (!Versioned.IsNumeric(ComboBox亚音解码.Text))
- {
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
- break;
- }
- break;
- case 3:
- if (Operators.CompareString("D", ComboBox亚音解码.Text.ToString().Substring(0, 1), false) != 0)
- ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
- break;
- }
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox亚音解码类型_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (ComboBox亚音解码类型.SelectedIndex < 2 && !CheckBox倒频.Checked && ComboBox繁忙信道锁定.SelectedIndex == 2)
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- switch (ComboBox亚音解码类型.SelectedIndex)
- {
- case 0:
- ComboBox亚音解码.SelectedIndex = 0;
- break;
- case 1:
- ComboBox亚音解码.SelectedIndex = 9;
- break;
- case 2:
- ComboBox亚音解码.SelectedIndex = 9;
- break;
- case 3:
- ComboBox亚音解码.SelectedIndex = 52;
- break;
- }
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox可选信令_SelectionChangeCommitted(object sender, EventArgs e)
- {
- ChangeSignal(ComboBox可选信令.SelectedIndex, true);
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBoxSP不静音_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
-
- private void ComboBox繁忙信道锁定_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (ComboBox繁忙信道锁定.SelectedIndex == 2)
- {
- if (CheckBox倒频.Checked)
+ private void ComboBox带宽_SelectionChangeCommitted(object sender, EventArgs e)
{
- if (ComboBox亚音编码类型.SelectedIndex < 2)
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定, Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)), (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
}
- else if (ComboBox亚音解码类型.SelectedIndex < 2)
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定, Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- }
- else if (ComboBox繁忙信道锁定.SelectedIndex == 3 && ComboBox可选信令.SelectedIndex == 0)
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定, Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)), (byte) (publicva.Bit2 | publicva.Bit3), 2);
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
- private void ComboBox发射功率_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音编码_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (ComboBox亚音编码.Text.Contains("."))
+ e.Handled = true;
+ else
+ e.Handled = false;
+ }
+ else
+ e.Handled = false;
+ }
+ else if (e.KeyChar == '\r')
+ {
+ ComboBox亚音编码类型.Focus();
+ e.Handled = true;
+ }
+ else
+ e.Handled = true;
+ }
- private void ComboBoxPTTID_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音编码_Validating(object sender, CancelEventArgs e)
+ {
+ var text = ComboBox亚音编码.Text;
+ if (Operators.CompareString(text.Substring(0, 1), "D", false) == 0)
+ {
+ if (text.Length != 5)
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ else if (!(Operators.CompareString(text.Substring(4, 1), "N", false) == 0 |
+ Operators.CompareString(text.Substring(4, 1), "I", false) == 0))
+ {
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ }
+ else
+ {
+ ComboBox亚音编码.Text = text;
+ ComboBox亚音编码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+ }
+ else
+ {
+ double num;
+ try
+ {
+ num = Conversions.ToDouble(text);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ ProjectData.ClearProjectError();
+ return;
+ }
- private void TextBox信道名称_LostFocus(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ if (num > 254.1 | num < 63.0)
+ {
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ }
+ else
+ {
+ ComboBox亚音编码.Text = string.Format("{0:###.0}", num);
+ ComboBox亚音编码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+ }
+ }
- private void CheckBox尾音消除_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音编码_SelectedValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ switch (ComboBox亚音编码类型.SelectedIndex)
+ {
+ case 0:
+ ComboBox亚音编码.SelectedIndex = 0;
+ break;
+ case 1:
+ if (!Versioned.IsNumeric(ComboBox亚音编码.Text))
+ {
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ break;
+ }
- private void CheckBox耳语_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ break;
+ case 2:
+ if (!Versioned.IsNumeric(ComboBox亚音编码.Text))
+ {
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ break;
+ }
- private void CheckBoxPTTID暂停_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ break;
+ case 3:
+ if (Operators.CompareString("D", ComboBox亚音编码.Text.Substring(0, 1), false) != 0)
+ ComboBox亚音编码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 9))));
+ break;
+ }
- private void CheckBox发射禁止_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
- private void CheckBoxPTTID静音_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音编码类型_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (ComboBox亚音编码类型.SelectedIndex < 2 && CheckBox倒频.Checked && ComboBox繁忙信道锁定.SelectedIndex == 2)
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+ switch (ComboBox亚音编码类型.SelectedIndex)
+ {
+ case 0:
+ ComboBox亚音编码.SelectedIndex = 0;
+ break;
+ case 1:
+ ComboBox亚音编码.SelectedIndex = 9;
+ break;
+ case 2:
+ ComboBox亚音编码.SelectedIndex = 9;
+ break;
+ case 3:
+ ComboBox亚音编码.SelectedIndex = 52;
+ break;
+ }
- private void CheckBox倒频_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- if (CheckBox倒频.Checked)
- CheckBox脱网.Checked = false;
- if (CheckBox倒频.Checked)
- {
- if (ComboBox亚音编码类型.SelectedIndex < 2)
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- }
- else if (ComboBox亚音解码类型.SelectedIndex < 2)
- ComboBox繁忙信道锁定.SelectedIndex = 0;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
- private void CheckBox脱网_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- if (CheckBox脱网.Checked)
- CheckBox倒频.Checked = false;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音解码_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ {
+ if (ComboBox亚音解码.Text.Contains("."))
+ e.Handled = true;
+ else
+ e.Handled = false;
+ }
+ else
+ e.Handled = false;
+ }
+ else if (e.KeyChar == '\r')
+ {
+ ComboBox亚音解码类型.Focus();
+ e.Handled = true;
+ }
+ else
+ e.Handled = true;
+ }
- private void CheckBox扫描添加_CheckedChanged(object sender, EventArgs e)
- {
- if (!publicva.ChannelEditFormLoader)
- return;
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音解码_Validating(object sender, CancelEventArgs e)
+ {
+ var text = ComboBox亚音解码.Text;
+ if (Operators.CompareString(text.Substring(0, 1), "D", false) == 0)
+ {
+ if (text.Length != 5)
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ else if (!(Operators.CompareString(text.Substring(4, 1), "N", false) == 0 |
+ Operators.CompareString(text.Substring(4, 1), "I", false) == 0))
+ {
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ }
+ else
+ {
+ ComboBox亚音解码.Text = text;
+ ComboBox亚音解码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+ }
+ else
+ {
+ double num;
+ try
+ {
+ num = Conversions.ToDouble(text);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ ProjectData.ClearProjectError();
+ return;
+ }
- private void ComboBox两音系统参数_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ if (num > 254.1 | num < 63.0)
+ {
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ }
+ else
+ {
+ ComboBox亚音解码.Text = string.Format("{0:###.0}", num);
+ ComboBox亚音解码_SelectedValueChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+ }
+ }
- private void ComboBox五音系统参数_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ private void ComboBox亚音解码_SelectedValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ switch (ComboBox亚音解码类型.SelectedIndex)
+ {
+ case 0:
+ ComboBox亚音解码.SelectedIndex = 0;
+ break;
+ case 1:
+ if (!Versioned.IsNumeric(ComboBox亚音解码.Text))
+ {
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ break;
+ }
- private void ComboBox呼叫_SelectionChangeCommitted(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ break;
+ case 2:
+ if (!Versioned.IsNumeric(ComboBox亚音解码.Text))
+ {
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ break;
+ }
- private void TextBoxID代码_KeyPress(object sender, KeyPressEventArgs e)
- {
- SetControl_DTMF_ID_Sum();
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b')
- e.Handled = false;
- else
- e.Handled = true;
- }
+ break;
+ case 3:
+ if (Operators.CompareString("D", ComboBox亚音解码.Text.Substring(0, 1), false) != 0)
+ ComboBox亚音解码.Text = Conversions.ToString(Get_CHEdit_CTC_DCS_Str(
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 7))));
+ break;
+ }
- private void TextBoxID代码_LostFocus(object sender, EventArgs e)
- {
- SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
- }
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
- private void Button1_Click(object sender, EventArgs e) => Close();
- }
-}
+ private void ComboBox亚音解码类型_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (ComboBox亚音解码类型.SelectedIndex < 2 && !CheckBox倒频.Checked && ComboBox繁忙信道锁定.SelectedIndex == 2)
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+ switch (ComboBox亚音解码类型.SelectedIndex)
+ {
+ case 0:
+ ComboBox亚音解码.SelectedIndex = 0;
+ break;
+ case 1:
+ ComboBox亚音解码.SelectedIndex = 9;
+ break;
+ case 2:
+ ComboBox亚音解码.SelectedIndex = 9;
+ break;
+ case 3:
+ ComboBox亚音解码.SelectedIndex = 52;
+ break;
+ }
+
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox可选信令_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ ChangeSignal(ComboBox可选信令.SelectedIndex, true);
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBoxSP不静音_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox繁忙信道锁定_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (ComboBox繁忙信道锁定.SelectedIndex == 2)
+ {
+ if (CheckBox倒频.Checked)
+ {
+ if (ComboBox亚音编码类型.SelectedIndex < 2)
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定,
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)),
+ (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ }
+ else if (ComboBox亚音解码类型.SelectedIndex < 2)
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定,
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)),
+ (byte) (publicva.Bit2 | publicva.Bit3), 2);
+ }
+ else if (ComboBox繁忙信道锁定.SelectedIndex == 3 && ComboBox可选信令.SelectedIndex == 0)
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox繁忙信道锁定,
+ Conversions.ToInteger(Operators.AddObject(MyProject.Forms.ChannelMsg.Get_CHAddress(ComboBox编辑信道号.SelectedIndex), 11)),
+ (byte) (publicva.Bit2 | publicva.Bit3), 2);
+
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox发射功率_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ MyProject.Forms.ChannelMsg.GetStr_CHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBoxPTTID_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void TextBox信道名称_LostFocus(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox尾音消除_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox耳语_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBoxPTTID暂停_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox发射禁止_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBoxPTTID静音_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox倒频_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ if (CheckBox倒频.Checked)
+ CheckBox脱网.Checked = false;
+ if (CheckBox倒频.Checked)
+ {
+ if (ComboBox亚音编码类型.SelectedIndex < 2)
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+ }
+ else if (ComboBox亚音解码类型.SelectedIndex < 2)
+ ComboBox繁忙信道锁定.SelectedIndex = 0;
+
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox脱网_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ if (CheckBox脱网.Checked)
+ CheckBox倒频.Checked = false;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void CheckBox扫描添加_CheckedChanged(object sender, EventArgs e)
+ {
+ if (!publicva.ChannelEditFormLoader)
+ return;
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox两音系统参数_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox五音系统参数_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void ComboBox呼叫_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void TextBoxID代码_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ SetControl_DTMF_ID_Sum();
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b')
+ e.Handled = false;
+ else
+ e.Handled = true;
+ }
+
+ private void TextBoxID代码_LostFocus(object sender, EventArgs e)
+ {
+ SetData_EditCHMsg(ComboBox编辑信道号.SelectedIndex);
+ }
+
+ private void Button1_Click(object sender, EventArgs e) => Close();
+ }
+}
\ No newline at end of file
diff --git a/HPG-68D/ChannelMsg.cs b/HPG-68D/ChannelMsg.cs
index c79243e..cf9479b 100644
--- a/HPG-68D/ChannelMsg.cs
+++ b/HPG-68D/ChannelMsg.cs
@@ -15,1209 +15,1368 @@ using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class ChannelMsg : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("ChannelMsgDataGridView")]
- private DataGridView _ChannelMsgDataGridView;
- [AccessedThroughProperty("Panel1")]
- private Panel _Panel1;
- [AccessedThroughProperty("Button3")]
- private Button _Button3;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("Button信道编辑")]
- private Button _Button信道编辑;
- [AccessedThroughProperty("ColumnRxFreq")]
- private DataGridViewTextBoxColumn _ColumnRxFreq;
- [AccessedThroughProperty("Column差频方向")]
- private DataGridViewComboBoxColumn _Column差频方向;
- [AccessedThroughProperty("ColumnTxFreq")]
- private DataGridViewTextBoxColumn _ColumnTxFreq;
- [AccessedThroughProperty("Column亚音解码类型")]
- private DataGridViewComboBoxColumn _Column亚音解码类型;
- [AccessedThroughProperty("Column亚音解码")]
- private DataGridViewComboBoxColumn _Column亚音解码;
- [AccessedThroughProperty("Column亚音编码类型")]
- private DataGridViewComboBoxColumn _Column亚音编码类型;
- [AccessedThroughProperty("Column亚音编码")]
- private DataGridViewComboBoxColumn _Column亚音编码;
- [AccessedThroughProperty("Column发射功率")]
- private DataGridViewComboBoxColumn _Column发射功率;
- [AccessedThroughProperty("Column扫描添加")]
- private DataGridViewComboBoxColumn _Column扫描添加;
- [AccessedThroughProperty("Column带宽")]
- private DataGridViewComboBoxColumn _Column带宽;
- [AccessedThroughProperty("Column可选信令")]
- private DataGridViewComboBoxColumn _Column可选信令;
- [AccessedThroughProperty("Column更多")]
- private DataGridViewButtonColumn _Column更多;
-
- [DebuggerNonUserCode]
- static ChannelMsg()
+ [DesignerGenerated]
+ public class ChannelMsg : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("ChannelMsgDataGridView")]
+ private DataGridView _ChannelMsgDataGridView;
+ [AccessedThroughProperty("Panel1")]
+ private Panel _Panel1;
+ [AccessedThroughProperty("Button3")]
+ private Button _Button3;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("Button信道编辑")]
+ private Button _Button信道编辑;
+ [AccessedThroughProperty("ColumnRxFreq")]
+ private DataGridViewTextBoxColumn _ColumnRxFreq;
+ [AccessedThroughProperty("Column差频方向")]
+ private DataGridViewComboBoxColumn _Column差频方向;
+ [AccessedThroughProperty("ColumnTxFreq")]
+ private DataGridViewTextBoxColumn _ColumnTxFreq;
+ [AccessedThroughProperty("Column亚音解码类型")]
+ private DataGridViewComboBoxColumn _Column亚音解码类型;
+ [AccessedThroughProperty("Column亚音解码")]
+ private DataGridViewComboBoxColumn _Column亚音解码;
+ [AccessedThroughProperty("Column亚音编码类型")]
+ private DataGridViewComboBoxColumn _Column亚音编码类型;
+ [AccessedThroughProperty("Column亚音编码")]
+ private DataGridViewComboBoxColumn _Column亚音编码;
+ [AccessedThroughProperty("Column发射功率")]
+ private DataGridViewComboBoxColumn _Column发射功率;
+ [AccessedThroughProperty("Column扫描添加")]
+ private DataGridViewComboBoxColumn _Column扫描添加;
+ [AccessedThroughProperty("Column带宽")]
+ private DataGridViewComboBoxColumn _Column带宽;
+ [AccessedThroughProperty("Column可选信令")]
+ private DataGridViewComboBoxColumn _Column可选信令;
+ [AccessedThroughProperty("Column更多")]
+ private DataGridViewButtonColumn _Column更多;
- [DebuggerNonUserCode]
- public ChannelMsg()
- {
- Deactivate += ChannelMsg_Deactivate;
- FormClosing += ChannelMsg_FormClosing;
- Load += ChannelMsg_Load;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var gridViewCellStyle1 = new DataGridViewCellStyle();
- var gridViewCellStyle2 = new DataGridViewCellStyle();
- var componentResourceManager = new ComponentResourceManager(typeof (ChannelMsg));
- var gridViewCellStyle3 = new DataGridViewCellStyle();
- var gridViewCellStyle4 = new DataGridViewCellStyle();
- var gridViewCellStyle5 = new DataGridViewCellStyle();
- var gridViewCellStyle6 = new DataGridViewCellStyle();
- ChannelMsgDataGridView = new DataGridView();
- Panel1 = new Panel();
- Button3 = new Button();
- Button2 = new Button();
- Button1 = new Button();
- Button信道编辑 = new Button();
- ColumnRxFreq = new DataGridViewTextBoxColumn();
- Column差频方向 = new DataGridViewComboBoxColumn();
- ColumnTxFreq = new DataGridViewTextBoxColumn();
- Column亚音解码类型 = new DataGridViewComboBoxColumn();
- Column亚音解码 = new DataGridViewComboBoxColumn();
- Column亚音编码类型 = new DataGridViewComboBoxColumn();
- Column亚音编码 = new DataGridViewComboBoxColumn();
- Column发射功率 = new DataGridViewComboBoxColumn();
- Column扫描添加 = new DataGridViewComboBoxColumn();
- Column带宽 = new DataGridViewComboBoxColumn();
- Column可选信令 = new DataGridViewComboBoxColumn();
- Column更多 = new DataGridViewButtonColumn();
- ((ISupportInitialize) ChannelMsgDataGridView).BeginInit();
- Panel1.SuspendLayout();
- SuspendLayout();
- ChannelMsgDataGridView.AllowUserToAddRows = false;
- ChannelMsgDataGridView.AllowUserToDeleteRows = false;
- ChannelMsgDataGridView.AllowUserToResizeColumns = false;
- ChannelMsgDataGridView.AllowUserToResizeRows = false;
- gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
- ChannelMsgDataGridView.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
- gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle2.BackColor = SystemColors.Control;
- gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle2.ForeColor = SystemColors.WindowText;
- gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
- ChannelMsgDataGridView.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
- componentResourceManager.ApplyResources(ChannelMsgDataGridView, "ChannelMsgDataGridView");
- ChannelMsgDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- ChannelMsgDataGridView.Columns.AddRange(ColumnRxFreq, Column差频方向, ColumnTxFreq, Column亚音解码类型, Column亚音解码, Column亚音编码类型, Column亚音编码, Column发射功率, Column扫描添加, Column带宽, Column可选信令, Column更多);
- ChannelMsgDataGridView.Name = "ChannelMsgDataGridView";
- gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle3.BackColor = SystemColors.Control;
- gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle3.ForeColor = SystemColors.WindowText;
- gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
- ChannelMsgDataGridView.RowHeadersDefaultCellStyle = gridViewCellStyle3;
- ChannelMsgDataGridView.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
- ChannelMsgDataGridView.RowsDefaultCellStyle = gridViewCellStyle4;
- ChannelMsgDataGridView.RowTemplate.Height = 23;
- componentResourceManager.ApplyResources(Panel1, "Panel1");
- Panel1.BorderStyle = BorderStyle.Fixed3D;
- Panel1.Controls.Add(ChannelMsgDataGridView);
- Panel1.Name = "Panel1";
- componentResourceManager.ApplyResources(Button3, "Button3");
- Button3.Name = "Button3";
- Button3.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(Button信道编辑, "Button信道编辑");
- Button信道编辑.Name = "Button信道编辑";
- Button信道编辑.UseVisualStyleBackColor = true;
- gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
- ColumnRxFreq.DefaultCellStyle = gridViewCellStyle5;
- componentResourceManager.ApplyResources(ColumnRxFreq, "ColumnRxFreq");
- ColumnRxFreq.MaxInputLength = 9;
- ColumnRxFreq.Name = "ColumnRxFreq";
- ColumnRxFreq.Resizable = DataGridViewTriState.False;
- ColumnRxFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
- Column差频方向.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column差频方向, "Column差频方向");
- Column差频方向.Items.AddRange("OFF", "DUP -", "DUP +");
- Column差频方向.Name = "Column差频方向";
- componentResourceManager.ApplyResources(ColumnTxFreq, "ColumnTxFreq");
- ColumnTxFreq.MaxInputLength = 9;
- ColumnTxFreq.Name = "ColumnTxFreq";
- ColumnTxFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
- Column亚音解码类型.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column亚音解码类型, "Column亚音解码类型");
- Column亚音解码类型.Items.AddRange("OFF", "TONE", "CTCSS", "DCS");
- Column亚音解码类型.Name = "Column亚音解码类型";
- Column亚音解码.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column亚音解码, "Column亚音解码");
- Column亚音解码.Items.AddRange("OFF", "67.0", "69.3", "71.9", "74.4", "77.0", "79.7", "82.5", "85.4", "88.5", "91.5", "94.8", "97.4", "100.0", "103.5", "107.2", "110.9", "114.8", "118.8", "123.0", "127.3", "131.8", "136.5", "141.3", "146.2", "151.4", "156.7", "159.8", "162.2", "165.5", "167.9", "171.3", "173.8", "177.3", "179.9", "183.5", "186.2", "189.9", "192.8", "196.6", "199.5", "203.5", "206.5", "210.7", "218.1", "225.7", "229.1", "233.6", "241.8", "250.3", "254.1", "D017N", "D023N", "D025N", "D026N", "D031N", "D032N", "D036N", "D043N", "D047N", "D050N", "D051N", "D053N", "D054N", "D065N", "D071N", "D072N", "D073N", "D074N", "D114N", "D115N", "D116N", "D122N", "D125N", "D131N", "D132N", "D134N", "D143N", "D145N", "D152N", "D155N", "D156N", "D162N", "D165N", "D172N", "D174N", "D205N", "D212N", "D223N", "D225N", "D226N", "D243N", "D244N", "D245N", "D246N", "D251N", "D252N", "D255N", "D261N", "D263N", "D265N", "D266N", "D271N", "D274N", "D306N", "D311N", "D315N", "D325N", "D331N", "D332N", "D343N", "D346N", "D351N", "D356N", "D364N", "D365N", "D371N", "D411N", "D412N", "D413N", "D423N", "D431N", "D432N", "D445N", "D446N", "D452N", "D454N", "D455N", "D462N", "D464N", "D465N", "D466N", "D503N", "D506N", "D516N", "D523N", "D526N", "D532N", "D546N", "D565N", "D606N", "D612N", "D624N", "D627N", "D631N", "D632N", "D645N", "D654N", "D662N", "D664N", "D703N", "D712N", "D723N", "D731N", "D732N", "D734N", "D743N", "D754N", "D017I", "D023I", "D025I", "D026I", "D031I", "D032I", "D036I", "D043I", "D047I", "D050I", "D051I", "D053I", "D054I", "D065I", "D071I", "D072I", "D073I", "D074I", "D114I", "D115I", "D116I", "D122I", "D125I", "D131I", "D132I", "D134I", "D143I", "D145I", "D152I", "D155I", "D156I", "D162I", "D165I", "D172I", "D174I", "D205I", "D212I", "D223I", "D225I", "D226I", "D243I", "D244I", "D245I", "D246I", "D251I", "D252I", "D255I", "D261I", "D263I", "D265I", "D266I", "D271I", "D274I", "D306I", "D311I", "D315I", "D325I", "D331I", "D332I", "D343I", "D346I", "D351I", "D356I", "D364I", "D365I", "D371I", "D411I", "D412I", "D413I", "D423I", "D431I", "D432I", "D445I", "D446I", "D452I", "D454I", "D455I", "D462I", "D464I", "D465I", "D466I", "D503I", "D506I", "D516I", "D523I", "D526I", "D532I", "D546I", "D565I", "D606I", "D612I", "D624I", "D627I", "D631I", "D632I", "D645I", "D654I", "D662I", "D664I", "D703I", "D712I", "D723I", "D731I", "D732I", "D734I", "D743I", "D754I");
- Column亚音解码.Name = "Column亚音解码";
- Column亚音编码类型.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column亚音编码类型, "Column亚音编码类型");
- Column亚音编码类型.Items.AddRange("OFF", "TONE", "CTCSS", "DCS");
- Column亚音编码类型.Name = "Column亚音编码类型";
- Column亚音编码.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column亚音编码, "Column亚音编码");
- Column亚音编码.Items.AddRange("OFF", "67.0", "69.3", "71.9", "74.4", "77.0", "79.7", "82.5", "85.4", "88.5", "91.5", "94.8", "97.4", "100.0", "103.5", "107.2", "110.9", "114.8", "118.8", "123.0", "127.3", "131.8", "136.5", "141.3", "146.2", "151.4", "156.7", "159.8", "162.2", "165.5", "167.9", "171.3", "173.8", "177.3", "179.9", "183.5", "186.2", "189.9", "192.8", "196.6", "199.5", "203.5", "206.5", "210.7", "218.1", "225.7", "229.1", "233.6", "241.8", "250.3", "254.1", "D017N", "D023N", "D025N", "D026N", "D031N", "D032N", "D036N", "D043N", "D047N", "D050N", "D051N", "D053N", "D054N", "D065N", "D071N", "D072N", "D073N", "D074N", "D114N", "D115N", "D116N", "D122N", "D125N", "D131N", "D132N", "D134N", "D143N", "D145N", "D152N", "D155N", "D156N", "D162N", "D165N", "D172N", "D174N", "D205N", "D212N", "D223N", "D225N", "D226N", "D243N", "D244N", "D245N", "D246N", "D251N", "D252N", "D255N", "D261N", "D263N", "D265N", "D266N", "D271N", "D274N", "D306N", "D311N", "D315N", "D325N", "D331N", "D332N", "D343N", "D346N", "D351N", "D356N", "D364N", "D365N", "D371N", "D411N", "D412N", "D413N", "D423N", "D431N", "D432N", "D445N", "D446N", "D452N", "D454N", "D455N", "D462N", "D464N", "D465N", "D466N", "D503N", "D506N", "D516N", "D523N", "D526N", "D532N", "D546N", "D565N", "D606N", "D612N", "D624N", "D627N", "D631N", "D632N", "D645N", "D654N", "D662N", "D664N", "D703N", "D712N", "D723N", "D731N", "D732N", "D734N", "D743N", "D754N", "D017I", "D023I", "D025I", "D026I", "D031I", "D032I", "D036I", "D043I", "D047I", "D050I", "D051I", "D053I", "D054I", "D065I", "D071I", "D072I", "D073I", "D074I", "D114I", "D115I", "D116I", "D122I", "D125I", "D131I", "D132I", "D134I", "D143I", "D145I", "D152I", "D155I", "D156I", "D162I", "D165I", "D172I", "D174I", "D205I", "D212I", "D223I", "D225I", "D226I", "D243I", "D244I", "D245I", "D246I", "D251I", "D252I", "D255I", "D261I", "D263I", "D265I", "D266I", "D271I", "D274I", "D306I", "D311I", "D315I", "D325I", "D331I", "D332I", "D343I", "D346I", "D351I", "D356I", "D364I", "D365I", "D371I", "D411I", "D412I", "D413I", "D423I", "D431I", "D432I", "D445I", "D446I", "D452I", "D454I", "D455I", "D462I", "D464I", "D465I", "D466I", "D503I", "D506I", "D516I", "D523I", "D526I", "D532I", "D546I", "D565I", "D606I", "D612I", "D624I", "D627I", "D631I", "D632I", "D645I", "D654I", "D662I", "D664I", "D703I", "D712I", "D723I", "D731I", "D732I", "D734I", "D743I", "D754I");
- Column亚音编码.Name = "Column亚音编码";
- Column发射功率.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column发射功率, "Column发射功率");
- Column发射功率.Items.AddRange("高", "低", "中");
- Column发射功率.Name = "Column发射功率";
- Column扫描添加.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
- Column扫描添加.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column扫描添加, "Column扫描添加");
- Column扫描添加.Items.AddRange("是", "否");
- Column扫描添加.Name = "Column扫描添加";
- Column带宽.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column带宽, "Column带宽");
- Column带宽.Items.AddRange("宽带(25K)", "宽带(20K)", "窄带(12.5K)");
- Column带宽.Name = "Column带宽";
- Column可选信令.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column可选信令, "Column可选信令");
- Column可选信令.Items.AddRange("无", "DTMF", "2-Tone", "5-Tone");
- Column可选信令.Name = "Column可选信令";
- gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle6.BackColor = Color.FromArgb(224, 224, 224);
- gridViewCellStyle6.ForeColor = Color.Red;
- Column更多.DefaultCellStyle = gridViewCellStyle6;
- Column更多.FlatStyle = FlatStyle.Popup;
- componentResourceManager.ApplyResources(Column更多, "Column更多");
- Column更多.Name = "Column更多";
- Column更多.Resizable = DataGridViewTriState.False;
- Column更多.Text = ">>";
- Column更多.UseColumnTextForButtonValue = true;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- Controls.Add(Button信道编辑);
- Controls.Add(Button3);
- Controls.Add(Button2);
- Controls.Add(Button1);
- Controls.Add(Panel1);
- DoubleBuffered = true;
- Name = nameof (ChannelMsg);
- ((ISupportInitialize) ChannelMsgDataGridView).EndInit();
- Panel1.ResumeLayout(false);
- ResumeLayout(false);
- }
-
- internal virtual DataGridView ChannelMsgDataGridView
- {
- [DebuggerNonUserCode] get => _ChannelMsgDataGridView;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ChannelMsgDataGridView != null)
+ [DebuggerNonUserCode]
+ static ChannelMsg()
{
- _ChannelMsgDataGridView.CellValidating -= ChannelMsgDataGridView_CellValidating;
- _ChannelMsgDataGridView.EditingControlShowing -= ChannelMsgDataGridView_EditingControlShowing;
- _ChannelMsgDataGridView.CellEndEdit -= ChannelMsgDataGridView_CellEndEdit;
- _ChannelMsgDataGridView.CellMouseClick -= ChannelMsgDataGridView_CellMouseClick;
- _ChannelMsgDataGridView.RowPostPaint -= ChannelMsgDataGridView_RowPostPaint;
}
- _ChannelMsgDataGridView = value;
- if (_ChannelMsgDataGridView == null)
- return;
- _ChannelMsgDataGridView.CellValidating += ChannelMsgDataGridView_CellValidating;
- _ChannelMsgDataGridView.EditingControlShowing += ChannelMsgDataGridView_EditingControlShowing;
- _ChannelMsgDataGridView.CellEndEdit += ChannelMsgDataGridView_CellEndEdit;
- _ChannelMsgDataGridView.CellMouseClick += ChannelMsgDataGridView_CellMouseClick;
- _ChannelMsgDataGridView.RowPostPaint += ChannelMsgDataGridView_RowPostPaint;
- }
- }
- internal virtual Panel Panel1
- {
- [DebuggerNonUserCode] get => _Panel1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Panel1 = value;
- }
-
- internal virtual Button Button3
- {
- [DebuggerNonUserCode] get => _Button3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button3 = value;
- }
- }
-
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button2 = value;
- }
- }
-
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
-
- internal virtual Button Button信道编辑
- {
- [DebuggerNonUserCode] get => _Button信道编辑;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button信道编辑 != null)
- _Button信道编辑.Click -= Button信道编辑_Click;
- _Button信道编辑 = value;
- if (_Button信道编辑 == null)
- return;
- _Button信道编辑.Click += Button信道编辑_Click;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn ColumnRxFreq
- {
- [DebuggerNonUserCode] get => _ColumnRxFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ColumnRxFreq = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column差频方向
- {
- [DebuggerNonUserCode] get => _Column差频方向;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column差频方向 = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn ColumnTxFreq
- {
- [DebuggerNonUserCode] get => _ColumnTxFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ColumnTxFreq = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column亚音解码类型
- {
- [DebuggerNonUserCode] get => _Column亚音解码类型;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column亚音解码类型 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column亚音解码
- {
- [DebuggerNonUserCode] get => _Column亚音解码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column亚音解码 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column亚音编码类型
- {
- [DebuggerNonUserCode] get => _Column亚音编码类型;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column亚音编码类型 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column亚音编码
- {
- [DebuggerNonUserCode] get => _Column亚音编码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column亚音编码 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column发射功率
- {
- [DebuggerNonUserCode] get => _Column发射功率;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column发射功率 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column扫描添加
- {
- [DebuggerNonUserCode] get => _Column扫描添加;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column扫描添加 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column带宽
- {
- [DebuggerNonUserCode] get => _Column带宽;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column带宽 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column可选信令
- {
- [DebuggerNonUserCode] get => _Column可选信令;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column可选信令 = value;
- }
- }
-
- internal virtual DataGridViewButtonColumn Column更多
- {
- [DebuggerNonUserCode] get => _Column更多;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column更多 = value;
- }
- }
-
- public void ChannelMsg_Deactivate(object sender, EventArgs e)
- {
- ChannelMsgDataGridView.EndEdit();
- var num = checked (ChannelMsgDataGridView.RowCount - 1);
- var i = 0;
- while (i <= num)
- {
- SetData_CHMsg(i);
- checked { ++i; }
- }
- }
-
- private void ChannelMsg_FormClosing(object sender, FormClosingEventArgs e)
- {
- MyProject.Forms.MDIParent1.信道信息CToolStripMenuItem.Checked = false;
- }
-
- public void ChannelMsg_Load(object sender, EventArgs e)
- {
- MyProject.Forms.MDIParent1.信道信息CToolStripMenuItem.Checked = true;
- ChannelMsgDataGridView.RowCount = 516;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- ChannelMsgDataGridView.TopLeftHeaderCell.Value = "信道";
- Column发射功率.Items.Clear();
- Column发射功率.Items.AddRange("高", "低", "中");
- Column扫描添加.Items.Clear();
- Column扫描添加.Items.AddRange("是", "否");
- Column带宽.Items.Clear();
- Column带宽.Items.AddRange("宽带(25K)", "宽带(20K)", "窄带(12.5K)");
- Column可选信令.Items.Clear();
- Column可选信令.Items.AddRange("无", "DTMF", "2-Tone", "5-Tone");
- }
- else
- {
- ChannelMsgDataGridView.TopLeftHeaderCell.Value = "CH";
- Column发射功率.Items.Clear();
- Column发射功率.Items.AddRange("High", "Low", "Middle");
- Column扫描添加.Items.Clear();
- Column扫描添加.Items.AddRange("Yes", "No");
- Column带宽.Items.Clear();
- Column带宽.Items.AddRange("Wide(25K)", "Wide(20K)", "Narrow(12.5K)");
- Column可选信令.Items.Clear();
- Column可选信令.Items.AddRange("None", "DTMF", "2-Tone", "5-Tone");
- }
- var num = checked (ChannelMsgDataGridView.RowCount - 1);
- var i = 0;
- while (i <= num)
- {
- GetStr_CHMsg(i);
- checked { ++i; }
- }
- }
-
- private void ChannelMsgDataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
- var columnIndex = ChannelMsgDataGridView.CurrentCell.ColumnIndex;
- var num = columnIndex;
- if (num == ChannelMsgDataGridView["ColumnRxFreq", rowIndex].ColumnIndex)
- {
- if (Operators.ConditionalCompareObjectNotEqual(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value, "", false))
+ [DebuggerNonUserCode]
+ public ChannelMsg()
{
- var str = Conversions.ToString(JudgeInputRxFreq(Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value), true));
- ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value = str;
- if (Operators.ConditionalCompareObjectEqual(ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value, "", false))
- {
- if (Operators.CompareString(str, "", false) == 0)
- Clr_Channel(rowIndex);
+ Deactivate += ChannelMsg_Deactivate;
+ FormClosing += ChannelMsg_FormClosing;
+ Load += ChannelMsg_Load;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
+ }
+
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
+ }
+
+ [DebuggerStepThrough]
+ private void InitializeComponent()
+ {
+ var gridViewCellStyle1 = new DataGridViewCellStyle();
+ var gridViewCellStyle2 = new DataGridViewCellStyle();
+ var componentResourceManager = new ComponentResourceManager(typeof(ChannelMsg));
+ var gridViewCellStyle3 = new DataGridViewCellStyle();
+ var gridViewCellStyle4 = new DataGridViewCellStyle();
+ var gridViewCellStyle5 = new DataGridViewCellStyle();
+ var gridViewCellStyle6 = new DataGridViewCellStyle();
+ ChannelMsgDataGridView = new DataGridView();
+ Panel1 = new Panel();
+ Button3 = new Button();
+ Button2 = new Button();
+ Button1 = new Button();
+ Button信道编辑 = new Button();
+ ColumnRxFreq = new DataGridViewTextBoxColumn();
+ Column差频方向 = new DataGridViewComboBoxColumn();
+ ColumnTxFreq = new DataGridViewTextBoxColumn();
+ Column亚音解码类型 = new DataGridViewComboBoxColumn();
+ Column亚音解码 = new DataGridViewComboBoxColumn();
+ Column亚音编码类型 = new DataGridViewComboBoxColumn();
+ Column亚音编码 = new DataGridViewComboBoxColumn();
+ Column发射功率 = new DataGridViewComboBoxColumn();
+ Column扫描添加 = new DataGridViewComboBoxColumn();
+ Column带宽 = new DataGridViewComboBoxColumn();
+ Column可选信令 = new DataGridViewComboBoxColumn();
+ Column更多 = new DataGridViewButtonColumn();
+ ((ISupportInitialize) ChannelMsgDataGridView).BeginInit();
+ Panel1.SuspendLayout();
+ SuspendLayout();
+ ChannelMsgDataGridView.AllowUserToAddRows = false;
+ ChannelMsgDataGridView.AllowUserToDeleteRows = false;
+ ChannelMsgDataGridView.AllowUserToResizeColumns = false;
+ ChannelMsgDataGridView.AllowUserToResizeRows = false;
+ gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ ChannelMsgDataGridView.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
+ gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle2.BackColor = SystemColors.Control;
+ gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle2.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
+ ChannelMsgDataGridView.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
+ componentResourceManager.ApplyResources(ChannelMsgDataGridView, "ChannelMsgDataGridView");
+ ChannelMsgDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
+ ChannelMsgDataGridView.Columns.AddRange(ColumnRxFreq, Column差频方向, ColumnTxFreq, Column亚音解码类型, Column亚音解码, Column亚音编码类型, Column亚音编码,
+ Column发射功率, Column扫描添加, Column带宽, Column可选信令, Column更多);
+ ChannelMsgDataGridView.Name = "ChannelMsgDataGridView";
+ gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle3.BackColor = SystemColors.Control;
+ gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle3.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
+ ChannelMsgDataGridView.RowHeadersDefaultCellStyle = gridViewCellStyle3;
+ ChannelMsgDataGridView.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ ChannelMsgDataGridView.RowsDefaultCellStyle = gridViewCellStyle4;
+ ChannelMsgDataGridView.RowTemplate.Height = 23;
+ componentResourceManager.ApplyResources(Panel1, "Panel1");
+ Panel1.BorderStyle = BorderStyle.Fixed3D;
+ Panel1.Controls.Add(ChannelMsgDataGridView);
+ Panel1.Name = "Panel1";
+ componentResourceManager.ApplyResources(Button3, "Button3");
+ Button3.Name = "Button3";
+ Button3.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(Button信道编辑, "Button信道编辑");
+ Button信道编辑.Name = "Button信道编辑";
+ Button信道编辑.UseVisualStyleBackColor = true;
+ gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ ColumnRxFreq.DefaultCellStyle = gridViewCellStyle5;
+ componentResourceManager.ApplyResources(ColumnRxFreq, "ColumnRxFreq");
+ ColumnRxFreq.MaxInputLength = 9;
+ ColumnRxFreq.Name = "ColumnRxFreq";
+ ColumnRxFreq.Resizable = DataGridViewTriState.False;
+ ColumnRxFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
+ Column差频方向.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column差频方向, "Column差频方向");
+ Column差频方向.Items.AddRange("OFF", "DUP -", "DUP +");
+ Column差频方向.Name = "Column差频方向";
+ componentResourceManager.ApplyResources(ColumnTxFreq, "ColumnTxFreq");
+ ColumnTxFreq.MaxInputLength = 9;
+ ColumnTxFreq.Name = "ColumnTxFreq";
+ ColumnTxFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
+ Column亚音解码类型.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column亚音解码类型, "Column亚音解码类型");
+ Column亚音解码类型.Items.AddRange("OFF", "TONE", "CTCSS", "DCS");
+ Column亚音解码类型.Name = "Column亚音解码类型";
+ Column亚音解码.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column亚音解码, "Column亚音解码");
+ Column亚音解码.Items.AddRange("OFF", "67.0", "69.3", "71.9", "74.4", "77.0", "79.7", "82.5", "85.4", "88.5", "91.5", "94.8", "97.4", "100.0",
+ "103.5", "107.2", "110.9", "114.8", "118.8", "123.0", "127.3", "131.8", "136.5", "141.3", "146.2", "151.4", "156.7", "159.8", "162.2",
+ "165.5", "167.9", "171.3", "173.8", "177.3", "179.9", "183.5", "186.2", "189.9", "192.8", "196.6", "199.5", "203.5", "206.5", "210.7",
+ "218.1", "225.7", "229.1", "233.6", "241.8", "250.3", "254.1", "D017N", "D023N", "D025N", "D026N", "D031N", "D032N", "D036N", "D043N",
+ "D047N", "D050N", "D051N", "D053N", "D054N", "D065N", "D071N", "D072N", "D073N", "D074N", "D114N", "D115N", "D116N", "D122N", "D125N",
+ "D131N", "D132N", "D134N", "D143N", "D145N", "D152N", "D155N", "D156N", "D162N", "D165N", "D172N", "D174N", "D205N", "D212N", "D223N",
+ "D225N", "D226N", "D243N", "D244N", "D245N", "D246N", "D251N", "D252N", "D255N", "D261N", "D263N", "D265N", "D266N", "D271N", "D274N",
+ "D306N", "D311N", "D315N", "D325N", "D331N", "D332N", "D343N", "D346N", "D351N", "D356N", "D364N", "D365N", "D371N", "D411N", "D412N",
+ "D413N", "D423N", "D431N", "D432N", "D445N", "D446N", "D452N", "D454N", "D455N", "D462N", "D464N", "D465N", "D466N", "D503N", "D506N",
+ "D516N", "D523N", "D526N", "D532N", "D546N", "D565N", "D606N", "D612N", "D624N", "D627N", "D631N", "D632N", "D645N", "D654N", "D662N",
+ "D664N", "D703N", "D712N", "D723N", "D731N", "D732N", "D734N", "D743N", "D754N", "D017I", "D023I", "D025I", "D026I", "D031I", "D032I",
+ "D036I", "D043I", "D047I", "D050I", "D051I", "D053I", "D054I", "D065I", "D071I", "D072I", "D073I", "D074I", "D114I", "D115I", "D116I",
+ "D122I", "D125I", "D131I", "D132I", "D134I", "D143I", "D145I", "D152I", "D155I", "D156I", "D162I", "D165I", "D172I", "D174I", "D205I",
+ "D212I", "D223I", "D225I", "D226I", "D243I", "D244I", "D245I", "D246I", "D251I", "D252I", "D255I", "D261I", "D263I", "D265I", "D266I",
+ "D271I", "D274I", "D306I", "D311I", "D315I", "D325I", "D331I", "D332I", "D343I", "D346I", "D351I", "D356I", "D364I", "D365I", "D371I",
+ "D411I", "D412I", "D413I", "D423I", "D431I", "D432I", "D445I", "D446I", "D452I", "D454I", "D455I", "D462I", "D464I", "D465I", "D466I",
+ "D503I", "D506I", "D516I", "D523I", "D526I", "D532I", "D546I", "D565I", "D606I", "D612I", "D624I", "D627I", "D631I", "D632I", "D645I",
+ "D654I", "D662I", "D664I", "D703I", "D712I", "D723I", "D731I", "D732I", "D734I", "D743I", "D754I");
+ Column亚音解码.Name = "Column亚音解码";
+ Column亚音编码类型.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column亚音编码类型, "Column亚音编码类型");
+ Column亚音编码类型.Items.AddRange("OFF", "TONE", "CTCSS", "DCS");
+ Column亚音编码类型.Name = "Column亚音编码类型";
+ Column亚音编码.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column亚音编码, "Column亚音编码");
+ Column亚音编码.Items.AddRange("OFF", "67.0", "69.3", "71.9", "74.4", "77.0", "79.7", "82.5", "85.4", "88.5", "91.5", "94.8", "97.4", "100.0",
+ "103.5", "107.2", "110.9", "114.8", "118.8", "123.0", "127.3", "131.8", "136.5", "141.3", "146.2", "151.4", "156.7", "159.8", "162.2",
+ "165.5", "167.9", "171.3", "173.8", "177.3", "179.9", "183.5", "186.2", "189.9", "192.8", "196.6", "199.5", "203.5", "206.5", "210.7",
+ "218.1", "225.7", "229.1", "233.6", "241.8", "250.3", "254.1", "D017N", "D023N", "D025N", "D026N", "D031N", "D032N", "D036N", "D043N",
+ "D047N", "D050N", "D051N", "D053N", "D054N", "D065N", "D071N", "D072N", "D073N", "D074N", "D114N", "D115N", "D116N", "D122N", "D125N",
+ "D131N", "D132N", "D134N", "D143N", "D145N", "D152N", "D155N", "D156N", "D162N", "D165N", "D172N", "D174N", "D205N", "D212N", "D223N",
+ "D225N", "D226N", "D243N", "D244N", "D245N", "D246N", "D251N", "D252N", "D255N", "D261N", "D263N", "D265N", "D266N", "D271N", "D274N",
+ "D306N", "D311N", "D315N", "D325N", "D331N", "D332N", "D343N", "D346N", "D351N", "D356N", "D364N", "D365N", "D371N", "D411N", "D412N",
+ "D413N", "D423N", "D431N", "D432N", "D445N", "D446N", "D452N", "D454N", "D455N", "D462N", "D464N", "D465N", "D466N", "D503N", "D506N",
+ "D516N", "D523N", "D526N", "D532N", "D546N", "D565N", "D606N", "D612N", "D624N", "D627N", "D631N", "D632N", "D645N", "D654N", "D662N",
+ "D664N", "D703N", "D712N", "D723N", "D731N", "D732N", "D734N", "D743N", "D754N", "D017I", "D023I", "D025I", "D026I", "D031I", "D032I",
+ "D036I", "D043I", "D047I", "D050I", "D051I", "D053I", "D054I", "D065I", "D071I", "D072I", "D073I", "D074I", "D114I", "D115I", "D116I",
+ "D122I", "D125I", "D131I", "D132I", "D134I", "D143I", "D145I", "D152I", "D155I", "D156I", "D162I", "D165I", "D172I", "D174I", "D205I",
+ "D212I", "D223I", "D225I", "D226I", "D243I", "D244I", "D245I", "D246I", "D251I", "D252I", "D255I", "D261I", "D263I", "D265I", "D266I",
+ "D271I", "D274I", "D306I", "D311I", "D315I", "D325I", "D331I", "D332I", "D343I", "D346I", "D351I", "D356I", "D364I", "D365I", "D371I",
+ "D411I", "D412I", "D413I", "D423I", "D431I", "D432I", "D445I", "D446I", "D452I", "D454I", "D455I", "D462I", "D464I", "D465I", "D466I",
+ "D503I", "D506I", "D516I", "D523I", "D526I", "D532I", "D546I", "D565I", "D606I", "D612I", "D624I", "D627I", "D631I", "D632I", "D645I",
+ "D654I", "D662I", "D664I", "D703I", "D712I", "D723I", "D731I", "D732I", "D734I", "D743I", "D754I");
+ Column亚音编码.Name = "Column亚音编码";
+ Column发射功率.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column发射功率, "Column发射功率");
+ Column发射功率.Items.AddRange("高", "低", "中");
+ Column发射功率.Name = "Column发射功率";
+ Column扫描添加.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
+ Column扫描添加.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column扫描添加, "Column扫描添加");
+ Column扫描添加.Items.AddRange("是", "否");
+ Column扫描添加.Name = "Column扫描添加";
+ Column带宽.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column带宽, "Column带宽");
+ Column带宽.Items.AddRange("宽带(25K)", "宽带(20K)", "窄带(12.5K)");
+ Column带宽.Name = "Column带宽";
+ Column可选信令.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column可选信令, "Column可选信令");
+ Column可选信令.Items.AddRange("无", "DTMF", "2-Tone", "5-Tone");
+ Column可选信令.Name = "Column可选信令";
+ gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle6.BackColor = Color.FromArgb(224, 224, 224);
+ gridViewCellStyle6.ForeColor = Color.Red;
+ Column更多.DefaultCellStyle = gridViewCellStyle6;
+ Column更多.FlatStyle = FlatStyle.Popup;
+ componentResourceManager.ApplyResources(Column更多, "Column更多");
+ Column更多.Name = "Column更多";
+ Column更多.Resizable = DataGridViewTriState.False;
+ Column更多.Text = ">>";
+ Column更多.UseColumnTextForButtonValue = true;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ Controls.Add(Button信道编辑);
+ Controls.Add(Button3);
+ Controls.Add(Button2);
+ Controls.Add(Button1);
+ Controls.Add(Panel1);
+ DoubleBuffered = true;
+
+ Name = nameof(ChannelMsg);
+ ((ISupportInitialize) ChannelMsgDataGridView).EndInit();
+ Panel1.ResumeLayout(false);
+ ResumeLayout(false);
+ }
+
+ internal virtual DataGridView ChannelMsgDataGridView
+ {
+ [DebuggerNonUserCode]
+ get => _ChannelMsgDataGridView;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ChannelMsgDataGridView != null)
+ {
+ _ChannelMsgDataGridView.CellValidating -= ChannelMsgDataGridView_CellValidating;
+ _ChannelMsgDataGridView.EditingControlShowing -= ChannelMsgDataGridView_EditingControlShowing;
+ _ChannelMsgDataGridView.CellEndEdit -= ChannelMsgDataGridView_CellEndEdit;
+ _ChannelMsgDataGridView.CellMouseClick -= ChannelMsgDataGridView_CellMouseClick;
+ _ChannelMsgDataGridView.RowPostPaint -= ChannelMsgDataGridView_RowPostPaint;
+ }
+
+ _ChannelMsgDataGridView = value;
+ if (_ChannelMsgDataGridView == null)
+ return;
+ _ChannelMsgDataGridView.CellValidating += ChannelMsgDataGridView_CellValidating;
+ _ChannelMsgDataGridView.EditingControlShowing += ChannelMsgDataGridView_EditingControlShowing;
+ _ChannelMsgDataGridView.CellEndEdit += ChannelMsgDataGridView_CellEndEdit;
+ _ChannelMsgDataGridView.CellMouseClick += ChannelMsgDataGridView_CellMouseClick;
+ _ChannelMsgDataGridView.RowPostPaint += ChannelMsgDataGridView_RowPostPaint;
+ }
+ }
+
+ internal virtual Panel Panel1
+ {
+ [DebuggerNonUserCode]
+ get => _Panel1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Panel1 = value;
+ }
+
+ internal virtual Button Button3
+ {
+ [DebuggerNonUserCode]
+ get => _Button3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button3 = value; }
+ }
+
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button2 = value; }
+ }
+
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
+
+ internal virtual Button Button信道编辑
+ {
+ [DebuggerNonUserCode]
+ get => _Button信道编辑;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button信道编辑 != null)
+ _Button信道编辑.Click -= Button信道编辑_Click;
+ _Button信道编辑 = value;
+ if (_Button信道编辑 == null)
+ return;
+ _Button信道编辑.Click += Button信道编辑_Click;
+ }
+ }
+
+ internal virtual DataGridViewTextBoxColumn ColumnRxFreq
+ {
+ [DebuggerNonUserCode]
+ get => _ColumnRxFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ColumnRxFreq = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column差频方向
+ {
+ [DebuggerNonUserCode]
+ get => _Column差频方向;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column差频方向 = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn ColumnTxFreq
+ {
+ [DebuggerNonUserCode]
+ get => _ColumnTxFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ColumnTxFreq = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column亚音解码类型
+ {
+ [DebuggerNonUserCode]
+ get => _Column亚音解码类型;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column亚音解码类型 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column亚音解码
+ {
+ [DebuggerNonUserCode]
+ get => _Column亚音解码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column亚音解码 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column亚音编码类型
+ {
+ [DebuggerNonUserCode]
+ get => _Column亚音编码类型;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column亚音编码类型 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column亚音编码
+ {
+ [DebuggerNonUserCode]
+ get => _Column亚音编码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column亚音编码 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column发射功率
+ {
+ [DebuggerNonUserCode]
+ get => _Column发射功率;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column发射功率 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column扫描添加
+ {
+ [DebuggerNonUserCode]
+ get => _Column扫描添加;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column扫描添加 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column带宽
+ {
+ [DebuggerNonUserCode]
+ get => _Column带宽;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column带宽 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column可选信令
+ {
+ [DebuggerNonUserCode]
+ get => _Column可选信令;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column可选信令 = value; }
+ }
+
+ internal virtual DataGridViewButtonColumn Column更多
+ {
+ [DebuggerNonUserCode]
+ get => _Column更多;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column更多 = value; }
+ }
+
+ public void ChannelMsg_Deactivate(object sender, EventArgs e)
+ {
+ ChannelMsgDataGridView.EndEdit();
+ var num = checked(ChannelMsgDataGridView.RowCount - 1);
+ var i = 0;
+ while (i <= num)
+ {
+ SetData_CHMsg(i);
+ checked
+ {
+ ++i;
+ }
+ }
+ }
+
+ private static void ChannelMsg_FormClosing(object sender, FormClosingEventArgs e)
+ {
+ MyProject.Forms.MDIParent1.信道信息CToolStripMenuItem.Checked = false;
+ }
+
+ public void ChannelMsg_Load(object sender, EventArgs e)
+ {
+ MyProject.Forms.MDIParent1.信道信息CToolStripMenuItem.Checked = true;
+ ChannelMsgDataGridView.RowCount = 516;
+
+ ChannelMsgDataGridView.TopLeftHeaderCell.Value = "CH";
+ Column发射功率.Items.Clear();
+ Column发射功率.Items.AddRange("High", "Low", "Middle");
+ Column扫描添加.Items.Clear();
+ Column扫描添加.Items.AddRange("Yes", "No");
+ Column带宽.Items.Clear();
+ Column带宽.Items.AddRange("Wide(25K)", "Wide(20K)", "Narrow(12.5K)");
+ Column可选信令.Items.Clear();
+ Column可选信令.Items.AddRange("None", "DTMF", "2-Tone", "5-Tone");
+
+ var num = checked(ChannelMsgDataGridView.RowCount - 1);
+ var i = 0;
+ while (i <= num)
+ {
+ GetStr_CHMsg(i);
+ checked
+ {
+ ++i;
+ }
+ }
+ }
+
+ private void ChannelMsgDataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
+ var columnIndex = ChannelMsgDataGridView.CurrentCell.ColumnIndex;
+ var num = columnIndex;
+ if (num == ChannelMsgDataGridView["ColumnRxFreq", rowIndex].ColumnIndex)
+ {
+ if (Operators.ConditionalCompareObjectNotEqual(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value, "", false))
+ {
+ var str = Conversions.ToString(JudgeInputRxFreq(Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value),
+ true));
+ ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value = str;
+ if (Operators.ConditionalCompareObjectEqual(ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value, "", false))
+ {
+ if (Operators.CompareString(str, "", false) == 0)
+ Clr_Channel(rowIndex);
+ else
+ Init_Channel(str, rowIndex);
+ }
+ else if (Operators.CompareString(str, "", false) == 0)
+ Clr_Channel(rowIndex);
+ }
+ else
+ Clr_Channel(rowIndex);
+ }
+ else if (num == ChannelMsgDataGridView["ColumnTxFreq", rowIndex].ColumnIndex)
+ {
+ var str = Conversions.ToString(JudgeInputTxFreq(Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value),
+ Conversions.ToString(ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value), true));
+ ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value = str;
+ }
+ else if (num == ChannelMsgDataGridView["Column亚音解码类型", rowIndex].ColumnIndex)
+ {
+ switch (Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", rowIndex].Value)))
+ {
+ case 0:
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
+ break;
+ case 1:
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[9]);
+ break;
+ case 2:
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[9]);
+ break;
+ case 3:
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[52]);
+ break;
+ }
+ }
+ else if (num == ChannelMsgDataGridView["Column亚音解码", rowIndex].ColumnIndex)
+ {
+ switch (Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", rowIndex].Value)))
+ {
+ case 0:
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
+ break;
+ case 1:
+ if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码", rowIndex].Value)) |
+ publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
+ break;
+ }
+
+ break;
+ case 2:
+ if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码", rowIndex].Value)) |
+ publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
+ break;
+ }
+
+ break;
+ case 3:
+ if (Operators.CompareString("D", ChannelMsgDataGridView["Column亚音解码", rowIndex]
+ .Value.ToString()
+ .Substring(0, 1), false) != 0 | publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
+ }
+
+ break;
+ }
+ }
+ else if (num == ChannelMsgDataGridView["Column亚音编码类型", rowIndex].ColumnIndex)
+ {
+ switch (Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", rowIndex].Value)))
+ {
+ case 0:
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
+ break;
+ case 1:
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[9]);
+ break;
+ case 2:
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[9]);
+ break;
+ case 3:
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[52]);
+ break;
+ }
+ }
+ else if (num == ChannelMsgDataGridView["Column亚音编码", rowIndex].ColumnIndex)
+ {
+ switch (Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", rowIndex].Value)))
+ {
+ case 0:
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
+ break;
+ case 1:
+ if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码", rowIndex].Value)) |
+ publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
+ break;
+ }
+
+ break;
+ case 2:
+ if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码", rowIndex].Value)) |
+ publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
+ break;
+ }
+
+ break;
+ case 3:
+ if (Operators.CompareString("D", ChannelMsgDataGridView["Column亚音编码", rowIndex]
+ .Value.ToString()
+ .Substring(0, 1), false) != 0 | publicva.ToneValueValidatingDIS)
+ {
+ publicva.ToneValueValidatingDIS = false;
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(
+ Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
+ }
+
+ break;
+ }
+ }
+
+ if (columnIndex == ChannelMsgDataGridView["Column更多", 0].ColumnIndex)
+ return;
+ SetData_CHMsg(rowIndex);
+ if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ChannelEditForm) &&
+ rowIndex == MyProject.Forms.ChannelEditForm.ComboBox编辑信道号.SelectedIndex)
+ MyProject.Forms.ChannelEditForm.GetStr_CHMsg(rowIndex);
+ if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
+ MyProject.Forms.ScanFuncMsgForm.SetControl_PRICHList();
+ MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void ChannelMsgDataGridView_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
+ {
+ if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["ColumnRxFreq", 0].ColumnIndex |
+ ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["ColumnTxFreq", 0].ColumnIndex)
+ {
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ e.Control.KeyPress += Cells_KeyPress;
+ }
else
- Init_Channel(str, rowIndex);
- }
- else if (Operators.CompareString(str, "", false) == 0)
- Clr_Channel(rowIndex);
+ {
+ if (!(ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex |
+ ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex))
+ return;
+ var boxEditingControl = new DataGridViewComboBoxEditingControl();
+ var control = (DataGridViewComboBoxEditingControl) e.Control;
+ control.DropDownStyle = ComboBoxStyle.DropDown;
+ control.MaxLength = 5;
+ e.Control.KeyPress += ComboBoxCells_KeyPress;
+ }
}
- else
- Clr_Channel(rowIndex);
- }
- else if (num == ChannelMsgDataGridView["ColumnTxFreq", rowIndex].ColumnIndex)
- {
- var str = Conversions.ToString(JudgeInputTxFreq(Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value), Conversions.ToString(ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value), true));
- ChannelMsgDataGridView["ColumnTxFreq", rowIndex].Value = str;
- }
- else if (num == ChannelMsgDataGridView["Column亚音解码类型", rowIndex].ColumnIndex)
- {
- switch (Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", rowIndex].Value)))
- {
- case 0:
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
- break;
- case 1:
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[9]);
- break;
- case 2:
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[9]);
- break;
- case 3:
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[52]);
- break;
- }
- }
- else if (num == ChannelMsgDataGridView["Column亚音解码", rowIndex].ColumnIndex)
- {
- switch (Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", rowIndex].Value)))
- {
- case 0:
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
- break;
- case 1:
- if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码", rowIndex].Value)) | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
- break;
- }
- break;
- case 2:
- if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码", rowIndex].Value)) | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
- break;
- }
- break;
- case 3:
- if (Operators.CompareString("D", ChannelMsgDataGridView["Column亚音解码", rowIndex].Value.ToString().Substring(0, 1), false) != 0 | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 7))));
- }
- break;
- }
- }
- else if (num == ChannelMsgDataGridView["Column亚音编码类型", rowIndex].ColumnIndex)
- {
- switch (Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", rowIndex].Value)))
- {
- case 0:
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
- break;
- case 1:
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[9]);
- break;
- case 2:
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[9]);
- break;
- case 3:
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[52]);
- break;
- }
- }
- else if (num == ChannelMsgDataGridView["Column亚音编码", rowIndex].ColumnIndex)
- {
- switch (Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", rowIndex].Value)))
- {
- case 0:
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
- break;
- case 1:
- if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码", rowIndex].Value)) | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
- break;
- }
- break;
- case 2:
- if (!Versioned.IsNumeric(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码", rowIndex].Value)) | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
- break;
- }
- break;
- case 3:
- if (Operators.CompareString("D", ChannelMsgDataGridView["Column亚音编码", rowIndex].Value.ToString().Substring(0, 1), false) != 0 | publicva.ToneValueValidatingDIS)
- {
- publicva.ToneValueValidatingDIS = false;
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(Conversions.ToInteger(Operators.AddObject(Get_CHAddress(rowIndex), 9))));
- }
- break;
- }
- }
- if (columnIndex == ChannelMsgDataGridView["Column更多", 0].ColumnIndex)
- return;
- SetData_CHMsg(rowIndex);
- if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ChannelEditForm) && rowIndex == MyProject.Forms.ChannelEditForm.ComboBox编辑信道号.SelectedIndex)
- MyProject.Forms.ChannelEditForm.GetStr_CHMsg(rowIndex);
- if (MyProject.Forms.MDIParent1.JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
- MyProject.Forms.ScanFuncMsgForm.SetControl_PRICHList();
- MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- }
- private void ChannelMsgDataGridView_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["ColumnRxFreq", 0].ColumnIndex | ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["ColumnTxFreq", 0].ColumnIndex)
- {
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- e.Control.KeyPress += Cells_KeyPress;
- }
- else
- {
- if (!(ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex | ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex))
- return;
- var boxEditingControl = new DataGridViewComboBoxEditingControl();
- var control = (DataGridViewComboBoxEditingControl) e.Control;
- control.DropDownStyle = ComboBoxStyle.DropDown;
- control.MaxLength = 5;
- e.Control.KeyPress += ComboBoxCells_KeyPress;
- }
- }
-
- private void Cells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
- e.Handled = false;
- else
- e.Handled = true;
- }
-
- private void ComboBoxCells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- {
- if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
- e.KeyChar = char.ToUpper(e.KeyChar);
- e.Handled = false;
- }
- else
- e.Handled = true;
- }
-
- private void ChannelMsgDataGridView_CellValidating(
- object sender,
- DataGridViewCellValidatingEventArgs e)
- {
- var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
- if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex | ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex)
- {
- publicva.ToneValueValidatingDIS = false;
- if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectNotEqual(e.FormattedValue, "", false), Column亚音解码.Items.IndexOf(RuntimeHelpers.GetObjectValue(e.FormattedValue)) != 0)))
+ private void Cells_KeyPress(object sender, KeyPressEventArgs e)
{
- string str;
- if (Operators.CompareString(e.FormattedValue.ToString().Substring(0, 1), "D", false) == 0)
- {
- if (e.FormattedValue.ToString().Length != 5)
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ e.Handled = false;
+ else
+ e.Handled = true;
+ }
+
+ private void ComboBoxCells_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | char.IsDigit(e.KeyChar) | e.KeyChar == '\b' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "N", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "I", false) == 0 | e.KeyChar == '.' |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
{
- publicva.ToneValueValidatingDIS = true;
- return;
+ if (Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "n", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "i", false) == 0)
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ e.Handled = false;
}
- if (!(Operators.CompareString(e.FormattedValue.ToString().Substring(4, 1), "N", false) == 0 | Operators.CompareString(e.FormattedValue.ToString().Substring(4, 1), "I", false) == 0))
+ else
+ e.Handled = true;
+ }
+
+ private void ChannelMsgDataGridView_CellValidating(
+ object sender,
+ DataGridViewCellValidatingEventArgs e)
+ {
+ var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
+ if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex |
+ ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex)
{
- publicva.ToneValueValidatingDIS = true;
- return;
+ publicva.ToneValueValidatingDIS = false;
+ if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectNotEqual(e.FormattedValue, "", false),
+ Column亚音解码.Items.IndexOf(RuntimeHelpers.GetObjectValue(e.FormattedValue)) != 0)))
+ {
+ string str;
+ if (Operators.CompareString(e.FormattedValue.ToString()
+ .Substring(0, 1), "D", false) == 0)
+ {
+ if (e.FormattedValue.ToString()
+ .Length != 5)
+ {
+ publicva.ToneValueValidatingDIS = true;
+ return;
+ }
+
+ if (!(Operators.CompareString(e.FormattedValue.ToString()
+ .Substring(4, 1), "N", false) == 0 | Operators.CompareString(e.FormattedValue.ToString()
+ .Substring(4, 1), "I", false) == 0))
+ {
+ publicva.ToneValueValidatingDIS = true;
+ return;
+ }
+
+ str = Conversions.ToString(e.FormattedValue);
+ }
+ else
+ {
+ double num;
+ try
+ {
+ num = Conversions.ToDouble(e.FormattedValue);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ publicva.ToneValueValidatingDIS = true;
+ ProjectData.ClearProjectError();
+ return;
+ }
+
+ if (num > 254.1 | num < 63.0)
+ {
+ publicva.ToneValueValidatingDIS = true;
+ return;
+ }
+
+ str = $"{num:###.0}";
+ }
+
+ if (!Column亚音编码.Items.Contains(str))
+ {
+ Column亚音编码.Items.Add(str);
+ if (!Column亚音解码.Items.Contains(str))
+ Column亚音解码.Items.Add(str);
+ }
+
+ if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex)
+ ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = str;
+ if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex)
+ ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = str;
+ }
}
- str = Conversions.ToString(e.FormattedValue);
- }
- else
- {
- double num;
+ }
+
+ private void ChannelMsgDataGridView_RowPostPaint(
+ object sender,
+ DataGridViewRowPostPaintEventArgs e)
+ {
+ var strArray = new string[4]
+ {
+ "A CALL",
+ "B CALL",
+ "A VFO",
+ "B VFO"
+ };
+ var brush = (Brush) new SolidBrush(ChannelMsgDataGridView.RowHeadersDefaultCellStyle.ForeColor);
+ var font = new Font("Arial", 9f, FontStyle.Bold);
+ if (e.RowIndex > 511)
+ {
+ switch (e.RowIndex)
+ {
+ case 512:
+ brush = Brushes.Red;
+ break;
+ case 513:
+ brush = Brushes.Orange;
+ break;
+ case 514:
+ brush = Brushes.Blue;
+ break;
+ case 515:
+ brush = Brushes.Green;
+ break;
+ }
+
+ e.Graphics.DrawString(strArray[checked(e.RowIndex - 512)], font, brush, checked(e.RowBounds.Location.X + 2),
+ checked(e.RowBounds.Location.Y + 5));
+ }
+ else
+ e.Graphics.DrawString(checked(e.RowIndex + 0).ToString(), ChannelMsgDataGridView.DefaultCellStyle.Font, brush,
+ e.RowBounds.Location.X + checked(ChannelMsgDataGridView.RowHeadersWidth - (e.RowIndex + 0).ToString()
+ .Length * 8) / 2f, checked(e.RowBounds.Location.Y + 5));
+ }
+
+ private void ChannelMsgDataGridView_CellMouseClick(
+ object sender,
+ DataGridViewCellMouseEventArgs e)
+ {
+ var columnIndex = ChannelMsgDataGridView["Column更多", 0].ColumnIndex;
+ var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
+ if (columnIndex == ChannelMsgDataGridView.CurrentCell.ColumnIndex)
+ {
+ MyProject.Forms.ChannelEditForm.ChannelEditForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ MyProject.Forms.MDIParent1.SafeLoadWindowByName(MyProject.Forms.ChannelEditForm);
+ }
+ else
+ {
+ if (!Operators.ConditionalCompareObjectEqual("", ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value, false))
+ return;
+ ChannelMsgDataGridView.CurrentCell = ChannelMsgDataGridView.Rows[rowIndex]
+ .Cells[0];
+ ChannelMsgDataGridView.BeginEdit(true);
+ }
+ }
+
+ private void Button信道编辑_Click(object sender, EventArgs e)
+ {
+ MyProject.Forms.ChannelEditForm.ChannelEditForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ MyProject.Forms.MDIParent1.SafeLoadWindowByName(MyProject.Forms.ChannelEditForm);
+ }
+
+ public void GetStr_CHMsg(int i)
+ {
+ var flag = false;
+ var integer = Conversions.ToInteger(Get_CHAddress(i));
+ if (i > 511)
+ {
+ if (Operators.ConditionalCompareObjectNotEqual("",
+ Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked(integer + 15)] & 15,
+ publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
+ flag = true;
+ }
+ else if (CHStatus_Read(i, 8064) && Operators.ConditionalCompareObjectNotEqual("",
+ Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked(integer + 15)] & 15,
+ publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
+ flag = true;
+
+ if (flag)
+ {
+ ChannelMsgDataGridView["ColumnRxFreq", i].Value = RuntimeHelpers.GetObjectValue(Get_RxFreqStr(checked(integer + 0),
+ publicva.EEPROM_Byte[checked(integer + 15)] & 15, publicva.EEPROM_Byte[checked(integer + 11)] & (publicva.Bit0 | publicva.Bit1)));
+ ChannelMsgDataGridView["Column差频方向", i].Value = RuntimeHelpers.GetObjectValue(
+ Column差频方向.Items[(byte) ((publicva.EEPROM_Byte[checked(integer + 14)] & (publicva.Bit2 | (uint) publicva.Bit3)) >> 2)]);
+ ChannelMsgDataGridView["ColumnTxFreq", i].Value = RuntimeHelpers.GetObjectValue(Get_TxFreqStr(checked(integer + 3),
+ publicva.EEPROM_Byte[checked(integer + 15)] & 15, publicva.EEPROM_Byte[checked(integer + 12)] & (publicva.Bit0 | publicva.Bit1)));
+ ChannelMsgDataGridView["Column亚音解码类型", i].Value = RuntimeHelpers.GetObjectValue(
+ Column亚音解码类型.Items[(byte) ((publicva.EEPROM_Byte[checked(integer + 7)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
+ ChannelMsgDataGridView["Column亚音解码", i].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(checked(integer + 7)));
+ ChannelMsgDataGridView["Column亚音编码类型", i].Value = RuntimeHelpers.GetObjectValue(
+ Column亚音编码类型.Items[(byte) ((publicva.EEPROM_Byte[checked(integer + 9)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
+ ChannelMsgDataGridView["Column亚音编码", i].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(checked(integer + 9)));
+ ChannelMsgDataGridView["Column发射功率", i].Value = RuntimeHelpers.GetObjectValue(
+ Column发射功率.Items[(byte) ((publicva.EEPROM_Byte[checked(integer + 13)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
+ ChannelMsgDataGridView["Column扫描添加", i].Value = i <= 511
+ ? (!CHStatus_Read(i, 8128)
+ ? RuntimeHelpers.GetObjectValue(Column扫描添加.Items[1])
+ : RuntimeHelpers.GetObjectValue(Column扫描添加.Items[0]))
+ : RuntimeHelpers.GetObjectValue(Column扫描添加.Items[1]);
+ ChannelMsgDataGridView["Column带宽", i].Value = RuntimeHelpers.GetObjectValue(
+ Column带宽.Items[(byte) ((publicva.EEPROM_Byte[checked(integer + 14)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
+ ChannelMsgDataGridView["Column可选信令", i].Value = RuntimeHelpers.GetObjectValue(Column可选信令.Items[
+ (byte) ((publicva.EEPROM_Byte[checked(integer + 12)] & (publicva.Bit4 | (uint) publicva.Bit5 | publicva.Bit6)) >> 4)]);
+ }
+ else
+ Clr_Channel(i);
+ }
+
+ public void SetData_CHMsg(int i)
+ {
+ var flag = false;
+ var integer = Conversions.ToInteger(Get_CHAddress(i));
+ if (Operators.ConditionalCompareObjectNotEqual(ChannelMsgDataGridView["ColumnRxFreq", i].Value, "", false)
+ && Operators.ConditionalCompareObjectNotEqual("", ChannelMsgDataGridView["ColumnTxFreq", i].Value, false))
+ flag = true;
+ if (flag)
+ {
+ publicva.EEPROM_Byte[checked(integer + 15)] = Conversions.ToByte(Get_FreqRangID(Conversions.ToDouble(ChannelMsgDataGridView["ColumnRxFreq", i].Value)));
+ publicva.EEPROM_Byte[checked(integer + 11)] = Conversions.ToByte(Operators.OrObject((byte) (publicva.EEPROM_Byte[checked(integer + 11)] & (byte) ~(publicva.Bit0 | publicva.Bit1)),
+ Get_FreqStepFlag(Conversions.ToDouble(ChannelMsgDataGridView["ColumnRxFreq", i].Value))));
+ Set_FreqData(checked(integer + 0), Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", i].Value));
+ publicva.EEPROM_Byte[checked(integer + 14)] =
+ checked((byte) (publicva.EEPROM_Byte[integer + 14] & unchecked((byte) ~(publicva.Bit2 | publicva.Bit3)) |
+ Column差频方向.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column差频方向", i].Value)) << 2));
+ publicva.EEPROM_Byte[checked(integer + 12)] = Conversions.ToByte(Operators.OrObject(
+ (byte) (publicva.EEPROM_Byte[checked(integer + 12)] & (byte) ~(publicva.Bit0 | publicva.Bit1)),
+ Get_FreqStepFlag(Conversions.ToDouble(ChannelMsgDataGridView["ColumnTxFreq", i].Value))));
+ Set_FreqData(checked(integer + 3), Conversions.ToString(ChannelMsgDataGridView["ColumnTxFreq", i].Value));
+ Set_CTC_DCS_Data(checked(integer + 7), Conversions.ToString(ChannelMsgDataGridView["Column亚音解码", i].Value),
+ Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", i].Value)));
+ Set_CTC_DCS_Data(checked(integer + 9), Conversions.ToString(ChannelMsgDataGridView["Column亚音编码", i].Value),
+ Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", i].Value)));
+ publicva.EEPROM_Byte[checked(integer + 13)] =
+ checked((byte) (publicva.EEPROM_Byte[integer + 13] & unchecked((byte) ~(publicva.Bit4 | publicva.Bit5)) |
+ Column发射功率.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column发射功率", i].Value)) << 4));
+ if (Column扫描添加.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column扫描添加", i].Value)) != 0)
+ {
+ if (i <= 511)
+ CHStatusList_Write(i, "删除", 8128);
+ }
+ else if (i <= 511)
+ CHStatusList_Write(i, "添加", 8128);
+
+ publicva.EEPROM_Byte[checked(integer + 14)] =
+ checked((byte) (publicva.EEPROM_Byte[integer + 14] & unchecked((byte) ~(publicva.Bit4 | publicva.Bit5)) |
+ Column带宽.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column带宽", i].Value)) << 4));
+ publicva.EEPROM_Byte[checked(integer + 12)] =
+ checked((byte) (publicva.EEPROM_Byte[integer + 12] & unchecked((byte) ~(publicva.Bit4 | publicva.Bit5 | publicva.Bit6)) |
+ Column可选信令.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column可选信令", i].Value)) << 4));
+ if (i > 511)
+ return;
+ CHStatusList_Write(i, "添加", 8064);
+ }
+ else
+ {
+ var num = 0;
+ do
+ {
+ publicva.EEPROM_Byte[checked(integer + num)] = 0;
+ checked
+ {
+ ++num;
+ }
+ }
+ while (num <= 31);
+
+ if (i <= 511)
+ {
+ CHStatusList_Write(i, "删除", 8064);
+ CHStatusList_Write(i, "删除", 8128);
+ }
+ }
+ }
+
+ public object Get_CTC_DCS_Str(int Address)
+ {
+ var num = (int) (byte) ((publicva.EEPROM_Byte[checked(Address + 0)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4);
+ string ctcDcsStr;
+ if (num == 0)
+ {
+ ctcDcsStr = Conversions.ToString(Column亚音编码.Items[0]);
+ }
+ else
+ {
+ var a = (double) checked((publicva.EEPROM_Byte[Address + 0] & 15) * 256 + publicva.EEPROM_Byte[Address + 1]);
+ if (num == 3)
+ {
+ var integer = Conversions.ToInteger(Conversion.Oct(checked((long) Math.Round(a)) & 511L));
+ ctcDcsStr = (publicva.EEPROM_Byte[checked(Address + 0)] & (uint) publicva.Bit7) <= 0U
+ ? "D" + $"{integer:D3}" + "N"
+ : "D" + $"{integer:D3}" + "I";
+ }
+ else
+ ctcDcsStr = $"{a / 10.0:###.0}";
+ }
+
+ if (!Column亚音编码.Items.Contains(ctcDcsStr))
+ {
+ Column亚音编码.Items.Add(ctcDcsStr);
+ if (!Column亚音解码.Items.Contains(ctcDcsStr))
+ Column亚音解码.Items.Add(ctcDcsStr);
+ }
+
+ return ctcDcsStr;
+ }
+
+ public void Set_CTC_DCS_Data(int Address, string ToneStr, int ToneMode)
+ {
+ if (!Column亚音编码.Items.Contains(ToneStr))
+ {
+ Column亚音编码.Items.Add(ToneStr);
+ if (!Column亚音解码.Items.Contains(ToneStr))
+ Column亚音解码.Items.Add(ToneStr);
+ }
+
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & unchecked((byte) ~(publicva.Bit4 | publicva.Bit5)) | ToneMode << 4));
+ switch (ToneMode)
+ {
+ case 0:
+ publicva.EEPROM_Byte[checked(Address + 0)] = checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) (publicva.EEPROM_Byte[Address + 1] & 0));
+ break;
+ case 3:
+ var a1 = Conversions.ToDouble("&H" + Conversion.Hex("&O" + Conversions.ToString(Conversions.ToDouble(ToneStr.Substring(1, 3)))));
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a1) & 3840L) >> 8));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) ((long) Math.Round(a1) & byte.MaxValue));
+ publicva.EEPROM_Byte[checked(Address + 0)] = Operators.CompareString("I", ToneStr.Substring(4, 1), false) != 0
+ ? (byte) (publicva.EEPROM_Byte[checked(Address + 0)] & ~publicva.Bit7)
+ : (byte) (publicva.EEPROM_Byte[checked(Address + 0)] | publicva.Bit7);
+ break;
+ default:
+ double num;
+ try
+ {
+ num = Conversions.ToDouble(ToneStr);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ num = 67.0;
+ ProjectData.ClearProjectError();
+ }
+
+ var a2 = num * 10.0;
+ publicva.EEPROM_Byte[checked(Address + 0)] =
+ checked((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a2) & 3840L) >> 8));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) ((long) Math.Round(a2) & byte.MaxValue));
+ break;
+ }
+ }
+
+ public object Get_RxFreqStr(int Address, int FreqRangID, int CHStepIndex)
+ {
+ var numArray = new double[3]
+ {
+ 5000.0,
+ 6250.0,
+ 2500.0
+ };
+ var num1 = checked(publicva.EEPROM_Byte[Address + 0] * 65536) + (double) checked(publicva.EEPROM_Byte[Address + 1] * 256) +
+ checked(publicva.EEPROM_Byte[Address + 2] * 1);
+ if (CHStepIndex > 2)
+ CHStepIndex = 0;
+ var num2 = (double) (checked((long) Math.Round(unchecked(num1 * numArray[CHStepIndex]))) / 10L);
+ return !(publicva.RxFreqRang[FreqRangID, 1] >= num2 & num2 >= publicva.RxFreqRang[FreqRangID, 0])
+ ? ""
+ : (object) $"{num2 / 100000.0:#00.00000}";
+ }
+
+ public object Get_TxFreqStr(int Address, int FreqRangID, int CHStepIndex)
+ {
+ var numArray = new double[3]
+ {
+ 5000.0,
+ 6250.0,
+ 2500.0
+ };
+ var num = (double) (checked((long) Math.Round(unchecked(checked(publicva.EEPROM_Byte[Address + 0] * 65536) +
+ (double) checked(publicva.EEPROM_Byte[Address + 1] * 256) +
+ checked(publicva.EEPROM_Byte[Address + 2] * 1) * numArray[CHStepIndex]))) / 10L);
+ return !(checked(publicva.RxFreqRang[FreqRangID, 1] - publicva.RxFreqRang[FreqRangID, 0]) >= num & num >= 0.0)
+ ? ""
+ : (object) $"{num / 100000.0:##0.00000}";
+ }
+
+ public void Set_FreqData(int Address, string FreqStr)
+ {
+ var numArray = new double[3]
+ {
+ 5000.0,
+ 6250.0,
+ 2500.0
+ };
+ double Freq;
try
{
- num = Conversions.ToDouble(e.FormattedValue);
+ Freq = Conversions.ToDouble(FreqStr);
}
catch (Exception ex)
{
- ProjectData.SetProjectError(ex);
- publicva.ToneValueValidatingDIS = true;
- ProjectData.ClearProjectError();
- return;
+ ProjectData.SetProjectError(ex);
+ Freq = 0.0;
+ ProjectData.ClearProjectError();
}
- if (num > 254.1 | num < 63.0)
+
+ var integer = Conversions.ToInteger(Get_FreqStepFlag(Freq));
+ var a = (double) (checked((long) Math.Round(unchecked(Freq * 1000000.0))) / checked((long) Math.Round(numArray[integer])));
+ publicva.EEPROM_Byte[checked(Address + 0)] = checked((byte) (((long) Math.Round(a) & 16711680L) >> 16));
+ publicva.EEPROM_Byte[checked(Address + 1)] = checked((byte) (((long) Math.Round(a) & 65280L) >> 8));
+ publicva.EEPROM_Byte[checked(Address + 2)] = checked((byte) (((long) Math.Round(a) & byte.MaxValue) >> 0));
+ }
+
+ public object Get_FreqStepFlag(double Freq)
+ {
+ var num = checked((uint) Math.Round(unchecked(Freq * 1000000.0)));
+ if (num % 5000L == 0L)
+ return 0;
+ if (num % 6250L == 0L)
+ return 1;
+ return num % 2500L == 0L ? 2 : (object) 0;
+ }
+
+ public object Get_FreqRangID(double freq)
+ {
+ var numArray = new byte[7]
{
- publicva.ToneValueValidatingDIS = true;
- return;
- }
- str = string.Format("{0:###.0}", num);
- }
- if (!Column亚音编码.Items.Contains(str))
- {
- Column亚音编码.Items.Add(str);
- if (!Column亚音解码.Items.Contains(str))
- Column亚音解码.Items.Add(str);
- }
- if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音解码", 0].ColumnIndex)
- ChannelMsgDataGridView["Column亚音解码", rowIndex].Value = str;
- if (ChannelMsgDataGridView.CurrentCell.ColumnIndex == ChannelMsgDataGridView["Column亚音编码", 0].ColumnIndex)
- ChannelMsgDataGridView["Column亚音编码", rowIndex].Value = str;
- }
- }
- }
-
- private void ChannelMsgDataGridView_RowPostPaint(
- object sender,
- DataGridViewRowPostPaintEventArgs e)
- {
- var strArray = new string[4]
- {
- "A CALL",
- "B CALL",
- "A VFO",
- "B VFO"
- };
- var brush = (Brush) new SolidBrush(ChannelMsgDataGridView.RowHeadersDefaultCellStyle.ForeColor);
- var font = new Font("Arial", 9f, FontStyle.Bold);
- if (e.RowIndex > 511)
- {
- if (e.RowIndex == 512)
- brush = Brushes.Red;
- else if (e.RowIndex == 513)
- brush = Brushes.Orange;
- else if (e.RowIndex == 514)
- brush = Brushes.Blue;
- else if (e.RowIndex == 515)
- brush = Brushes.Green;
- e.Graphics.DrawString(strArray[checked (e.RowIndex - 512)].ToString(), font, brush, checked (e.RowBounds.Location.X + 2), checked (e.RowBounds.Location.Y + 5));
- }
- else
- e.Graphics.DrawString(checked (e.RowIndex + 0).ToString(), ChannelMsgDataGridView.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (ChannelMsgDataGridView.RowHeadersWidth - (e.RowIndex + 0).ToString().Length * 8) / 2f, checked (e.RowBounds.Location.Y + 5));
- }
-
- private void ChannelMsgDataGridView_CellMouseClick(
- object sender,
- DataGridViewCellMouseEventArgs e)
- {
- var columnIndex = ChannelMsgDataGridView["Column更多", 0].ColumnIndex;
- var rowIndex = ChannelMsgDataGridView.CurrentCell.RowIndex;
- if (columnIndex == ChannelMsgDataGridView.CurrentCell.ColumnIndex)
- {
- MyProject.Forms.ChannelEditForm.ChannelEditForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- MyProject.Forms.MDIParent1.SafeLoadWindowByName(MyProject.Forms.ChannelEditForm);
- }
- else
- {
- if (!Operators.ConditionalCompareObjectEqual("", ChannelMsgDataGridView["ColumnRxFreq", rowIndex].Value, false))
- return;
- ChannelMsgDataGridView.CurrentCell = ChannelMsgDataGridView.Rows[rowIndex].Cells[0];
- ChannelMsgDataGridView.BeginEdit(true);
- }
- }
-
- private void Button信道编辑_Click(object sender, EventArgs e)
- {
- MyProject.Forms.ChannelEditForm.ChannelEditForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- MyProject.Forms.MDIParent1.SafeLoadWindowByName(MyProject.Forms.ChannelEditForm);
- }
-
- public void GetStr_CHMsg(int i)
- {
- var flag = false;
- var integer = Conversions.ToInteger(Get_CHAddress(i));
- if (i > 511)
- {
- if (Operators.ConditionalCompareObjectNotEqual("", Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
- flag = true;
- }
- else if (CHStatus_Read(i, 8064) && Operators.ConditionalCompareObjectNotEqual("", Get_RxFreqStr(integer, publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)), false))
- flag = true;
- if (flag)
- {
- ChannelMsgDataGridView["ColumnRxFreq", i].Value = RuntimeHelpers.GetObjectValue(Get_RxFreqStr(checked (integer + 0), publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 11)] & (publicva.Bit0 | publicva.Bit1)));
- ChannelMsgDataGridView["Column差频方向", i].Value = RuntimeHelpers.GetObjectValue(Column差频方向.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 14)] & (publicva.Bit2 | (uint) publicva.Bit3)) >> 2)]);
- ChannelMsgDataGridView["ColumnTxFreq", i].Value = RuntimeHelpers.GetObjectValue(Get_TxFreqStr(checked (integer + 3), publicva.EEPROM_Byte[checked (integer + 15)] & 15, publicva.EEPROM_Byte[checked (integer + 12)] & (publicva.Bit0 | publicva.Bit1)));
- ChannelMsgDataGridView["Column亚音解码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音解码类型.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 7)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
- ChannelMsgDataGridView["Column亚音解码", i].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(checked (integer + 7)));
- ChannelMsgDataGridView["Column亚音编码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音编码类型.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 9)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
- ChannelMsgDataGridView["Column亚音编码", i].Value = RuntimeHelpers.GetObjectValue(Get_CTC_DCS_Str(checked (integer + 9)));
- ChannelMsgDataGridView["Column发射功率", i].Value = RuntimeHelpers.GetObjectValue(Column发射功率.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 13)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
- ChannelMsgDataGridView["Column扫描添加", i].Value = i <= 511 ? (!CHStatus_Read(i, 8128) ? RuntimeHelpers.GetObjectValue(Column扫描添加.Items[1]) : RuntimeHelpers.GetObjectValue(Column扫描添加.Items[0])) : RuntimeHelpers.GetObjectValue(Column扫描添加.Items[1]);
- ChannelMsgDataGridView["Column带宽", i].Value = RuntimeHelpers.GetObjectValue(Column带宽.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 14)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4)]);
- ChannelMsgDataGridView["Column可选信令", i].Value = RuntimeHelpers.GetObjectValue(Column可选信令.Items[(byte) ((publicva.EEPROM_Byte[checked (integer + 12)] & (publicva.Bit4 | (uint) publicva.Bit5 | publicva.Bit6)) >> 4)]);
- }
- else
- Clr_Channel(i);
- }
-
- public void SetData_CHMsg(int i)
- {
- var flag = false;
- var integer = Conversions.ToInteger(Get_CHAddress(i));
- if (Operators.ConditionalCompareObjectNotEqual(ChannelMsgDataGridView["ColumnRxFreq", i].Value, "", false)
- && Operators.ConditionalCompareObjectNotEqual("", ChannelMsgDataGridView["ColumnTxFreq", i].Value, false))
- flag = true;
- if (flag)
- {
- publicva.EEPROM_Byte[checked (integer + 15)] = Conversions.ToByte(Get_FreqRangID(Conversions.ToDouble(ChannelMsgDataGridView["ColumnRxFreq", i].Value)));
- publicva.EEPROM_Byte[checked (integer + 11)] = Conversions.ToByte(Operators.OrObject((byte) (publicva.EEPROM_Byte[checked (integer + 11)] & (byte) ~(publicva.Bit0 | publicva.Bit1)), Get_FreqStepFlag(Conversions.ToDouble(ChannelMsgDataGridView["ColumnRxFreq", i].Value))));
- Set_FreqData(checked (integer + 0), Conversions.ToString(ChannelMsgDataGridView["ColumnRxFreq", i].Value));
- publicva.EEPROM_Byte[checked (integer + 14)] = checked ((byte) (publicva.EEPROM_Byte[integer + 14] & unchecked ((byte) ~(publicva.Bit2 | publicva.Bit3)) | Column差频方向.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column差频方向", i].Value)) << 2));
- publicva.EEPROM_Byte[checked (integer + 12)] = Conversions.ToByte(Operators.OrObject((byte) (publicva.EEPROM_Byte[checked (integer + 12)] & (byte) ~(publicva.Bit0 | publicva.Bit1)), Get_FreqStepFlag(Conversions.ToDouble(ChannelMsgDataGridView["ColumnTxFreq", i].Value))));
- Set_FreqData(checked (integer + 3), Conversions.ToString(ChannelMsgDataGridView["ColumnTxFreq", i].Value));
- Set_CTC_DCS_Data(checked (integer + 7), Conversions.ToString(ChannelMsgDataGridView["Column亚音解码", i].Value), Column亚音解码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音解码类型", i].Value)));
- Set_CTC_DCS_Data(checked (integer + 9), Conversions.ToString(ChannelMsgDataGridView["Column亚音编码", i].Value), Column亚音编码类型.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column亚音编码类型", i].Value)));
- publicva.EEPROM_Byte[checked (integer + 13)] = checked ((byte) (publicva.EEPROM_Byte[integer + 13] & unchecked ((byte) ~(publicva.Bit4 | publicva.Bit5)) | Column发射功率.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column发射功率", i].Value)) << 4));
- if (Column扫描添加.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column扫描添加", i].Value)) != 0)
- {
- if (i <= 511)
- CHStatusList_Write(i, "删除", 8128);
- }
- else if (i <= 511)
- CHStatusList_Write(i, "添加", 8128);
- publicva.EEPROM_Byte[checked (integer + 14)] = checked ((byte) (publicva.EEPROM_Byte[integer + 14] & unchecked ((byte) ~(publicva.Bit4 | publicva.Bit5)) | Column带宽.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column带宽", i].Value)) << 4));
- publicva.EEPROM_Byte[checked (integer + 12)] = checked ((byte) (publicva.EEPROM_Byte[integer + 12] & unchecked ((byte) ~(publicva.Bit4 | publicva.Bit5 | publicva.Bit6)) | Column可选信令.Items.IndexOf(RuntimeHelpers.GetObjectValue(ChannelMsgDataGridView["Column可选信令", i].Value)) << 4));
- if (i > 511)
- return;
- CHStatusList_Write(i, "添加", 8064);
- }
- else
- {
- var num = 0;
- do
- {
- publicva.EEPROM_Byte[checked (integer + num)] = 0;
- checked { ++num; }
- }
- while (num <= 31);
- if (i <= 511)
- {
- CHStatusList_Write(i, "删除", 8064);
- CHStatusList_Write(i, "删除", 8128);
- }
- }
- }
-
- public object Get_CTC_DCS_Str(int Address)
- {
- var num = (int) (byte) ((publicva.EEPROM_Byte[checked (Address + 0)] & (publicva.Bit4 | (uint) publicva.Bit5)) >> 4);
- string ctcDcsStr;
- if (num == 0)
- {
- ctcDcsStr = Conversions.ToString(Column亚音编码.Items[0]);
- }
- else
- {
- var a = (double) checked ((publicva.EEPROM_Byte[Address + 0] & 15) * 256 + publicva.EEPROM_Byte[Address + 1]);
- if (num == 3)
- {
- var integer = Conversions.ToInteger(Conversion.Oct(checked ((long) Math.Round(a)) & 511L));
- ctcDcsStr = (publicva.EEPROM_Byte[checked (Address + 0)] & (uint) publicva.Bit7) <= 0U ? "D" + string.Format("{0:D3}", integer) + "N" : "D" + string.Format("{0:D3}", integer) + "I";
- }
- else
- ctcDcsStr = string.Format("{0:###.0}", a / 10.0);
- }
- if (!Column亚音编码.Items.Contains(ctcDcsStr))
- {
- Column亚音编码.Items.Add(ctcDcsStr);
- if (!Column亚音解码.Items.Contains(ctcDcsStr))
- Column亚音解码.Items.Add(ctcDcsStr);
- }
- return ctcDcsStr;
- }
-
- public void Set_CTC_DCS_Data(int Address, string ToneStr, int ToneMode)
- {
- if (!Column亚音编码.Items.Contains(ToneStr))
- {
- Column亚音编码.Items.Add(ToneStr);
- if (!Column亚音解码.Items.Contains(ToneStr))
- Column亚音解码.Items.Add(ToneStr);
- }
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & unchecked ((byte) ~(publicva.Bit4 | publicva.Bit5)) | ToneMode << 4));
- switch (ToneMode)
- {
- case 0:
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) (publicva.EEPROM_Byte[Address + 1] & 0));
- break;
- case 3:
- var a1 = Conversions.ToDouble("&H" + Conversion.Hex("&O" + Conversions.ToString(Conversions.ToDouble(ToneStr.Substring(1, 3)))));
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a1) & 3840L) >> 8));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) ((long) Math.Round(a1) & byte.MaxValue));
- publicva.EEPROM_Byte[checked (Address + 0)] = Operators.CompareString("I", ToneStr.Substring(4, 1), false) != 0 ? (byte) (publicva.EEPROM_Byte[checked (Address + 0)] & ~publicva.Bit7) : (byte) (publicva.EEPROM_Byte[checked (Address + 0)] | publicva.Bit7);
- break;
- default:
- double num;
- try
- {
- num = Conversions.ToDouble(ToneStr);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- num = 67.0;
- ProjectData.ClearProjectError();
- }
- var a2 = num * 10.0;
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (publicva.EEPROM_Byte[Address + 0] & 240 | ((long) Math.Round(a2) & 3840L) >> 8));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) ((long) Math.Round(a2) & byte.MaxValue));
- break;
- }
- }
-
- public object Get_RxFreqStr(int Address, int FreqRangID, int CHStepIndex)
- {
- var numArray = new double[3]
- {
- 5000.0,
- 6250.0,
- 2500.0
- };
- var num1 = checked (publicva.EEPROM_Byte[Address + 0] * 65536) + (double) checked (publicva.EEPROM_Byte[Address + 1] * 256) + checked (publicva.EEPROM_Byte[Address + 2] * 1);
- if (CHStepIndex > 2)
- CHStepIndex = 0;
- var num2 = (double) (checked ((long) Math.Round(unchecked (num1 * numArray[CHStepIndex]))) / 10L);
- return !(publicva.RxFreqRang[FreqRangID, 1] >= num2 & num2 >= publicva.RxFreqRang[FreqRangID, 0]) ? "" : (object) string.Format("{0:#00.00000}", num2 / 100000.0);
- }
-
- public object Get_TxFreqStr(int Address, int FreqRangID, int CHStepIndex)
- {
- var numArray = new double[3]
- {
- 5000.0,
- 6250.0,
- 2500.0
- };
- var num = (double) (checked ((long) Math.Round(unchecked (checked (publicva.EEPROM_Byte[Address + 0] * 65536) + (double) checked (publicva.EEPROM_Byte[Address + 1] * 256) + checked (publicva.EEPROM_Byte[Address + 2] * 1) * numArray[CHStepIndex]))) / 10L);
- return !(checked (publicva.RxFreqRang[FreqRangID, 1] - publicva.RxFreqRang[FreqRangID, 0]) >= num & num >= 0.0) ? "" : (object) string.Format("{0:##0.00000}", num / 100000.0);
- }
-
- public void Set_FreqData(int Address, string FreqStr)
- {
- var numArray = new double[3]
- {
- 5000.0,
- 6250.0,
- 2500.0
- };
- double Freq;
- try
- {
- Freq = Conversions.ToDouble(FreqStr);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- Freq = 0.0;
- ProjectData.ClearProjectError();
- }
- var integer = Conversions.ToInteger(Get_FreqStepFlag(Freq));
- var a = (double) (checked ((long) Math.Round(unchecked (Freq * 1000000.0))) / checked ((long) Math.Round(numArray[integer])));
- publicva.EEPROM_Byte[checked (Address + 0)] = checked ((byte) (((long) Math.Round(a) & 16711680L) >> 16));
- publicva.EEPROM_Byte[checked (Address + 1)] = checked ((byte) (((long) Math.Round(a) & 65280L) >> 8));
- publicva.EEPROM_Byte[checked (Address + 2)] = checked ((byte) (((long) Math.Round(a) & byte.MaxValue) >> 0));
- }
-
- public object Get_FreqStepFlag(double Freq)
- {
- var num = checked ((uint) Math.Round(unchecked (Freq * 1000000.0)));
- if (num % 5000L == 0L)
- return 0;
- if (num % 6250L == 0L)
- return 1;
- return num % 2500L == 0L ? 2 : (object) 0;
- }
-
- public object Get_FreqRangID(double Freq)
- {
- var numArray = new byte[7]
- {
- publicva.Bit0,
- publicva.Bit1,
- publicva.Bit2,
- publicva.Bit3,
- publicva.Bit4,
- publicva.Bit5,
- publicva.Bit6
- };
- var num = checked ((uint) Math.Round(unchecked (Freq * 100000.0)));
- uint freqRangId = 0;
- while (!(publicva.RxFreqRang[checked ((int) freqRangId), 1] >= num & num >= publicva.RxFreqRang[checked ((int) freqRangId), 0]) || (publicva.EEPROM_Byte[12] & (uint) numArray[checked ((int) freqRangId)]) > 0U)
- {
- checked { ++freqRangId; }
- if (freqRangId > 6U)
- return -1;
- }
- return freqRangId;
- }
-
- public object JudgeInputRxFreq(string StrFreq, bool msg)
- {
- string str;
- try
- {
- var Freq = Conversions.ToDouble(StrFreq);
- if (Conversions.ToInteger(Get_FreqRangID(Freq)) != -1)
- {
- var num1 = checked ((uint) Math.Round(unchecked (Freq * 1000000.0)));
- if (num1 % 6250L != 0L && num1 % 5000L != 0L && num1 % 2500L != 0L)
- {
- var num2 = checked ((int) unchecked (num1 / 5000L));
- if (num1 % 5000L > 10000L)
- checked { ++num2; }
- num1 = checked ((uint) (num2 * 5000));
- }
- str = string.Format("{0:#00.00000}", num1 / 1000000.0);
- }
- else
- {
- if (msg)
- Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- }
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- if (msg)
- Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- ProjectData.ClearProjectError();
- }
- return str;
- }
-
- public object JudgeInputTxFreq(string RxFreq, string StrFreq, bool msg)
- {
- string str;
- try
- {
- var Freq = Conversions.ToDouble(RxFreq);
- var num1 = Conversions.ToDouble(StrFreq);
- var integer = Conversions.ToInteger(Get_FreqRangID(Freq));
- if (integer != -1)
- {
- var num2 = checked (publicva.RxFreqRang[integer, 1] - publicva.RxFreqRang[integer, 0]);
- uint num3 = 0;
- var num4 = checked ((uint) Math.Round(unchecked (num1 * 100000.0)));
- if (num2 >= num4 & num4 >= num3)
- {
- if (num4 % 625L != 0L && num4 % 500L != 0L && num4 % 250L != 0L)
+ publicva.Bit0,
+ publicva.Bit1,
+ publicva.Bit2,
+ publicva.Bit3,
+ publicva.Bit4,
+ publicva.Bit5,
+ publicva.Bit6
+ };
+ var num = checked((uint) Math.Round(unchecked(freq * 100000.0)));
+ uint freqRangId = 0;
+ while (!(publicva.RxFreqRang[checked((int) freqRangId), 1] >= num & num >= publicva.RxFreqRang[checked((int) freqRangId), 0]) ||
+ (publicva.EEPROM_Byte[12] & (uint) numArray[checked((int) freqRangId)]) > 0U)
{
- var num5 = checked ((int) unchecked (num4 / 500L));
- if (num4 % 500L > 1000L)
- checked { ++num5; }
- num4 = checked ((uint) (num5 * 500));
+ checked
+ {
+ ++freqRangId;
+ }
+
+ if (freqRangId > 6U)
+ return -1;
}
- str = string.Format("{0:##0.00000}", num4 / 100000.0);
- }
- else
- {
- if (msg)
- Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "0.00000";
- }
+
+ return freqRangId;
}
- else
+
+ public object JudgeInputRxFreq(string strFreq, bool msg)
{
- if (msg)
- Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
+ string str;
+ try
+ {
+ var Freq = Conversions.ToDouble(strFreq);
+ if (Conversions.ToInteger(Get_FreqRangID(Freq)) != -1)
+ {
+ var num1 = checked((uint) Math.Round(unchecked(Freq * 1000000.0)));
+ if (num1 % 6250L != 0L && num1 % 5000L != 0L && num1 % 2500L != 0L)
+ {
+ var num2 = checked((int) unchecked(num1 / 5000L));
+ if (num1 % 5000L > 10000L)
+ checked
+ {
+ ++num2;
+ }
+
+ num1 = checked((uint) (num2 * 5000));
+ }
+
+ str = $"{num1 / 1000000.0:#00.00000}";
+ }
+ else
+ {
+ if (msg)
+ Msgbox_Msg("Frequency out of range");
+ str = "";
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ if (msg)
+ Msgbox_Msg("Frequency out of range");
+ str = "";
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
}
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- if (msg)
- Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "0.00000";
- ProjectData.ClearProjectError();
- }
- return str;
- }
- public void Msgbox_Msg(string Zh_Msg, string En_Msg)
- {
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- var num1 = (int) Interaction.MsgBox(Zh_Msg, MsgBoxStyle.Exclamation, publicva.TypeName);
- }
- else
- {
- var num2 = (int) Interaction.MsgBox(En_Msg, MsgBoxStyle.Exclamation, publicva.TypeName);
- }
- }
-
- public void CHStatusList_Write(int CHNo, string COM, int Address)
- {
- var numArray = new byte[8]
- {
- 1,
- 2,
- 4,
- 8,
- 16,
- 32,
- 64,
- 128
- };
- checked { Address += CHNo >> 3; }
- if (Operators.CompareString(COM, "添加", false) == 0)
- {
- publicva.EEPROM_Byte[Address] = (byte) (publicva.EEPROM_Byte[Address] & ~numArray[CHNo & 7]);
- }
- else
- {
- if (Operators.CompareString(COM, "删除", false) != 0)
- return;
- publicva.EEPROM_Byte[Address] = (byte) (publicva.EEPROM_Byte[Address] | numArray[CHNo & 7]);
- }
- }
-
- public bool CHStatus_Read(int CHNo, int Address)
- {
- var numArray = new byte[8]
- {
- 1,
- 2,
- 4,
- 8,
- 16,
- 32,
- 64,
- 128
- };
- checked { Address += CHNo >> 3; }
- return (publicva.EEPROM_Byte[Address] & (uint) numArray[CHNo & 7]) <= 0U;
- }
-
- public object Get_CHAddress(int i)
- {
- return i <= 511 ? checked (i * 32 + 8192) : checked ((i - 512) * 32 + 7936);
- }
-
- public void Clr_Channel(int i)
- {
- if (i > 511)
- {
- switch (i)
+ public object JudgeInputTxFreq(string RxFreq, string StrFreq, bool msg)
{
- case 512:
- Init_Channel("146.00000", i);
- break;
- case 513:
- Init_Channel("440.00000", i);
- break;
- case 514:
- Init_Channel("146.00000", i);
- break;
- case 515:
- Init_Channel("440.00000", i);
- break;
+ string str;
+ try
+ {
+ var Freq = Conversions.ToDouble(RxFreq);
+ var num1 = Conversions.ToDouble(StrFreq);
+ var integer = Conversions.ToInteger(Get_FreqRangID(Freq));
+ if (integer != -1)
+ {
+ var num2 = checked(publicva.RxFreqRang[integer, 1] - publicva.RxFreqRang[integer, 0]);
+ uint num3 = 0;
+ var num4 = checked((uint) Math.Round(unchecked(num1 * 100000.0)));
+ if (num2 >= num4 & num4 >= num3)
+ {
+ if (num4 % 625L != 0L && num4 % 500L != 0L && num4 % 250L != 0L)
+ {
+ var num5 = checked((int) unchecked(num4 / 500L));
+ if (num4 % 500L > 1000L)
+ checked
+ {
+ ++num5;
+ }
+
+ num4 = checked((uint) (num5 * 500));
+ }
+
+ str = $"{num4 / 100000.0:##0.00000}";
+ }
+ else
+ {
+ if (msg)
+ Msgbox_Msg("Frequency out of range");
+ str = "0.00000";
+ }
+ }
+ else
+ {
+ if (msg)
+ Msgbox_Msg("Frequency out of range");
+ str = "";
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ if (msg)
+ Msgbox_Msg("Frequency out of range");
+ str = "0.00000";
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
}
- }
- else
- {
- ChannelMsgDataGridView["ColumnRxFreq", i].Value = "";
- ChannelMsgDataGridView["Column差频方向", i].Value = "";
- ChannelMsgDataGridView["ColumnTxFreq", i].Value = "";
- ChannelMsgDataGridView["Column亚音解码类型", i].Value = "";
- ChannelMsgDataGridView["Column亚音解码", i].Value = "";
- ChannelMsgDataGridView["Column亚音编码类型", i].Value = "";
- ChannelMsgDataGridView["Column亚音编码", i].Value = "";
- ChannelMsgDataGridView["Column发射功率", i].Value = "";
- ChannelMsgDataGridView["Column扫描添加", i].Value = "";
- ChannelMsgDataGridView["Column带宽", i].Value = "";
- ChannelMsgDataGridView["Column可选信令", i].Value = "";
- }
- }
- public void Init_Channel(string Freq, int i)
- {
- ChannelMsgDataGridView["ColumnRxFreq", i].Value = Freq;
- ChannelMsgDataGridView["Column差频方向", i].Value = RuntimeHelpers.GetObjectValue(Column差频方向.Items[0]);
- ChannelMsgDataGridView["ColumnTxFreq", i].Value = Conversions.ToDouble(Freq) <= 300.0 ? "0.60000" : (object) "5.00000";
- ChannelMsgDataGridView["Column亚音解码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音解码类型.Items[0]);
- ChannelMsgDataGridView["Column亚音解码", i].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
- ChannelMsgDataGridView["Column亚音编码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音编码类型.Items[0]);
- ChannelMsgDataGridView["Column亚音编码", i].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
- ChannelMsgDataGridView["Column发射功率", i].Value = RuntimeHelpers.GetObjectValue(Column发射功率.Items[0]);
- ChannelMsgDataGridView["Column扫描添加", i].Value = RuntimeHelpers.GetObjectValue(Column扫描添加.Items[0]);
- ChannelMsgDataGridView["Column带宽", i].Value = RuntimeHelpers.GetObjectValue(Column带宽.Items[0]);
- ChannelMsgDataGridView["Column可选信令", i].Value = RuntimeHelpers.GetObjectValue(Column可选信令.Items[0]);
- var integer = Conversions.ToInteger(Get_CHAddress(i));
- publicva.EEPROM_Byte[checked (integer + 6)] = 6;
- publicva.EEPROM_Byte[checked (integer + 9)] = (byte) (publicva.EEPROM_Byte[checked (integer + 9)] | publicva.Bit6);
- publicva.EEPROM_Byte[checked (integer + 11)] = 0;
- publicva.EEPROM_Byte[checked (integer + 12)] = 0;
- publicva.EEPROM_Byte[checked (integer + 13)] = 0;
- publicva.EEPROM_Byte[checked (integer + 14)] = 0;
- publicva.EEPROM_Byte[checked (integer + 15)] = 0;
- publicva.EEPROM_Byte[checked (integer + 16)] = 1;
- publicva.EEPROM_Byte[checked (integer + 17)] = 0;
- publicva.EEPROM_Byte[checked (integer + 18)] = 0;
- publicva.EEPROM_Byte[checked (integer + 19)] = 0;
- publicva.EEPROM_Byte[checked (integer + 20)] = 0;
- publicva.EEPROM_Byte[checked (integer + 21)] = 0;
- publicva.EEPROM_Byte[checked (integer + 22)] = 0;
- publicva.EEPROM_Byte[checked (integer + 23)] = 0;
- publicva.EEPROM_Byte[checked (integer + 24)] = 0;
- publicva.EEPROM_Byte[checked (integer + 25)] = 0;
- publicva.EEPROM_Byte[checked (integer + 26)] = 45;
- publicva.EEPROM_Byte[checked (integer + 27)] = 45;
- publicva.EEPROM_Byte[checked (integer + 28)] = 45;
- publicva.EEPROM_Byte[checked (integer + 29)] = 45;
- publicva.EEPROM_Byte[checked (integer + 30)] = 45;
- publicva.EEPROM_Byte[checked (integer + 31)] = 45;
- }
+ public void Msgbox_Msg(string En_Msg)
+ {
+ var num2 = (int) Interaction.MsgBox(En_Msg, MsgBoxStyle.Exclamation, publicva.TypeName);
+ }
- private void Button1_Click(object sender, EventArgs e) => Close();
- }
-}
+ public void CHStatusList_Write(int CHNo, string COM, int Address)
+ {
+ var numArray = new byte[8]
+ {
+ 1,
+ 2,
+ 4,
+ 8,
+ 16,
+ 32,
+ 64,
+ 128
+ };
+ checked
+ {
+ Address += CHNo >> 3;
+ }
+
+ if (Operators.CompareString(COM, "添加", false) == 0)
+ {
+ publicva.EEPROM_Byte[Address] = (byte) (publicva.EEPROM_Byte[Address] & ~numArray[CHNo & 7]);
+ }
+ else
+ {
+ if (Operators.CompareString(COM, "删除", false) != 0)
+ return;
+ publicva.EEPROM_Byte[Address] = (byte) (publicva.EEPROM_Byte[Address] | numArray[CHNo & 7]);
+ }
+ }
+
+ public bool CHStatus_Read(int CHNo, int Address)
+ {
+ var numArray = new byte[8]
+ {
+ 1,
+ 2,
+ 4,
+ 8,
+ 16,
+ 32,
+ 64,
+ 128
+ };
+ checked
+ {
+ Address += CHNo >> 3;
+ }
+
+ return (publicva.EEPROM_Byte[Address] & (uint) numArray[CHNo & 7]) <= 0U;
+ }
+
+ public object Get_CHAddress(int i)
+ {
+ return i <= 511 ? checked(i * 32 + 8192) : checked((i - 512) * 32 + 7936);
+ }
+
+ public void Clr_Channel(int i)
+ {
+ if (i > 511)
+ {
+ switch (i)
+ {
+ case 512:
+ Init_Channel("146.00000", i);
+ break;
+ case 513:
+ Init_Channel("440.00000", i);
+ break;
+ case 514:
+ Init_Channel("146.00000", i);
+ break;
+ case 515:
+ Init_Channel("440.00000", i);
+ break;
+ }
+ }
+ else
+ {
+ ChannelMsgDataGridView["ColumnRxFreq", i].Value = "";
+ ChannelMsgDataGridView["Column差频方向", i].Value = "";
+ ChannelMsgDataGridView["ColumnTxFreq", i].Value = "";
+ ChannelMsgDataGridView["Column亚音解码类型", i].Value = "";
+ ChannelMsgDataGridView["Column亚音解码", i].Value = "";
+ ChannelMsgDataGridView["Column亚音编码类型", i].Value = "";
+ ChannelMsgDataGridView["Column亚音编码", i].Value = "";
+ ChannelMsgDataGridView["Column发射功率", i].Value = "";
+ ChannelMsgDataGridView["Column扫描添加", i].Value = "";
+ ChannelMsgDataGridView["Column带宽", i].Value = "";
+ ChannelMsgDataGridView["Column可选信令", i].Value = "";
+ }
+ }
+
+ public void Init_Channel(string Freq, int i)
+ {
+ ChannelMsgDataGridView["ColumnRxFreq", i].Value = Freq;
+ ChannelMsgDataGridView["Column差频方向", i].Value = RuntimeHelpers.GetObjectValue(Column差频方向.Items[0]);
+ ChannelMsgDataGridView["ColumnTxFreq", i].Value = Conversions.ToDouble(Freq) <= 300.0 ? "0.60000" : (object) "5.00000";
+ ChannelMsgDataGridView["Column亚音解码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音解码类型.Items[0]);
+ ChannelMsgDataGridView["Column亚音解码", i].Value = RuntimeHelpers.GetObjectValue(Column亚音解码.Items[0]);
+ ChannelMsgDataGridView["Column亚音编码类型", i].Value = RuntimeHelpers.GetObjectValue(Column亚音编码类型.Items[0]);
+ ChannelMsgDataGridView["Column亚音编码", i].Value = RuntimeHelpers.GetObjectValue(Column亚音编码.Items[0]);
+ ChannelMsgDataGridView["Column发射功率", i].Value = RuntimeHelpers.GetObjectValue(Column发射功率.Items[0]);
+ ChannelMsgDataGridView["Column扫描添加", i].Value = RuntimeHelpers.GetObjectValue(Column扫描添加.Items[0]);
+ ChannelMsgDataGridView["Column带宽", i].Value = RuntimeHelpers.GetObjectValue(Column带宽.Items[0]);
+ ChannelMsgDataGridView["Column可选信令", i].Value = RuntimeHelpers.GetObjectValue(Column可选信令.Items[0]);
+ var integer = Conversions.ToInteger(Get_CHAddress(i));
+ publicva.EEPROM_Byte[checked(integer + 6)] = 6;
+ publicva.EEPROM_Byte[checked(integer + 9)] = (byte) (publicva.EEPROM_Byte[checked(integer + 9)] | publicva.Bit6);
+ publicva.EEPROM_Byte[checked(integer + 11)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 12)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 13)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 14)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 15)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 16)] = 1;
+ publicva.EEPROM_Byte[checked(integer + 17)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 18)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 19)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 20)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 21)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 22)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 23)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 24)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 25)] = 0;
+ publicva.EEPROM_Byte[checked(integer + 26)] = 45;
+ publicva.EEPROM_Byte[checked(integer + 27)] = 45;
+ publicva.EEPROM_Byte[checked(integer + 28)] = 45;
+ publicva.EEPROM_Byte[checked(integer + 29)] = 45;
+ publicva.EEPROM_Byte[checked(integer + 30)] = 45;
+ publicva.EEPROM_Byte[checked(integer + 31)] = 45;
+ }
+
+ private void Button1_Click(object sender, EventArgs e) => Close();
+ }
+}
\ No newline at end of file
diff --git a/HPG-68D/ComForm.cs b/HPG-68D/ComForm.cs
index 3a9df7b..53b85f3 100644
--- a/HPG-68D/ComForm.cs
+++ b/HPG-68D/ComForm.cs
@@ -8,195 +8,198 @@ using HPG_68D.My;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.Collections;
-using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class ComForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("ComboBox1")]
- private ComboBox _ComboBox1;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
-
- [DebuggerNonUserCode]
- static ComForm()
+ [DesignerGenerated]
+ public class ComForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("ComboBox1")]
+ private ComboBox _ComboBox1;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
- [DebuggerNonUserCode]
- public ComForm()
- {
- Load += ComForm_Load;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
+ [DebuggerNonUserCode]
+ static ComForm()
+ {
+ }
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
+ [DebuggerNonUserCode]
+ public ComForm()
+ {
+ Load += ComForm_Load;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
+ }
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (ComForm));
- Button2 = new Button();
- Button1 = new Button();
- ComboBox1 = new ComboBox();
- Label1 = new Label();
- SuspendLayout();
- Button2.AccessibleDescription = null;
- Button2.AccessibleName = null;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.BackgroundImage = null;
- Button2.Font = null;
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- Button1.AccessibleDescription = null;
- Button1.AccessibleName = null;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.BackgroundImage = null;
- Button1.Font = null;
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- ComboBox1.AccessibleDescription = null;
- ComboBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox1, "ComboBox1");
- ComboBox1.BackgroundImage = null;
- ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox1.Font = null;
- ComboBox1.FormattingEnabled = true;
- ComboBox1.Name = "ComboBox1";
- Label1.AccessibleDescription = null;
- Label1.AccessibleName = null;
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Font = null;
- Label1.Name = "Label1";
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- BackgroundImage = null;
- Controls.Add(Button2);
- Controls.Add(Button1);
- Controls.Add(ComboBox1);
- Controls.Add(Label1);
- Font = null;
- FormBorderStyle = FormBorderStyle.FixedDialog;
- MaximizeBox = false;
- MinimizeBox = false;
- Name = nameof (ComForm);
- ResumeLayout(false);
- PerformLayout();
- }
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
+ }
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button2 != null)
- _Button2.Click -= Button2_Click;
- _Button2 = value;
- if (_Button2 == null)
- return;
- _Button2.Click += Button2_Click;
- }
- }
+ [DebuggerStepThrough]
+ private void InitializeComponent()
+ {
+ var componentResourceManager = new ComponentResourceManager(typeof(ComForm));
+ Button2 = new Button();
+ Button1 = new Button();
+ ComboBox1 = new ComboBox();
+ Label1 = new Label();
+ SuspendLayout();
+ Button2.AccessibleDescription = null;
+ Button2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.BackgroundImage = null;
+ Button2.Font = null;
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ Button1.AccessibleDescription = null;
+ Button1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.BackgroundImage = null;
+ Button1.Font = null;
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ ComboBox1.AccessibleDescription = null;
+ ComboBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox1, "ComboBox1");
+ ComboBox1.BackgroundImage = null;
+ ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox1.Font = null;
+ ComboBox1.FormattingEnabled = true;
+ ComboBox1.Name = "ComboBox1";
+ Label1.AccessibleDescription = null;
+ Label1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Font = null;
+ Label1.Name = "Label1";
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ BackgroundImage = null;
+ Controls.Add(Button2);
+ Controls.Add(Button1);
+ Controls.Add(ComboBox1);
+ Controls.Add(Label1);
+ Font = null;
+ FormBorderStyle = FormBorderStyle.FixedDialog;
+ MaximizeBox = false;
+ MinimizeBox = false;
+ Name = nameof(ComForm);
+ ResumeLayout(false);
+ PerformLayout();
+ }
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button2 != null)
+ _Button2.Click -= Button2_Click;
+ _Button2 = value;
+ if (_Button2 == null)
+ return;
+ _Button2.Click += Button2_Click;
+ }
+ }
- internal virtual ComboBox ComboBox1
- {
- [DebuggerNonUserCode] get => _ComboBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox1 != null)
- _ComboBox1.MouseClick -= ComboBox1_MouseClick;
- _ComboBox1 = value;
- if (_ComboBox1 == null)
- return;
- _ComboBox1.MouseClick += ComboBox1_MouseClick;
- }
- }
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
+ internal virtual ComboBox ComboBox1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox1 != null)
+ _ComboBox1.MouseClick -= ComboBox1_MouseClick;
+ _ComboBox1 = value;
+ if (_ComboBox1 == null)
+ return;
+ _ComboBox1.MouseClick += ComboBox1_MouseClick;
+ }
+ }
- private void ComForm_Load(object sender, EventArgs e)
- {
- ComboBox1.SelectedIndex = checked ((int) publicva.COM_SelectIndex);
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- Label1.Text = "通信端口";
- else
- Label1.Text = "Port";
- }
+ internal virtual Label Label1
+ {
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
+ }
- private void ComboBox1_MouseClick(object sender, MouseEventArgs e)
- {
- var selectedIndex = ComboBox1.SelectedIndex;
- ComboBox1.Items.Clear();
- GetSerialPortNames();
- if (-1 == ComboBox1.FindString(ComboBox1.Text))
- ComboBox1.SelectedIndex = 0;
- else
- ComboBox1.SelectedIndex = selectedIndex;
- }
+ private void ComForm_Load(object sender, EventArgs e)
+ {
+ ComboBox1.SelectedIndex = checked((int) publicva.COM_SelectIndex);
+ Label1.Text = "Port";
+ }
- private void Button1_Click(object sender, EventArgs e) => Close();
+ private void ComboBox1_MouseClick(object sender, MouseEventArgs e)
+ {
+ var selectedIndex = ComboBox1.SelectedIndex;
+ ComboBox1.Items.Clear();
+ GetSerialPortNames();
+ if (-1 == ComboBox1.FindString(ComboBox1.Text))
+ ComboBox1.SelectedIndex = 0;
+ else
+ ComboBox1.SelectedIndex = selectedIndex;
+ }
- public void GetSerialPortNames()
- {
- try
- {
- foreach (object serialPortName in MyProject.Computer.Ports.SerialPortNames)
- ComboBox1.Items.Add(serialPortName);
- }
- finally
- {
- }
- if (ComboBox1.Items.Count >= 1)
- return;
- ComboBox1.Items.Add("COM1");
- }
+ private void Button1_Click(object sender, EventArgs e) => Close();
- private void Button2_Click(object sender, EventArgs e)
- {
- publicva.COM_SelectIndex = checked ((uint) ComboBox1.SelectedIndex);
- MyProject.Forms.MDIParent1.SerialPort1.PortName = ComboBox1.Text;
- Close();
+ public void GetSerialPortNames()
+ {
+ try
+ {
+ foreach (object serialPortName in MyProject.Computer.Ports.SerialPortNames)
+ ComboBox1.Items.Add(serialPortName);
+ }
+ finally
+ {
+ }
+
+ if (ComboBox1.Items.Count >= 1)
+ return;
+ ComboBox1.Items.Add("COM1");
+ }
+
+ private void Button2_Click(object sender, EventArgs e)
+ {
+ publicva.COM_SelectIndex = checked((uint) ComboBox1.SelectedIndex);
+ MyProject.Forms.MDIParent1.SerialPort1.PortName = ComboBox1.Text;
+ Close();
+ }
}
- }
-}
+}
\ No newline at end of file
diff --git a/HPG-68D/Config.hpg b/HPG-68D/Config.hpg
new file mode 100644
index 0000000..beb9970
--- /dev/null
+++ b/HPG-68D/Config.hpg
@@ -0,0 +1 @@
+en-US
diff --git a/HPG-68D/DtmfForm.cs b/HPG-68D/DtmfForm.cs
index f09c729..e005ac9 100644
--- a/HPG-68D/DtmfForm.cs
+++ b/HPG-68D/DtmfForm.cs
@@ -1399,7 +1399,7 @@ namespace HPG_68D
{
var address = 4032;
GetDTMF_Code(address, TextBox1.Text);
- publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox1.Text.ToString().Length);
+ publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox1.Text.Length);
}
private void TextBox2_KeyPress(object sender, KeyPressEventArgs e)
@@ -1418,7 +1418,7 @@ namespace HPG_68D
{
var address = 4048;
GetDTMF_Code(address, TextBox2.Text);
- publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox2.Text.ToString().Length);
+ publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox2.Text.Length);
}
private void TextBox3_KeyPress(object sender, KeyPressEventArgs e)
@@ -1437,7 +1437,7 @@ namespace HPG_68D
{
var address = 4064;
GetDTMF_Code(address, TextBox3.Text);
- publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox3.Text.ToString().Length);
+ publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox3.Text.Length);
}
private void TextBox4_KeyPress(object sender, KeyPressEventArgs e)
@@ -1456,7 +1456,7 @@ namespace HPG_68D
{
var address = 4080;
GetDTMF_Code(address, TextBox4.Text);
- publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox4.Text.ToString().Length);
+ publicva.EEPROM_Byte[checked (address + 12)] = checked ((byte) TextBox4.Text.Length);
}
}
}
diff --git a/HPG-68D/HPG-68D.csproj b/HPG-68D/HPG-68D.csproj
index 30f9e51..7f8016f 100644
--- a/HPG-68D/HPG-68D.csproj
+++ b/HPG-68D/HPG-68D.csproj
@@ -7,7 +7,7 @@
{761C095A-01C0-445E-891B-951A94D4A5D7}
WinExe
HPG-68D
- v3.5
+ v4.8
1.0.0.0
512
HPG_68D
@@ -136,5 +136,13 @@
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
\ No newline at end of file
diff --git a/HPG-68D/HPG-68D.sln.DotSettings.user b/HPG-68D/HPG-68D.sln.DotSettings.user
index 0ede577..0b274e2 100644
--- a/HPG-68D/HPG-68D.sln.DotSettings.user
+++ b/HPG-68D/HPG-68D.sln.DotSettings.user
@@ -1,4 +1,43 @@
True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ True
True
\ No newline at end of file
diff --git a/HPG-68D/InputPasswordForm.cs b/HPG-68D/InputPasswordForm.cs
index 50a4dc1..ab39ea3 100644
--- a/HPG-68D/InputPasswordForm.cs
+++ b/HPG-68D/InputPasswordForm.cs
@@ -10,7 +10,6 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Forms;
diff --git a/HPG-68D/LanguageHelper.cs b/HPG-68D/LanguageHelper.cs
index 554b0f9..4fd7600 100644
--- a/HPG-68D/LanguageHelper.cs
+++ b/HPG-68D/LanguageHelper.cs
@@ -1,19 +1,10 @@
-// Decompiled with JetBrains decompiler
-// Type: HPG_68D.LanguageHelper
-// Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
-// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-
-using Microsoft.VisualBasic.CompilerServices;
+using Microsoft.VisualBasic.CompilerServices;
using System;
-using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Threading;
using System.Windows.Forms;
-using System.Windows.Forms.Layout;
-
namespace HPG_68D
{
diff --git a/HPG-68D/MDIParent1.cs b/HPG-68D/MDIParent1.cs
index 052c58b..97c7fa0 100644
--- a/HPG-68D/MDIParent1.cs
+++ b/HPG-68D/MDIParent1.cs
@@ -1,3267 +1,3418 @@
-// Decompiled with JetBrains decompiler
-// Type: HPG_68D.MDIParent1
-// Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
-// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-
-using HPG_68D.My;
+using HPG_68D.My;
using Microsoft.VisualBasic;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.IO;
using System.IO.Ports;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class MDIParent1 : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("ContentsToolStripMenuItem")]
- private ToolStripMenuItem _ContentsToolStripMenuItem;
- [AccessedThroughProperty("HelpMenu")]
- private ToolStripMenuItem _HelpMenu;
- [AccessedThroughProperty("IndexToolStripMenuItem")]
- private ToolStripMenuItem _IndexToolStripMenuItem;
- [AccessedThroughProperty("SearchToolStripMenuItem")]
- private ToolStripMenuItem _SearchToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator8")]
- private ToolStripSeparator _ToolStripSeparator8;
- [AccessedThroughProperty("AboutToolStripMenuItem")]
- private ToolStripMenuItem _AboutToolStripMenuItem;
- [AccessedThroughProperty("ArrangeIconsToolStripMenuItem")]
- private ToolStripMenuItem _ArrangeIconsToolStripMenuItem;
- [AccessedThroughProperty("CloseAllToolStripMenuItem")]
- private ToolStripMenuItem _CloseAllToolStripMenuItem;
- [AccessedThroughProperty("NewWindowToolStripMenuItem")]
- private ToolStripMenuItem _NewWindowToolStripMenuItem;
- [AccessedThroughProperty("WindowsMenu")]
- private ToolStripMenuItem _WindowsMenu;
- [AccessedThroughProperty("CascadeToolStripMenuItem")]
- private ToolStripMenuItem _CascadeToolStripMenuItem;
- [AccessedThroughProperty("TileVerticalToolStripMenuItem")]
- private ToolStripMenuItem _TileVerticalToolStripMenuItem;
- [AccessedThroughProperty("TileHorizontalToolStripMenuItem")]
- private ToolStripMenuItem _TileHorizontalToolStripMenuItem;
- [AccessedThroughProperty("OptionsToolStripMenuItem")]
- private ToolStripMenuItem _OptionsToolStripMenuItem;
- [AccessedThroughProperty("HelpToolStripButton")]
- private ToolStripButton _HelpToolStripButton;
- [AccessedThroughProperty("ToolStripSeparator2")]
- private ToolStripSeparator _ToolStripSeparator2;
- [AccessedThroughProperty("PrintPreviewToolStripButton")]
- private ToolStripButton _PrintPreviewToolStripButton;
- [AccessedThroughProperty("ToolTip")]
- private ToolTip _ToolTip;
- [AccessedThroughProperty("ToolStripStatusLabel")]
- private ToolStripStatusLabel _ToolStripStatusLabel;
- [AccessedThroughProperty("StatusStrip")]
- private StatusStrip _StatusStrip;
- [AccessedThroughProperty("PrintToolStripButton")]
- private ToolStripButton _PrintToolStripButton;
- [AccessedThroughProperty("NewToolStripButton")]
- private ToolStripButton _NewToolStripButton;
- [AccessedThroughProperty("ToolStrip")]
- private ToolStrip _ToolStrip;
- [AccessedThroughProperty("OpenToolStripButton")]
- private ToolStripButton _OpenToolStripButton;
- [AccessedThroughProperty("SaveToolStripButton")]
- private ToolStripButton _SaveToolStripButton;
- [AccessedThroughProperty("ToolStripSeparator1")]
- private ToolStripSeparator _ToolStripSeparator1;
- [AccessedThroughProperty("PrintPreviewToolStripMenuItem")]
- private ToolStripMenuItem _PrintPreviewToolStripMenuItem;
- [AccessedThroughProperty("PrintToolStripMenuItem")]
- private ToolStripMenuItem _PrintToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator4")]
- private ToolStripSeparator _ToolStripSeparator4;
- [AccessedThroughProperty("ExitToolStripMenuItem")]
- private ToolStripMenuItem _ExitToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator5")]
- private ToolStripSeparator _ToolStripSeparator5;
- [AccessedThroughProperty("PrintSetupToolStripMenuItem")]
- private ToolStripMenuItem _PrintSetupToolStripMenuItem;
- [AccessedThroughProperty("SaveAsToolStripMenuItem")]
- private ToolStripMenuItem _SaveAsToolStripMenuItem;
- [AccessedThroughProperty("NewToolStripMenuItem")]
- private ToolStripMenuItem _NewToolStripMenuItem;
- [AccessedThroughProperty("FileMenu")]
- private ToolStripMenuItem _FileMenu;
- [AccessedThroughProperty("OpenToolStripMenuItem")]
- private ToolStripMenuItem _OpenToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator3")]
- private ToolStripSeparator _ToolStripSeparator3;
- [AccessedThroughProperty("SaveToolStripMenuItem")]
- private ToolStripMenuItem _SaveToolStripMenuItem;
- [AccessedThroughProperty("MenuStrip")]
- private MenuStrip _MenuStrip;
- [AccessedThroughProperty("EditMenu")]
- private ToolStripMenuItem _EditMenu;
- [AccessedThroughProperty("UndoToolStripMenuItem")]
- private ToolStripMenuItem _UndoToolStripMenuItem;
- [AccessedThroughProperty("RedoToolStripMenuItem")]
- private ToolStripMenuItem _RedoToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator6")]
- private ToolStripSeparator _ToolStripSeparator6;
- [AccessedThroughProperty("CutToolStripMenuItem")]
- private ToolStripMenuItem _CutToolStripMenuItem;
- [AccessedThroughProperty("CopyToolStripMenuItem")]
- private ToolStripMenuItem _CopyToolStripMenuItem;
- [AccessedThroughProperty("PasteToolStripMenuItem")]
- private ToolStripMenuItem _PasteToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator7")]
- private ToolStripSeparator _ToolStripSeparator7;
- [AccessedThroughProperty("SelectAllToolStripMenuItem")]
- private ToolStripMenuItem _SelectAllToolStripMenuItem;
- [AccessedThroughProperty("ViewMenu")]
- private ToolStripMenuItem _ViewMenu;
- [AccessedThroughProperty("ToolBarToolStripMenuItem")]
- private ToolStripMenuItem _ToolBarToolStripMenuItem;
- [AccessedThroughProperty("StatusBarToolStripMenuItem")]
- private ToolStripMenuItem _StatusBarToolStripMenuItem;
- [AccessedThroughProperty("ToolsMenu")]
- private ToolStripMenuItem _ToolsMenu;
- [AccessedThroughProperty("TypeMenu")]
- private ToolStripMenuItem _TypeMenu;
- [AccessedThroughProperty("机型信息MToolStripMenuItem")]
- private ToolStripMenuItem _机型信息MToolStripMenuItem;
- [AccessedThroughProperty("EditMenuList")]
- private ToolStripMenuItem _EditMenuList;
- [AccessedThroughProperty("信道信息CToolStripMenuItem")]
- private ToolStripMenuItem _信道信息CToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator9")]
- private ToolStripSeparator _ToolStripSeparator9;
- [AccessedThroughProperty("整机信息OToolStripMenuItem")]
- private ToolStripMenuItem _整机信息OToolStripMenuItem;
- [AccessedThroughProperty("扫描信息SToolStripMenuItem")]
- private ToolStripMenuItem _扫描信息SToolStripMenuItem;
- [AccessedThroughProperty("提示音AToolStripMenuItem")]
- private ToolStripMenuItem _提示音AToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator10")]
- private ToolStripSeparator _ToolStripSeparator10;
- [AccessedThroughProperty("双音多频DToolStripMenuItem")]
- private ToolStripMenuItem _双音多频DToolStripMenuItem;
- [AccessedThroughProperty("两音TToolStripMenuItem")]
- private ToolStripMenuItem _两音TToolStripMenuItem;
- [AccessedThroughProperty("五音FToolStripMenuItem")]
- private ToolStripMenuItem _五音FToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator11")]
- private ToolStripSeparator _ToolStripSeparator11;
- [AccessedThroughProperty("紧急报警信息EToolStripMenuItem")]
- private ToolStripMenuItem _紧急报警信息EToolStripMenuItem;
- [AccessedThroughProperty("收音机存储信道JToolStripMenuItem")]
- private ToolStripMenuItem _收音机存储信道JToolStripMenuItem;
- [AccessedThroughProperty("嵌入信息IToolStripMenuItem")]
- private ToolStripMenuItem _嵌入信息IToolStripMenuItem;
- [AccessedThroughProperty("对讲机信息RToolStripMenuItem")]
- private ToolStripMenuItem _对讲机信息RToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator12")]
- private ToolStripSeparator _ToolStripSeparator12;
- [AccessedThroughProperty("ProgrammeMenu")]
- private ToolStripMenuItem _ProgrammeMenu;
- [AccessedThroughProperty("从对讲机读取数据RToolStripMenuItem")]
- private ToolStripMenuItem _从对讲机读取数据RToolStripMenuItem;
- [AccessedThroughProperty("向对讲机写入数据WToolStripMenuItem")]
- private ToolStripMenuItem _向对讲机写入数据WToolStripMenuItem;
- [AccessedThroughProperty("SetMenu")]
- private ToolStripMenuItem _SetMenu;
- [AccessedThroughProperty("语言设置LToolStripMenuItem")]
- private ToolStripMenuItem _语言设置LToolStripMenuItem;
- [AccessedThroughProperty("通信端口PToolStripMenuItem")]
- private ToolStripMenuItem _通信端口PToolStripMenuItem;
- [AccessedThroughProperty("更改密码CToolStripMenuItem")]
- private ToolStripMenuItem _更改密码CToolStripMenuItem;
- [AccessedThroughProperty("TreeViewToolStripMenuItem")]
- private ToolStripMenuItem _TreeViewToolStripMenuItem;
- [AccessedThroughProperty("ToolStripSeparator13")]
- private ToolStripSeparator _ToolStripSeparator13;
- [AccessedThroughProperty("ToolStripSeparator14")]
- private ToolStripSeparator _ToolStripSeparator14;
- [AccessedThroughProperty("帮助主题HToolStripMenuItem")]
- private ToolStripMenuItem _帮助主题HToolStripMenuItem;
- [AccessedThroughProperty("Panel1")]
- private Panel _Panel1;
- [AccessedThroughProperty("EditMenuListTreeView")]
- private TreeView _EditMenuListTreeView;
- [AccessedThroughProperty("ToolStripSeparator15")]
- private ToolStripSeparator _ToolStripSeparator15;
- [AccessedThroughProperty("SerialPort1")]
- private SerialPort _SerialPort1;
- [AccessedThroughProperty("Timer1")]
- private System.Windows.Forms.Timer _Timer1;
- [AccessedThroughProperty("ReadToolStripButton")]
- private ToolStripButton _ReadToolStripButton;
- [AccessedThroughProperty("ComPortToolStripButton")]
- private ToolStripButton _ComPortToolStripButton;
- [AccessedThroughProperty("WriteToolStripButton")]
- private ToolStripButton _WriteToolStripButton;
- [AccessedThroughProperty("ToolStripSeparator16")]
- private ToolStripSeparator _ToolStripSeparator16;
- [AccessedThroughProperty("中文ToolStripMenuItem")]
- private ToolStripMenuItem _中文ToolStripMenuItem;
- [AccessedThroughProperty("英文ToolStripMenuItem")]
- private ToolStripMenuItem _英文ToolStripMenuItem;
- private int m_ChildFormNumber;
-
- [DebuggerNonUserCode]
- static MDIParent1()
- {
- }
-
- public MDIParent1()
- {
- Load += MDIParent1_Load;
- __ENCList.Add(new WeakReference(this));
- m_ChildFormNumber = 0;
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- components = new Container();
- var componentResourceManager = new ComponentResourceManager(typeof (MDIParent1));
- MenuStrip = new MenuStrip();
- FileMenu = new ToolStripMenuItem();
- NewToolStripMenuItem = new ToolStripMenuItem();
- OpenToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator3 = new ToolStripSeparator();
- SaveToolStripMenuItem = new ToolStripMenuItem();
- SaveAsToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator4 = new ToolStripSeparator();
- PrintToolStripMenuItem = new ToolStripMenuItem();
- PrintPreviewToolStripMenuItem = new ToolStripMenuItem();
- PrintSetupToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator5 = new ToolStripSeparator();
- ExitToolStripMenuItem = new ToolStripMenuItem();
- TypeMenu = new ToolStripMenuItem();
- 机型信息MToolStripMenuItem = new ToolStripMenuItem();
- EditMenuList = new ToolStripMenuItem();
- 信道信息CToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator9 = new ToolStripSeparator();
- 整机信息OToolStripMenuItem = new ToolStripMenuItem();
- 扫描信息SToolStripMenuItem = new ToolStripMenuItem();
- 提示音AToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator10 = new ToolStripSeparator();
- 双音多频DToolStripMenuItem = new ToolStripMenuItem();
- 两音TToolStripMenuItem = new ToolStripMenuItem();
- 五音FToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator11 = new ToolStripSeparator();
- 紧急报警信息EToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator15 = new ToolStripSeparator();
- 收音机存储信道JToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator12 = new ToolStripSeparator();
- 嵌入信息IToolStripMenuItem = new ToolStripMenuItem();
- 对讲机信息RToolStripMenuItem = new ToolStripMenuItem();
- ProgrammeMenu = new ToolStripMenuItem();
- 从对讲机读取数据RToolStripMenuItem = new ToolStripMenuItem();
- 向对讲机写入数据WToolStripMenuItem = new ToolStripMenuItem();
- SetMenu = new ToolStripMenuItem();
- 语言设置LToolStripMenuItem = new ToolStripMenuItem();
- 中文ToolStripMenuItem = new ToolStripMenuItem();
- 英文ToolStripMenuItem = new ToolStripMenuItem();
- 通信端口PToolStripMenuItem = new ToolStripMenuItem();
- 更改密码CToolStripMenuItem = new ToolStripMenuItem();
- ViewMenu = new ToolStripMenuItem();
- TreeViewToolStripMenuItem = new ToolStripMenuItem();
- ToolBarToolStripMenuItem = new ToolStripMenuItem();
- StatusBarToolStripMenuItem = new ToolStripMenuItem();
- WindowsMenu = new ToolStripMenuItem();
- NewWindowToolStripMenuItem = new ToolStripMenuItem();
- CascadeToolStripMenuItem = new ToolStripMenuItem();
- TileVerticalToolStripMenuItem = new ToolStripMenuItem();
- TileHorizontalToolStripMenuItem = new ToolStripMenuItem();
- ArrangeIconsToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator13 = new ToolStripSeparator();
- CloseAllToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator14 = new ToolStripSeparator();
- HelpMenu = new ToolStripMenuItem();
- ContentsToolStripMenuItem = new ToolStripMenuItem();
- IndexToolStripMenuItem = new ToolStripMenuItem();
- SearchToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator8 = new ToolStripSeparator();
- 帮助主题HToolStripMenuItem = new ToolStripMenuItem();
- AboutToolStripMenuItem = new ToolStripMenuItem();
- EditMenu = new ToolStripMenuItem();
- UndoToolStripMenuItem = new ToolStripMenuItem();
- RedoToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator6 = new ToolStripSeparator();
- CutToolStripMenuItem = new ToolStripMenuItem();
- CopyToolStripMenuItem = new ToolStripMenuItem();
- PasteToolStripMenuItem = new ToolStripMenuItem();
- ToolStripSeparator7 = new ToolStripSeparator();
- SelectAllToolStripMenuItem = new ToolStripMenuItem();
- ToolsMenu = new ToolStripMenuItem();
- OptionsToolStripMenuItem = new ToolStripMenuItem();
- ToolStrip = new ToolStrip();
- NewToolStripButton = new ToolStripButton();
- OpenToolStripButton = new ToolStripButton();
- SaveToolStripButton = new ToolStripButton();
- ToolStripSeparator1 = new ToolStripSeparator();
- PrintToolStripButton = new ToolStripButton();
- PrintPreviewToolStripButton = new ToolStripButton();
- ToolStripSeparator2 = new ToolStripSeparator();
- ReadToolStripButton = new ToolStripButton();
- ComPortToolStripButton = new ToolStripButton();
- WriteToolStripButton = new ToolStripButton();
- ToolStripSeparator16 = new ToolStripSeparator();
- HelpToolStripButton = new ToolStripButton();
- StatusStrip = new StatusStrip();
- ToolStripStatusLabel = new ToolStripStatusLabel();
- ToolTip = new ToolTip(components);
- Panel1 = new Panel();
- EditMenuListTreeView = new TreeView();
- SerialPort1 = new SerialPort(components);
- Timer1 = new System.Windows.Forms.Timer(components);
- MenuStrip.SuspendLayout();
- ToolStrip.SuspendLayout();
- StatusStrip.SuspendLayout();
- Panel1.SuspendLayout();
- SuspendLayout();
- MenuStrip.AccessibleDescription = null;
- MenuStrip.AccessibleName = null;
- componentResourceManager.ApplyResources(MenuStrip, "MenuStrip");
- MenuStrip.BackgroundImage = null;
- MenuStrip.Font = null;
- MenuStrip.Items.AddRange(new ToolStripItem[10]
- {
- FileMenu,
- TypeMenu,
- EditMenuList,
- ProgrammeMenu,
- SetMenu,
- ViewMenu,
- WindowsMenu,
- HelpMenu,
- EditMenu,
- ToolsMenu
- });
- MenuStrip.MdiWindowListItem = WindowsMenu;
- MenuStrip.Name = "MenuStrip";
- ToolTip.SetToolTip(MenuStrip, componentResourceManager.GetString("MenuStrip.ToolTip"));
- FileMenu.AccessibleDescription = null;
- FileMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(FileMenu, "FileMenu");
- FileMenu.BackgroundImage = null;
- FileMenu.DropDownItems.AddRange(new ToolStripItem[11]
- {
- NewToolStripMenuItem,
- OpenToolStripMenuItem,
- ToolStripSeparator3,
- SaveToolStripMenuItem,
- SaveAsToolStripMenuItem,
- ToolStripSeparator4,
- PrintToolStripMenuItem,
- PrintPreviewToolStripMenuItem,
- PrintSetupToolStripMenuItem,
- ToolStripSeparator5,
- ExitToolStripMenuItem
- });
- FileMenu.Name = "FileMenu";
- FileMenu.ShortcutKeyDisplayString = null;
- NewToolStripMenuItem.AccessibleDescription = null;
- NewToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(NewToolStripMenuItem, "NewToolStripMenuItem");
- NewToolStripMenuItem.BackgroundImage = null;
- NewToolStripMenuItem.Name = "NewToolStripMenuItem";
- NewToolStripMenuItem.ShortcutKeyDisplayString = null;
- OpenToolStripMenuItem.AccessibleDescription = null;
- OpenToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(OpenToolStripMenuItem, "OpenToolStripMenuItem");
- OpenToolStripMenuItem.BackgroundImage = null;
- OpenToolStripMenuItem.Name = "OpenToolStripMenuItem";
- OpenToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator3.AccessibleDescription = null;
- ToolStripSeparator3.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator3, "ToolStripSeparator3");
- ToolStripSeparator3.Name = "ToolStripSeparator3";
- SaveToolStripMenuItem.AccessibleDescription = null;
- SaveToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(SaveToolStripMenuItem, "SaveToolStripMenuItem");
- SaveToolStripMenuItem.BackgroundImage = null;
- SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
- SaveToolStripMenuItem.ShortcutKeyDisplayString = null;
- SaveAsToolStripMenuItem.AccessibleDescription = null;
- SaveAsToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(SaveAsToolStripMenuItem, "SaveAsToolStripMenuItem");
- SaveAsToolStripMenuItem.BackgroundImage = null;
- SaveAsToolStripMenuItem.Name = "SaveAsToolStripMenuItem";
- SaveAsToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator4.AccessibleDescription = null;
- ToolStripSeparator4.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator4, "ToolStripSeparator4");
- ToolStripSeparator4.Name = "ToolStripSeparator4";
- PrintToolStripMenuItem.AccessibleDescription = null;
- PrintToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(PrintToolStripMenuItem, "PrintToolStripMenuItem");
- PrintToolStripMenuItem.BackgroundImage = null;
- PrintToolStripMenuItem.Name = "PrintToolStripMenuItem";
- PrintToolStripMenuItem.ShortcutKeyDisplayString = null;
- PrintPreviewToolStripMenuItem.AccessibleDescription = null;
- PrintPreviewToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(PrintPreviewToolStripMenuItem, "PrintPreviewToolStripMenuItem");
- PrintPreviewToolStripMenuItem.BackgroundImage = null;
- PrintPreviewToolStripMenuItem.Name = "PrintPreviewToolStripMenuItem";
- PrintPreviewToolStripMenuItem.ShortcutKeyDisplayString = null;
- PrintSetupToolStripMenuItem.AccessibleDescription = null;
- PrintSetupToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(PrintSetupToolStripMenuItem, "PrintSetupToolStripMenuItem");
- PrintSetupToolStripMenuItem.BackgroundImage = null;
- PrintSetupToolStripMenuItem.Name = "PrintSetupToolStripMenuItem";
- PrintSetupToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator5.AccessibleDescription = null;
- ToolStripSeparator5.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator5, "ToolStripSeparator5");
- ToolStripSeparator5.Name = "ToolStripSeparator5";
- ExitToolStripMenuItem.AccessibleDescription = null;
- ExitToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(ExitToolStripMenuItem, "ExitToolStripMenuItem");
- ExitToolStripMenuItem.BackgroundImage = null;
- ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
- ExitToolStripMenuItem.ShortcutKeyDisplayString = null;
- TypeMenu.AccessibleDescription = null;
- TypeMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(TypeMenu, "TypeMenu");
- TypeMenu.BackgroundImage = null;
- TypeMenu.DropDownItems.AddRange(new ToolStripItem[1]
- {
- 机型信息MToolStripMenuItem
- });
- TypeMenu.Name = "TypeMenu";
- TypeMenu.ShortcutKeyDisplayString = null;
- 机型信息MToolStripMenuItem.AccessibleDescription = null;
- 机型信息MToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(机型信息MToolStripMenuItem, "机型信息MToolStripMenuItem");
- 机型信息MToolStripMenuItem.BackgroundImage = null;
- 机型信息MToolStripMenuItem.Name = "机型信息MToolStripMenuItem";
- 机型信息MToolStripMenuItem.ShortcutKeyDisplayString = null;
- EditMenuList.AccessibleDescription = null;
- EditMenuList.AccessibleName = null;
- componentResourceManager.ApplyResources(EditMenuList, "EditMenuList");
- EditMenuList.BackgroundImage = null;
- EditMenuList.DropDownItems.AddRange(new ToolStripItem[16]
- {
- 信道信息CToolStripMenuItem,
- ToolStripSeparator9,
- 整机信息OToolStripMenuItem,
- 扫描信息SToolStripMenuItem,
- 提示音AToolStripMenuItem,
- ToolStripSeparator10,
- 双音多频DToolStripMenuItem,
- 两音TToolStripMenuItem,
- 五音FToolStripMenuItem,
- ToolStripSeparator11,
- 紧急报警信息EToolStripMenuItem,
- ToolStripSeparator15,
- 收音机存储信道JToolStripMenuItem,
- ToolStripSeparator12,
- 嵌入信息IToolStripMenuItem,
- 对讲机信息RToolStripMenuItem
- });
- EditMenuList.Name = "EditMenuList";
- EditMenuList.ShortcutKeyDisplayString = null;
- 信道信息CToolStripMenuItem.AccessibleDescription = null;
- 信道信息CToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(信道信息CToolStripMenuItem, "信道信息CToolStripMenuItem");
- 信道信息CToolStripMenuItem.BackgroundImage = null;
- 信道信息CToolStripMenuItem.Checked = true;
- 信道信息CToolStripMenuItem.CheckState = CheckState.Checked;
- 信道信息CToolStripMenuItem.Name = "信道信息CToolStripMenuItem";
- 信道信息CToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator9.AccessibleDescription = null;
- ToolStripSeparator9.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator9, "ToolStripSeparator9");
- ToolStripSeparator9.Name = "ToolStripSeparator9";
- 整机信息OToolStripMenuItem.AccessibleDescription = null;
- 整机信息OToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(整机信息OToolStripMenuItem, "整机信息OToolStripMenuItem");
- 整机信息OToolStripMenuItem.BackgroundImage = null;
- 整机信息OToolStripMenuItem.Name = "整机信息OToolStripMenuItem";
- 整机信息OToolStripMenuItem.ShortcutKeyDisplayString = null;
- 扫描信息SToolStripMenuItem.AccessibleDescription = null;
- 扫描信息SToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(扫描信息SToolStripMenuItem, "扫描信息SToolStripMenuItem");
- 扫描信息SToolStripMenuItem.BackgroundImage = null;
- 扫描信息SToolStripMenuItem.Name = "扫描信息SToolStripMenuItem";
- 扫描信息SToolStripMenuItem.ShortcutKeyDisplayString = null;
- 提示音AToolStripMenuItem.AccessibleDescription = null;
- 提示音AToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(提示音AToolStripMenuItem, "提示音AToolStripMenuItem");
- 提示音AToolStripMenuItem.BackgroundImage = null;
- 提示音AToolStripMenuItem.Name = "提示音AToolStripMenuItem";
- 提示音AToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator10.AccessibleDescription = null;
- ToolStripSeparator10.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator10, "ToolStripSeparator10");
- ToolStripSeparator10.Name = "ToolStripSeparator10";
- 双音多频DToolStripMenuItem.AccessibleDescription = null;
- 双音多频DToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(双音多频DToolStripMenuItem, "双音多频DToolStripMenuItem");
- 双音多频DToolStripMenuItem.BackgroundImage = null;
- 双音多频DToolStripMenuItem.Name = "双音多频DToolStripMenuItem";
- 双音多频DToolStripMenuItem.ShortcutKeyDisplayString = null;
- 两音TToolStripMenuItem.AccessibleDescription = null;
- 两音TToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(两音TToolStripMenuItem, "两音TToolStripMenuItem");
- 两音TToolStripMenuItem.BackgroundImage = null;
- 两音TToolStripMenuItem.Name = "两音TToolStripMenuItem";
- 两音TToolStripMenuItem.ShortcutKeyDisplayString = null;
- 五音FToolStripMenuItem.AccessibleDescription = null;
- 五音FToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(五音FToolStripMenuItem, "五音FToolStripMenuItem");
- 五音FToolStripMenuItem.BackgroundImage = null;
- 五音FToolStripMenuItem.Name = "五音FToolStripMenuItem";
- 五音FToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator11.AccessibleDescription = null;
- ToolStripSeparator11.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator11, "ToolStripSeparator11");
- ToolStripSeparator11.Name = "ToolStripSeparator11";
- 紧急报警信息EToolStripMenuItem.AccessibleDescription = null;
- 紧急报警信息EToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(紧急报警信息EToolStripMenuItem, "紧急报警信息EToolStripMenuItem");
- 紧急报警信息EToolStripMenuItem.BackgroundImage = null;
- 紧急报警信息EToolStripMenuItem.Name = "紧急报警信息EToolStripMenuItem";
- 紧急报警信息EToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator15.AccessibleDescription = null;
- ToolStripSeparator15.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator15, "ToolStripSeparator15");
- ToolStripSeparator15.Name = "ToolStripSeparator15";
- 收音机存储信道JToolStripMenuItem.AccessibleDescription = null;
- 收音机存储信道JToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(收音机存储信道JToolStripMenuItem, "收音机存储信道JToolStripMenuItem");
- 收音机存储信道JToolStripMenuItem.BackgroundImage = null;
- 收音机存储信道JToolStripMenuItem.Name = "收音机存储信道JToolStripMenuItem";
- 收音机存储信道JToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator12.AccessibleDescription = null;
- ToolStripSeparator12.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator12, "ToolStripSeparator12");
- ToolStripSeparator12.Name = "ToolStripSeparator12";
- 嵌入信息IToolStripMenuItem.AccessibleDescription = null;
- 嵌入信息IToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(嵌入信息IToolStripMenuItem, "嵌入信息IToolStripMenuItem");
- 嵌入信息IToolStripMenuItem.BackgroundImage = null;
- 嵌入信息IToolStripMenuItem.Name = "嵌入信息IToolStripMenuItem";
- 嵌入信息IToolStripMenuItem.ShortcutKeyDisplayString = null;
- 对讲机信息RToolStripMenuItem.AccessibleDescription = null;
- 对讲机信息RToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(对讲机信息RToolStripMenuItem, "对讲机信息RToolStripMenuItem");
- 对讲机信息RToolStripMenuItem.BackgroundImage = null;
- 对讲机信息RToolStripMenuItem.Name = "对讲机信息RToolStripMenuItem";
- 对讲机信息RToolStripMenuItem.ShortcutKeyDisplayString = null;
- ProgrammeMenu.AccessibleDescription = null;
- ProgrammeMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(ProgrammeMenu, "ProgrammeMenu");
- ProgrammeMenu.BackgroundImage = null;
- ProgrammeMenu.DropDownItems.AddRange(new ToolStripItem[2]
- {
- 从对讲机读取数据RToolStripMenuItem,
- 向对讲机写入数据WToolStripMenuItem
- });
- ProgrammeMenu.Name = "ProgrammeMenu";
- ProgrammeMenu.ShortcutKeyDisplayString = null;
- 从对讲机读取数据RToolStripMenuItem.AccessibleDescription = null;
- 从对讲机读取数据RToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(从对讲机读取数据RToolStripMenuItem, "从对讲机读取数据RToolStripMenuItem");
- 从对讲机读取数据RToolStripMenuItem.BackgroundImage = null;
- 从对讲机读取数据RToolStripMenuItem.Name = "从对讲机读取数据RToolStripMenuItem";
- 从对讲机读取数据RToolStripMenuItem.ShortcutKeyDisplayString = null;
- 向对讲机写入数据WToolStripMenuItem.AccessibleDescription = null;
- 向对讲机写入数据WToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(向对讲机写入数据WToolStripMenuItem, "向对讲机写入数据WToolStripMenuItem");
- 向对讲机写入数据WToolStripMenuItem.BackgroundImage = null;
- 向对讲机写入数据WToolStripMenuItem.Name = "向对讲机写入数据WToolStripMenuItem";
- 向对讲机写入数据WToolStripMenuItem.ShortcutKeyDisplayString = null;
- SetMenu.AccessibleDescription = null;
- SetMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(SetMenu, "SetMenu");
- SetMenu.BackgroundImage = null;
- SetMenu.DropDownItems.AddRange(new ToolStripItem[3]
- {
- 语言设置LToolStripMenuItem,
- 通信端口PToolStripMenuItem,
- 更改密码CToolStripMenuItem
- });
- SetMenu.Name = "SetMenu";
- SetMenu.ShortcutKeyDisplayString = null;
- 语言设置LToolStripMenuItem.AccessibleDescription = null;
- 语言设置LToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(语言设置LToolStripMenuItem, "语言设置LToolStripMenuItem");
- 语言设置LToolStripMenuItem.BackgroundImage = null;
- 语言设置LToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[2]
- {
- 中文ToolStripMenuItem,
- 英文ToolStripMenuItem
- });
- 语言设置LToolStripMenuItem.Name = "语言设置LToolStripMenuItem";
- 语言设置LToolStripMenuItem.ShortcutKeyDisplayString = null;
- 中文ToolStripMenuItem.AccessibleDescription = null;
- 中文ToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(中文ToolStripMenuItem, "中文ToolStripMenuItem");
- 中文ToolStripMenuItem.BackgroundImage = null;
- 中文ToolStripMenuItem.Checked = true;
- 中文ToolStripMenuItem.CheckState = CheckState.Checked;
- 中文ToolStripMenuItem.Name = "中文ToolStripMenuItem";
- 中文ToolStripMenuItem.ShortcutKeyDisplayString = null;
- 英文ToolStripMenuItem.AccessibleDescription = null;
- 英文ToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(英文ToolStripMenuItem, "英文ToolStripMenuItem");
- 英文ToolStripMenuItem.BackgroundImage = null;
- 英文ToolStripMenuItem.Name = "英文ToolStripMenuItem";
- 英文ToolStripMenuItem.ShortcutKeyDisplayString = null;
- 通信端口PToolStripMenuItem.AccessibleDescription = null;
- 通信端口PToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(通信端口PToolStripMenuItem, "通信端口PToolStripMenuItem");
- 通信端口PToolStripMenuItem.BackgroundImage = null;
- 通信端口PToolStripMenuItem.Name = "通信端口PToolStripMenuItem";
- 通信端口PToolStripMenuItem.ShortcutKeyDisplayString = null;
- 更改密码CToolStripMenuItem.AccessibleDescription = null;
- 更改密码CToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(更改密码CToolStripMenuItem, "更改密码CToolStripMenuItem");
- 更改密码CToolStripMenuItem.BackgroundImage = null;
- 更改密码CToolStripMenuItem.Name = "更改密码CToolStripMenuItem";
- 更改密码CToolStripMenuItem.ShortcutKeyDisplayString = null;
- ViewMenu.AccessibleDescription = null;
- ViewMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(ViewMenu, "ViewMenu");
- ViewMenu.BackgroundImage = null;
- ViewMenu.DropDownItems.AddRange(new ToolStripItem[3]
- {
- TreeViewToolStripMenuItem,
- ToolBarToolStripMenuItem,
- StatusBarToolStripMenuItem
- });
- ViewMenu.Name = "ViewMenu";
- ViewMenu.ShortcutKeyDisplayString = null;
- TreeViewToolStripMenuItem.AccessibleDescription = null;
- TreeViewToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(TreeViewToolStripMenuItem, "TreeViewToolStripMenuItem");
- TreeViewToolStripMenuItem.BackgroundImage = null;
- TreeViewToolStripMenuItem.Checked = true;
- TreeViewToolStripMenuItem.CheckOnClick = true;
- TreeViewToolStripMenuItem.CheckState = CheckState.Checked;
- TreeViewToolStripMenuItem.Name = "TreeViewToolStripMenuItem";
- TreeViewToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolBarToolStripMenuItem.AccessibleDescription = null;
- ToolBarToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolBarToolStripMenuItem, "ToolBarToolStripMenuItem");
- ToolBarToolStripMenuItem.BackgroundImage = null;
- ToolBarToolStripMenuItem.Checked = true;
- ToolBarToolStripMenuItem.CheckOnClick = true;
- ToolBarToolStripMenuItem.CheckState = CheckState.Checked;
- ToolBarToolStripMenuItem.Name = "ToolBarToolStripMenuItem";
- ToolBarToolStripMenuItem.ShortcutKeyDisplayString = null;
- StatusBarToolStripMenuItem.AccessibleDescription = null;
- StatusBarToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(StatusBarToolStripMenuItem, "StatusBarToolStripMenuItem");
- StatusBarToolStripMenuItem.BackgroundImage = null;
- StatusBarToolStripMenuItem.Checked = true;
- StatusBarToolStripMenuItem.CheckOnClick = true;
- StatusBarToolStripMenuItem.CheckState = CheckState.Checked;
- StatusBarToolStripMenuItem.Name = "StatusBarToolStripMenuItem";
- StatusBarToolStripMenuItem.ShortcutKeyDisplayString = null;
- WindowsMenu.AccessibleDescription = null;
- WindowsMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(WindowsMenu, "WindowsMenu");
- WindowsMenu.BackgroundImage = null;
- WindowsMenu.DropDownItems.AddRange(new ToolStripItem[8]
- {
- NewWindowToolStripMenuItem,
- CascadeToolStripMenuItem,
- TileVerticalToolStripMenuItem,
- TileHorizontalToolStripMenuItem,
- ArrangeIconsToolStripMenuItem,
- ToolStripSeparator13,
- CloseAllToolStripMenuItem,
- ToolStripSeparator14
- });
- WindowsMenu.Name = "WindowsMenu";
- WindowsMenu.ShortcutKeyDisplayString = null;
- NewWindowToolStripMenuItem.AccessibleDescription = null;
- NewWindowToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(NewWindowToolStripMenuItem, "NewWindowToolStripMenuItem");
- NewWindowToolStripMenuItem.BackgroundImage = null;
- NewWindowToolStripMenuItem.Name = "NewWindowToolStripMenuItem";
- NewWindowToolStripMenuItem.ShortcutKeyDisplayString = null;
- CascadeToolStripMenuItem.AccessibleDescription = null;
- CascadeToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(CascadeToolStripMenuItem, "CascadeToolStripMenuItem");
- CascadeToolStripMenuItem.BackgroundImage = null;
- CascadeToolStripMenuItem.Name = "CascadeToolStripMenuItem";
- CascadeToolStripMenuItem.ShortcutKeyDisplayString = null;
- TileVerticalToolStripMenuItem.AccessibleDescription = null;
- TileVerticalToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(TileVerticalToolStripMenuItem, "TileVerticalToolStripMenuItem");
- TileVerticalToolStripMenuItem.BackgroundImage = null;
- TileVerticalToolStripMenuItem.Name = "TileVerticalToolStripMenuItem";
- TileVerticalToolStripMenuItem.ShortcutKeyDisplayString = null;
- TileHorizontalToolStripMenuItem.AccessibleDescription = null;
- TileHorizontalToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(TileHorizontalToolStripMenuItem, "TileHorizontalToolStripMenuItem");
- TileHorizontalToolStripMenuItem.BackgroundImage = null;
- TileHorizontalToolStripMenuItem.Name = "TileHorizontalToolStripMenuItem";
- TileHorizontalToolStripMenuItem.ShortcutKeyDisplayString = null;
- ArrangeIconsToolStripMenuItem.AccessibleDescription = null;
- ArrangeIconsToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(ArrangeIconsToolStripMenuItem, "ArrangeIconsToolStripMenuItem");
- ArrangeIconsToolStripMenuItem.BackgroundImage = null;
- ArrangeIconsToolStripMenuItem.Name = "ArrangeIconsToolStripMenuItem";
- ArrangeIconsToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator13.AccessibleDescription = null;
- ToolStripSeparator13.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator13, "ToolStripSeparator13");
- ToolStripSeparator13.Name = "ToolStripSeparator13";
- CloseAllToolStripMenuItem.AccessibleDescription = null;
- CloseAllToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(CloseAllToolStripMenuItem, "CloseAllToolStripMenuItem");
- CloseAllToolStripMenuItem.BackgroundImage = null;
- CloseAllToolStripMenuItem.Name = "CloseAllToolStripMenuItem";
- CloseAllToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator14.AccessibleDescription = null;
- ToolStripSeparator14.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator14, "ToolStripSeparator14");
- ToolStripSeparator14.Name = "ToolStripSeparator14";
- HelpMenu.AccessibleDescription = null;
- HelpMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(HelpMenu, "HelpMenu");
- HelpMenu.BackgroundImage = null;
- HelpMenu.DropDownItems.AddRange(new ToolStripItem[6]
- {
- ContentsToolStripMenuItem,
- IndexToolStripMenuItem,
- SearchToolStripMenuItem,
- ToolStripSeparator8,
- 帮助主题HToolStripMenuItem,
- AboutToolStripMenuItem
- });
- HelpMenu.Name = "HelpMenu";
- HelpMenu.ShortcutKeyDisplayString = null;
- ContentsToolStripMenuItem.AccessibleDescription = null;
- ContentsToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(ContentsToolStripMenuItem, "ContentsToolStripMenuItem");
- ContentsToolStripMenuItem.BackgroundImage = null;
- ContentsToolStripMenuItem.Name = "ContentsToolStripMenuItem";
- ContentsToolStripMenuItem.ShortcutKeyDisplayString = null;
- IndexToolStripMenuItem.AccessibleDescription = null;
- IndexToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(IndexToolStripMenuItem, "IndexToolStripMenuItem");
- IndexToolStripMenuItem.BackgroundImage = null;
- IndexToolStripMenuItem.Name = "IndexToolStripMenuItem";
- IndexToolStripMenuItem.ShortcutKeyDisplayString = null;
- SearchToolStripMenuItem.AccessibleDescription = null;
- SearchToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(SearchToolStripMenuItem, "SearchToolStripMenuItem");
- SearchToolStripMenuItem.BackgroundImage = null;
- SearchToolStripMenuItem.Name = "SearchToolStripMenuItem";
- SearchToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator8.AccessibleDescription = null;
- ToolStripSeparator8.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator8, "ToolStripSeparator8");
- ToolStripSeparator8.Name = "ToolStripSeparator8";
- 帮助主题HToolStripMenuItem.AccessibleDescription = null;
- 帮助主题HToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(帮助主题HToolStripMenuItem, "帮助主题HToolStripMenuItem");
- 帮助主题HToolStripMenuItem.BackgroundImage = null;
- 帮助主题HToolStripMenuItem.Name = "帮助主题HToolStripMenuItem";
- 帮助主题HToolStripMenuItem.ShortcutKeyDisplayString = null;
- AboutToolStripMenuItem.AccessibleDescription = null;
- AboutToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(AboutToolStripMenuItem, "AboutToolStripMenuItem");
- AboutToolStripMenuItem.BackgroundImage = null;
- AboutToolStripMenuItem.Name = "AboutToolStripMenuItem";
- AboutToolStripMenuItem.ShortcutKeyDisplayString = null;
- EditMenu.AccessibleDescription = null;
- EditMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(EditMenu, "EditMenu");
- EditMenu.BackgroundImage = null;
- EditMenu.DropDownItems.AddRange(new ToolStripItem[8]
- {
- UndoToolStripMenuItem,
- RedoToolStripMenuItem,
- ToolStripSeparator6,
- CutToolStripMenuItem,
- CopyToolStripMenuItem,
- PasteToolStripMenuItem,
- ToolStripSeparator7,
- SelectAllToolStripMenuItem
- });
- EditMenu.Name = "EditMenu";
- EditMenu.ShortcutKeyDisplayString = null;
- UndoToolStripMenuItem.AccessibleDescription = null;
- UndoToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(UndoToolStripMenuItem, "UndoToolStripMenuItem");
- UndoToolStripMenuItem.BackgroundImage = null;
- UndoToolStripMenuItem.Name = "UndoToolStripMenuItem";
- UndoToolStripMenuItem.ShortcutKeyDisplayString = null;
- RedoToolStripMenuItem.AccessibleDescription = null;
- RedoToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(RedoToolStripMenuItem, "RedoToolStripMenuItem");
- RedoToolStripMenuItem.BackgroundImage = null;
- RedoToolStripMenuItem.Name = "RedoToolStripMenuItem";
- RedoToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator6.AccessibleDescription = null;
- ToolStripSeparator6.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator6, "ToolStripSeparator6");
- ToolStripSeparator6.Name = "ToolStripSeparator6";
- CutToolStripMenuItem.AccessibleDescription = null;
- CutToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(CutToolStripMenuItem, "CutToolStripMenuItem");
- CutToolStripMenuItem.BackgroundImage = null;
- CutToolStripMenuItem.Name = "CutToolStripMenuItem";
- CutToolStripMenuItem.ShortcutKeyDisplayString = null;
- CopyToolStripMenuItem.AccessibleDescription = null;
- CopyToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(CopyToolStripMenuItem, "CopyToolStripMenuItem");
- CopyToolStripMenuItem.BackgroundImage = null;
- CopyToolStripMenuItem.Name = "CopyToolStripMenuItem";
- CopyToolStripMenuItem.ShortcutKeyDisplayString = null;
- PasteToolStripMenuItem.AccessibleDescription = null;
- PasteToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(PasteToolStripMenuItem, "PasteToolStripMenuItem");
- PasteToolStripMenuItem.BackgroundImage = null;
- PasteToolStripMenuItem.Name = "PasteToolStripMenuItem";
- PasteToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStripSeparator7.AccessibleDescription = null;
- ToolStripSeparator7.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator7, "ToolStripSeparator7");
- ToolStripSeparator7.Name = "ToolStripSeparator7";
- SelectAllToolStripMenuItem.AccessibleDescription = null;
- SelectAllToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(SelectAllToolStripMenuItem, "SelectAllToolStripMenuItem");
- SelectAllToolStripMenuItem.BackgroundImage = null;
- SelectAllToolStripMenuItem.Name = "SelectAllToolStripMenuItem";
- SelectAllToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolsMenu.AccessibleDescription = null;
- ToolsMenu.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolsMenu, "ToolsMenu");
- ToolsMenu.BackgroundImage = null;
- ToolsMenu.DropDownItems.AddRange(new ToolStripItem[1]
- {
- OptionsToolStripMenuItem
- });
- ToolsMenu.Name = "ToolsMenu";
- ToolsMenu.ShortcutKeyDisplayString = null;
- OptionsToolStripMenuItem.AccessibleDescription = null;
- OptionsToolStripMenuItem.AccessibleName = null;
- componentResourceManager.ApplyResources(OptionsToolStripMenuItem, "OptionsToolStripMenuItem");
- OptionsToolStripMenuItem.BackgroundImage = null;
- OptionsToolStripMenuItem.Name = "OptionsToolStripMenuItem";
- OptionsToolStripMenuItem.ShortcutKeyDisplayString = null;
- ToolStrip.AccessibleDescription = null;
- ToolStrip.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStrip, "ToolStrip");
- ToolStrip.BackgroundImage = null;
- ToolStrip.Font = null;
- ToolStrip.Items.AddRange(new ToolStripItem[12]
- {
- NewToolStripButton,
- OpenToolStripButton,
- SaveToolStripButton,
- ToolStripSeparator1,
- PrintToolStripButton,
- PrintPreviewToolStripButton,
- ToolStripSeparator2,
- ReadToolStripButton,
- ComPortToolStripButton,
- WriteToolStripButton,
- ToolStripSeparator16,
- HelpToolStripButton
- });
- ToolStrip.Name = "ToolStrip";
- ToolTip.SetToolTip(ToolStrip, componentResourceManager.GetString("ToolStrip.ToolTip"));
- NewToolStripButton.AccessibleDescription = null;
- NewToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(NewToolStripButton, "NewToolStripButton");
- NewToolStripButton.BackgroundImage = null;
- NewToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- NewToolStripButton.Name = "NewToolStripButton";
- OpenToolStripButton.AccessibleDescription = null;
- OpenToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(OpenToolStripButton, "OpenToolStripButton");
- OpenToolStripButton.BackgroundImage = null;
- OpenToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- OpenToolStripButton.Name = "OpenToolStripButton";
- SaveToolStripButton.AccessibleDescription = null;
- SaveToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(SaveToolStripButton, "SaveToolStripButton");
- SaveToolStripButton.BackgroundImage = null;
- SaveToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- SaveToolStripButton.Name = "SaveToolStripButton";
- ToolStripSeparator1.AccessibleDescription = null;
- ToolStripSeparator1.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator1, "ToolStripSeparator1");
- ToolStripSeparator1.Name = "ToolStripSeparator1";
- PrintToolStripButton.AccessibleDescription = null;
- PrintToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(PrintToolStripButton, "PrintToolStripButton");
- PrintToolStripButton.BackgroundImage = null;
- PrintToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- PrintToolStripButton.Name = "PrintToolStripButton";
- PrintPreviewToolStripButton.AccessibleDescription = null;
- PrintPreviewToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(PrintPreviewToolStripButton, "PrintPreviewToolStripButton");
- PrintPreviewToolStripButton.BackgroundImage = null;
- PrintPreviewToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- PrintPreviewToolStripButton.Name = "PrintPreviewToolStripButton";
- ToolStripSeparator2.AccessibleDescription = null;
- ToolStripSeparator2.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator2, "ToolStripSeparator2");
- ToolStripSeparator2.Name = "ToolStripSeparator2";
- ReadToolStripButton.AccessibleDescription = null;
- ReadToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(ReadToolStripButton, "ReadToolStripButton");
- ReadToolStripButton.BackgroundImage = null;
- ReadToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- ReadToolStripButton.Name = "ReadToolStripButton";
- ComPortToolStripButton.AccessibleDescription = null;
- ComPortToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(ComPortToolStripButton, "ComPortToolStripButton");
- ComPortToolStripButton.BackgroundImage = null;
- ComPortToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- ComPortToolStripButton.Name = "ComPortToolStripButton";
- WriteToolStripButton.AccessibleDescription = null;
- WriteToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(WriteToolStripButton, "WriteToolStripButton");
- WriteToolStripButton.BackgroundImage = null;
- WriteToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- WriteToolStripButton.Name = "WriteToolStripButton";
- ToolStripSeparator16.AccessibleDescription = null;
- ToolStripSeparator16.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripSeparator16, "ToolStripSeparator16");
- ToolStripSeparator16.Name = "ToolStripSeparator16";
- HelpToolStripButton.AccessibleDescription = null;
- HelpToolStripButton.AccessibleName = null;
- componentResourceManager.ApplyResources(HelpToolStripButton, "HelpToolStripButton");
- HelpToolStripButton.BackgroundImage = null;
- HelpToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
- HelpToolStripButton.Name = "HelpToolStripButton";
- StatusStrip.AccessibleDescription = null;
- StatusStrip.AccessibleName = null;
- componentResourceManager.ApplyResources(StatusStrip, "StatusStrip");
- StatusStrip.BackgroundImage = null;
- StatusStrip.Font = null;
- StatusStrip.Items.AddRange(new ToolStripItem[1]
- {
- ToolStripStatusLabel
- });
- StatusStrip.Name = "StatusStrip";
- ToolTip.SetToolTip(StatusStrip, componentResourceManager.GetString("StatusStrip.ToolTip"));
- ToolStripStatusLabel.AccessibleDescription = null;
- ToolStripStatusLabel.AccessibleName = null;
- componentResourceManager.ApplyResources(ToolStripStatusLabel, "ToolStripStatusLabel");
- ToolStripStatusLabel.BackgroundImage = null;
- ToolStripStatusLabel.Name = "ToolStripStatusLabel";
- Panel1.AccessibleDescription = null;
- Panel1.AccessibleName = null;
- componentResourceManager.ApplyResources(Panel1, "Panel1");
- Panel1.BackgroundImage = null;
- Panel1.BorderStyle = BorderStyle.Fixed3D;
- Panel1.Controls.Add(EditMenuListTreeView);
- Panel1.Font = null;
- Panel1.Name = "Panel1";
- ToolTip.SetToolTip(Panel1, componentResourceManager.GetString("Panel1.ToolTip"));
- EditMenuListTreeView.AccessibleDescription = null;
- EditMenuListTreeView.AccessibleName = null;
- componentResourceManager.ApplyResources(EditMenuListTreeView, "EditMenuListTreeView");
- EditMenuListTreeView.BackgroundImage = null;
- EditMenuListTreeView.Font = null;
- EditMenuListTreeView.Name = "EditMenuListTreeView";
- EditMenuListTreeView.Nodes.AddRange(new TreeNode[1]
- {
- (TreeNode) componentResourceManager.GetObject("EditMenuListTreeView.Nodes")
- });
- ToolTip.SetToolTip(EditMenuListTreeView, componentResourceManager.GetString("EditMenuListTreeView.ToolTip"));
- SerialPort1.BaudRate = 19200;
- SerialPort1.DtrEnable = true;
- SerialPort1.RtsEnable = true;
- Timer1.Interval = 10;
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- Controls.Add(Panel1);
- Controls.Add(ToolStrip);
- Controls.Add(MenuStrip);
- Controls.Add(StatusStrip);
- DoubleBuffered = true;
- Font = null;
- IsMdiContainer = true;
- MainMenuStrip = MenuStrip;
- Name = nameof (MDIParent1);
- ToolTip.SetToolTip(this, componentResourceManager.GetString("$this.ToolTip"));
- MenuStrip.ResumeLayout(false);
- MenuStrip.PerformLayout();
- ToolStrip.ResumeLayout(false);
- ToolStrip.PerformLayout();
- StatusStrip.ResumeLayout(false);
- StatusStrip.PerformLayout();
- Panel1.ResumeLayout(false);
- ResumeLayout(false);
- PerformLayout();
- }
-
- internal virtual ToolStripMenuItem ContentsToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _ContentsToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ContentsToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem HelpMenu
- {
- [DebuggerNonUserCode] get => _HelpMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _HelpMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem IndexToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _IndexToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _IndexToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem SearchToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _SearchToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SearchToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator8
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator8 = value;
- }
- }
-
- internal virtual ToolStripMenuItem AboutToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _AboutToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_AboutToolStripMenuItem != null)
- _AboutToolStripMenuItem.Click -= AboutToolStripMenuItem_Click;
- _AboutToolStripMenuItem = value;
- if (_AboutToolStripMenuItem == null)
- return;
- _AboutToolStripMenuItem.Click += AboutToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem ArrangeIconsToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _ArrangeIconsToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ArrangeIconsToolStripMenuItem != null)
- _ArrangeIconsToolStripMenuItem.Click -= ArrangeIconsToolStripMenuItem_Click;
- _ArrangeIconsToolStripMenuItem = value;
- if (_ArrangeIconsToolStripMenuItem == null)
- return;
- _ArrangeIconsToolStripMenuItem.Click += ArrangeIconsToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem CloseAllToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _CloseAllToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CloseAllToolStripMenuItem != null)
- _CloseAllToolStripMenuItem.Click -= CloseAllToolStripMenuItem_Click;
- _CloseAllToolStripMenuItem = value;
- if (_CloseAllToolStripMenuItem == null)
- return;
- _CloseAllToolStripMenuItem.Click += CloseAllToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem NewWindowToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _NewWindowToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NewWindowToolStripMenuItem != null)
- _NewWindowToolStripMenuItem.Click -= ShowNewForm;
- _NewWindowToolStripMenuItem = value;
- if (_NewWindowToolStripMenuItem == null)
- return;
- _NewWindowToolStripMenuItem.Click += ShowNewForm;
- }
- }
-
- internal virtual ToolStripMenuItem WindowsMenu
- {
- [DebuggerNonUserCode] get => _WindowsMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _WindowsMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem CascadeToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _CascadeToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CascadeToolStripMenuItem != null)
- _CascadeToolStripMenuItem.Click -= CascadeToolStripMenuItem_Click;
- _CascadeToolStripMenuItem = value;
- if (_CascadeToolStripMenuItem == null)
- return;
- _CascadeToolStripMenuItem.Click += CascadeToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem TileVerticalToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _TileVerticalToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TileVerticalToolStripMenuItem != null)
- _TileVerticalToolStripMenuItem.Click -= TileVerticleToolStripMenuItem_Click;
- _TileVerticalToolStripMenuItem = value;
- if (_TileVerticalToolStripMenuItem == null)
- return;
- _TileVerticalToolStripMenuItem.Click += TileVerticleToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem TileHorizontalToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _TileHorizontalToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TileHorizontalToolStripMenuItem != null)
- _TileHorizontalToolStripMenuItem.Click -= TileHorizontalToolStripMenuItem_Click;
- _TileHorizontalToolStripMenuItem = value;
- if (_TileHorizontalToolStripMenuItem == null)
- return;
- _TileHorizontalToolStripMenuItem.Click += TileHorizontalToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem OptionsToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _OptionsToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _OptionsToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripButton HelpToolStripButton
- {
- [DebuggerNonUserCode] get => _HelpToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _HelpToolStripButton = value;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator2
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator2 = value;
- }
- }
-
- internal virtual ToolStripButton PrintPreviewToolStripButton
- {
- [DebuggerNonUserCode] get => _PrintPreviewToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _PrintPreviewToolStripButton = value;
- }
- }
-
- internal virtual ToolTip ToolTip
- {
- [DebuggerNonUserCode] get => _ToolTip;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolTip = value;
- }
- }
-
- internal virtual ToolStripStatusLabel ToolStripStatusLabel
- {
- [DebuggerNonUserCode] get => _ToolStripStatusLabel;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripStatusLabel = value;
- }
- }
-
- internal virtual StatusStrip StatusStrip
- {
- [DebuggerNonUserCode] get => _StatusStrip;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _StatusStrip = value;
- }
- }
-
- internal virtual ToolStripButton PrintToolStripButton
- {
- [DebuggerNonUserCode] get => _PrintToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _PrintToolStripButton = value;
- }
- }
-
- internal virtual ToolStripButton NewToolStripButton
- {
- [DebuggerNonUserCode] get => _NewToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NewToolStripButton != null)
- _NewToolStripButton.Click -= ShowNewForm;
- _NewToolStripButton = value;
- if (_NewToolStripButton == null)
- return;
- _NewToolStripButton.Click += ShowNewForm;
- }
- }
-
- internal virtual ToolStrip ToolStrip
- {
- [DebuggerNonUserCode] get => _ToolStrip;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStrip = value;
- }
- }
-
- internal virtual ToolStripButton OpenToolStripButton
- {
- [DebuggerNonUserCode] get => _OpenToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_OpenToolStripButton != null)
- _OpenToolStripButton.Click -= OpenFile;
- _OpenToolStripButton = value;
- if (_OpenToolStripButton == null)
- return;
- _OpenToolStripButton.Click += OpenFile;
- }
- }
-
- internal virtual ToolStripButton SaveToolStripButton
- {
- [DebuggerNonUserCode] get => _SaveToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_SaveToolStripButton != null)
- _SaveToolStripButton.Click -= SaveToolStripButton_Click;
- _SaveToolStripButton = value;
- if (_SaveToolStripButton == null)
- return;
- _SaveToolStripButton.Click += SaveToolStripButton_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator1
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator1 = value;
- }
- }
-
- internal virtual ToolStripMenuItem PrintPreviewToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _PrintPreviewToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _PrintPreviewToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem PrintToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _PrintToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _PrintToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator4
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator4 = value;
- }
- }
-
- internal virtual ToolStripMenuItem ExitToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _ExitToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ExitToolStripMenuItem != null)
- _ExitToolStripMenuItem.Click -= ExitToolsStripMenuItem_Click;
- _ExitToolStripMenuItem = value;
- if (_ExitToolStripMenuItem == null)
- return;
- _ExitToolStripMenuItem.Click += ExitToolsStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator5
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator5 = value;
- }
- }
-
- internal virtual ToolStripMenuItem PrintSetupToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _PrintSetupToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _PrintSetupToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem SaveAsToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _SaveAsToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_SaveAsToolStripMenuItem != null)
- _SaveAsToolStripMenuItem.Click -= SaveAsToolStripMenuItem_Click;
- _SaveAsToolStripMenuItem = value;
- if (_SaveAsToolStripMenuItem == null)
- return;
- _SaveAsToolStripMenuItem.Click += SaveAsToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem NewToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _NewToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NewToolStripMenuItem != null)
- _NewToolStripMenuItem.Click -= ShowNewForm;
- _NewToolStripMenuItem = value;
- if (_NewToolStripMenuItem == null)
- return;
- _NewToolStripMenuItem.Click += ShowNewForm;
- }
- }
-
- internal virtual ToolStripMenuItem FileMenu
- {
- [DebuggerNonUserCode] get => _FileMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _FileMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem OpenToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _OpenToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_OpenToolStripMenuItem != null)
- _OpenToolStripMenuItem.Click -= OpenFile;
- _OpenToolStripMenuItem = value;
- if (_OpenToolStripMenuItem == null)
- return;
- _OpenToolStripMenuItem.Click += OpenFile;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator3
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator3 = value;
- }
- }
-
- internal virtual ToolStripMenuItem SaveToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _SaveToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_SaveToolStripMenuItem != null)
- _SaveToolStripMenuItem.Click -= SaveToolStripMenuItem_Click;
- _SaveToolStripMenuItem = value;
- if (_SaveToolStripMenuItem == null)
- return;
- _SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
- }
- }
-
- internal virtual MenuStrip MenuStrip
- {
- [DebuggerNonUserCode] get => _MenuStrip;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _MenuStrip = value;
- }
- }
-
- internal virtual ToolStripMenuItem EditMenu
- {
- [DebuggerNonUserCode] get => _EditMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _EditMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem UndoToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _UndoToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _UndoToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem RedoToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _RedoToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _RedoToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator6
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator6 = value;
- }
- }
-
- internal virtual ToolStripMenuItem CutToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _CutToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CutToolStripMenuItem != null)
- _CutToolStripMenuItem.Click -= CutToolStripMenuItem_Click;
- _CutToolStripMenuItem = value;
- if (_CutToolStripMenuItem == null)
- return;
- _CutToolStripMenuItem.Click += CutToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem CopyToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _CopyToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CopyToolStripMenuItem != null)
- _CopyToolStripMenuItem.Click -= CopyToolStripMenuItem_Click;
- _CopyToolStripMenuItem = value;
- if (_CopyToolStripMenuItem == null)
- return;
- _CopyToolStripMenuItem.Click += CopyToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem PasteToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _PasteToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_PasteToolStripMenuItem != null)
- _PasteToolStripMenuItem.Click -= PasteToolStripMenuItem_Click;
- _PasteToolStripMenuItem = value;
- if (_PasteToolStripMenuItem == null)
- return;
- _PasteToolStripMenuItem.Click += PasteToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator7
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator7 = value;
- }
- }
-
- internal virtual ToolStripMenuItem SelectAllToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _SelectAllToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SelectAllToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem ViewMenu
- {
- [DebuggerNonUserCode] get => _ViewMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ViewMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem ToolBarToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _ToolBarToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ToolBarToolStripMenuItem != null)
- _ToolBarToolStripMenuItem.Click -= ToolBarToolStripMenuItem_Click;
- _ToolBarToolStripMenuItem = value;
- if (_ToolBarToolStripMenuItem == null)
- return;
- _ToolBarToolStripMenuItem.Click += ToolBarToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem StatusBarToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _StatusBarToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_StatusBarToolStripMenuItem != null)
- _StatusBarToolStripMenuItem.Click -= StatusBarToolStripMenuItem_Click;
- _StatusBarToolStripMenuItem = value;
- if (_StatusBarToolStripMenuItem == null)
- return;
- _StatusBarToolStripMenuItem.Click += StatusBarToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem ToolsMenu
- {
- [DebuggerNonUserCode] get => _ToolsMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolsMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem TypeMenu
- {
- [DebuggerNonUserCode] get => _TypeMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TypeMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem 机型信息MToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _机型信息MToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_机型信息MToolStripMenuItem != null)
- _机型信息MToolStripMenuItem.Click -= 机型信息MToolStripMenuItem_Click;
- _机型信息MToolStripMenuItem = value;
- if (_机型信息MToolStripMenuItem == null)
- return;
- _机型信息MToolStripMenuItem.Click += 机型信息MToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem EditMenuList
- {
- [DebuggerNonUserCode] get => _EditMenuList;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _EditMenuList = value;
- }
- }
-
- internal virtual ToolStripMenuItem 信道信息CToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _信道信息CToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_信道信息CToolStripMenuItem != null)
- _信道信息CToolStripMenuItem.Click -= 信道信息CToolStripMenuItem_Click;
- _信道信息CToolStripMenuItem = value;
- if (_信道信息CToolStripMenuItem == null)
- return;
- _信道信息CToolStripMenuItem.Click += 信道信息CToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator9
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator9 = value;
- }
- }
-
- internal virtual ToolStripMenuItem 整机信息OToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _整机信息OToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_整机信息OToolStripMenuItem != null)
- _整机信息OToolStripMenuItem.Click -= 整机信息OToolStripMenuItem_Click;
- _整机信息OToolStripMenuItem = value;
- if (_整机信息OToolStripMenuItem == null)
- return;
- _整机信息OToolStripMenuItem.Click += 整机信息OToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 扫描信息SToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _扫描信息SToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_扫描信息SToolStripMenuItem != null)
- _扫描信息SToolStripMenuItem.Click -= 扫描信息SToolStripMenuItem_Click;
- _扫描信息SToolStripMenuItem = value;
- if (_扫描信息SToolStripMenuItem == null)
- return;
- _扫描信息SToolStripMenuItem.Click += 扫描信息SToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 提示音AToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _提示音AToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_提示音AToolStripMenuItem != null)
- _提示音AToolStripMenuItem.Click -= 提示音AToolStripMenuItem_Click;
- _提示音AToolStripMenuItem = value;
- if (_提示音AToolStripMenuItem == null)
- return;
- _提示音AToolStripMenuItem.Click += 提示音AToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator10
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator10 = value;
- }
- }
-
- internal virtual ToolStripMenuItem 双音多频DToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _双音多频DToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_双音多频DToolStripMenuItem != null)
- _双音多频DToolStripMenuItem.Click -= 双音多频DToolStripMenuItem_Click;
- _双音多频DToolStripMenuItem = value;
- if (_双音多频DToolStripMenuItem == null)
- return;
- _双音多频DToolStripMenuItem.Click += 双音多频DToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 两音TToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _两音TToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_两音TToolStripMenuItem != null)
- _两音TToolStripMenuItem.Click -= 两音TToolStripMenuItem_Click;
- _两音TToolStripMenuItem = value;
- if (_两音TToolStripMenuItem == null)
- return;
- _两音TToolStripMenuItem.Click += 两音TToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 五音FToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _五音FToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_五音FToolStripMenuItem != null)
- _五音FToolStripMenuItem.Click -= 五音FToolStripMenuItem_Click;
- _五音FToolStripMenuItem = value;
- if (_五音FToolStripMenuItem == null)
- return;
- _五音FToolStripMenuItem.Click += 五音FToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator11
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator11 = value;
- }
- }
-
- internal virtual ToolStripMenuItem 紧急报警信息EToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _紧急报警信息EToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_紧急报警信息EToolStripMenuItem != null)
- _紧急报警信息EToolStripMenuItem.Click -= 紧急报警信息EToolStripMenuItem_Click;
- _紧急报警信息EToolStripMenuItem = value;
- if (_紧急报警信息EToolStripMenuItem == null)
- return;
- _紧急报警信息EToolStripMenuItem.Click += 紧急报警信息EToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 收音机存储信道JToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _收音机存储信道JToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_收音机存储信道JToolStripMenuItem != null)
- _收音机存储信道JToolStripMenuItem.Click -= 收音机存储信道JToolStripMenuItem_Click;
- _收音机存储信道JToolStripMenuItem = value;
- if (_收音机存储信道JToolStripMenuItem == null)
- return;
- _收音机存储信道JToolStripMenuItem.Click += 收音机存储信道JToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 嵌入信息IToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _嵌入信息IToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_嵌入信息IToolStripMenuItem != null)
- _嵌入信息IToolStripMenuItem.Click -= 嵌入信息IToolStripMenuItem_Click;
- _嵌入信息IToolStripMenuItem = value;
- if (_嵌入信息IToolStripMenuItem == null)
- return;
- _嵌入信息IToolStripMenuItem.Click += 嵌入信息IToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 对讲机信息RToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _对讲机信息RToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_对讲机信息RToolStripMenuItem != null)
- _对讲机信息RToolStripMenuItem.Click -= 对讲机信息RToolStripMenuItem_Click;
- _对讲机信息RToolStripMenuItem = value;
- if (_对讲机信息RToolStripMenuItem == null)
- return;
- _对讲机信息RToolStripMenuItem.Click += 对讲机信息RToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator12
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator12 = value;
- }
- }
-
- internal virtual ToolStripMenuItem ProgrammeMenu
- {
- [DebuggerNonUserCode] get => _ProgrammeMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ProgrammeMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem 从对讲机读取数据RToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _从对讲机读取数据RToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_从对讲机读取数据RToolStripMenuItem != null)
- _从对讲机读取数据RToolStripMenuItem.Click -= 从对讲机读取数据RToolStripMenuItem_Click;
- _从对讲机读取数据RToolStripMenuItem = value;
- if (_从对讲机读取数据RToolStripMenuItem == null)
- return;
- _从对讲机读取数据RToolStripMenuItem.Click += 从对讲机读取数据RToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 向对讲机写入数据WToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _向对讲机写入数据WToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_向对讲机写入数据WToolStripMenuItem != null)
- _向对讲机写入数据WToolStripMenuItem.Click -= 向对讲机写入数据WToolStripMenuItem_Click;
- _向对讲机写入数据WToolStripMenuItem = value;
- if (_向对讲机写入数据WToolStripMenuItem == null)
- return;
- _向对讲机写入数据WToolStripMenuItem.Click += 向对讲机写入数据WToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem SetMenu
- {
- [DebuggerNonUserCode] get => _SetMenu;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SetMenu = value;
- }
- }
-
- internal virtual ToolStripMenuItem 语言设置LToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _语言设置LToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _语言设置LToolStripMenuItem = value;
- }
- }
-
- internal virtual ToolStripMenuItem 通信端口PToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _通信端口PToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_通信端口PToolStripMenuItem != null)
- _通信端口PToolStripMenuItem.Click -= 通信端口PToolStripMenuItem_Click;
- _通信端口PToolStripMenuItem = value;
- if (_通信端口PToolStripMenuItem == null)
- return;
- _通信端口PToolStripMenuItem.Click += 通信端口PToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 更改密码CToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _更改密码CToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_更改密码CToolStripMenuItem != null)
- _更改密码CToolStripMenuItem.Click -= 更改密码CToolStripMenuItem_Click;
- _更改密码CToolStripMenuItem = value;
- if (_更改密码CToolStripMenuItem == null)
- return;
- _更改密码CToolStripMenuItem.Click += 更改密码CToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem TreeViewToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _TreeViewToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TreeViewToolStripMenuItem != null)
- _TreeViewToolStripMenuItem.Click -= TreeViewToolStripMenuItem_Click;
- _TreeViewToolStripMenuItem = value;
- if (_TreeViewToolStripMenuItem == null)
- return;
- _TreeViewToolStripMenuItem.Click += TreeViewToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator13
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator13 = value;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator14
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator14 = value;
- }
- }
-
- internal virtual ToolStripMenuItem 帮助主题HToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _帮助主题HToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _帮助主题HToolStripMenuItem = value;
- }
- }
-
- internal virtual Panel Panel1
- {
- [DebuggerNonUserCode] get => _Panel1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Panel1 = value;
- }
-
- internal virtual TreeView EditMenuListTreeView
- {
- [DebuggerNonUserCode] get => _EditMenuListTreeView;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_EditMenuListTreeView != null)
- _EditMenuListTreeView.NodeMouseClick -= EditMenuListTreeView_NodeMouseClick;
- _EditMenuListTreeView = value;
- if (_EditMenuListTreeView == null)
- return;
- _EditMenuListTreeView.NodeMouseClick += EditMenuListTreeView_NodeMouseClick;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator15
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator15 = value;
- }
- }
-
- internal virtual SerialPort SerialPort1
- {
- [DebuggerNonUserCode] get => _SerialPort1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_SerialPort1 != null)
- _SerialPort1.DataReceived -= SerialPort1_DataReceived;
- _SerialPort1 = value;
- if (_SerialPort1 == null)
- return;
- _SerialPort1.DataReceived += SerialPort1_DataReceived;
- }
- }
-
- internal virtual System.Windows.Forms.Timer Timer1
- {
- [DebuggerNonUserCode] get => _Timer1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Timer1 != null)
- _Timer1.Tick -= Timer1_Tick;
- _Timer1 = value;
- if (_Timer1 == null)
- return;
- _Timer1.Tick += Timer1_Tick;
- }
- }
-
- internal virtual ToolStripButton ReadToolStripButton
- {
- [DebuggerNonUserCode] get => _ReadToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ReadToolStripButton != null)
- _ReadToolStripButton.Click -= ReadToolStripButton_Click;
- _ReadToolStripButton = value;
- if (_ReadToolStripButton == null)
- return;
- _ReadToolStripButton.Click += ReadToolStripButton_Click;
- }
- }
-
- internal virtual ToolStripButton ComPortToolStripButton
- {
- [DebuggerNonUserCode] get => _ComPortToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComPortToolStripButton != null)
- _ComPortToolStripButton.Click -= ComPortToolStripButton_Click;
- _ComPortToolStripButton = value;
- if (_ComPortToolStripButton == null)
- return;
- _ComPortToolStripButton.Click += ComPortToolStripButton_Click;
- }
- }
-
- internal virtual ToolStripButton WriteToolStripButton
- {
- [DebuggerNonUserCode] get => _WriteToolStripButton;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_WriteToolStripButton != null)
- _WriteToolStripButton.Click -= WriteToolStripButton_Click;
- _WriteToolStripButton = value;
- if (_WriteToolStripButton == null)
- return;
- _WriteToolStripButton.Click += WriteToolStripButton_Click;
- }
- }
-
- internal virtual ToolStripSeparator ToolStripSeparator16
- {
- [DebuggerNonUserCode] get => _ToolStripSeparator16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ToolStripSeparator16 = value;
- }
- }
-
- internal virtual ToolStripMenuItem 中文ToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _中文ToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_中文ToolStripMenuItem != null)
- _中文ToolStripMenuItem.Click -= 中文ToolStripMenuItem_Click;
- _中文ToolStripMenuItem = value;
- if (_中文ToolStripMenuItem == null)
- return;
- _中文ToolStripMenuItem.Click += 中文ToolStripMenuItem_Click;
- }
- }
-
- internal virtual ToolStripMenuItem 英文ToolStripMenuItem
- {
- [DebuggerNonUserCode] get => _英文ToolStripMenuItem;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_英文ToolStripMenuItem != null)
- _英文ToolStripMenuItem.Click -= 英文ToolStripMenuItem_Click;
- _英文ToolStripMenuItem = value;
- if (_英文ToolStripMenuItem == null)
- return;
- _英文ToolStripMenuItem.Click += 英文ToolStripMenuItem_Click;
- }
- }
-
- private void ShowNewForm(object sender, EventArgs e)
- {
- try
- {
- var streamReader = File.OpenText(Application.StartupPath + "\\default_data.hpg");
- var index = 0;
- do
+ [DesignerGenerated]
+ public class MDIParent1 : Form
+ {
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("ContentsToolStripMenuItem")]
+ private ToolStripMenuItem _ContentsToolStripMenuItem;
+ [AccessedThroughProperty("HelpMenu")]
+ private ToolStripMenuItem _HelpMenu;
+ [AccessedThroughProperty("IndexToolStripMenuItem")]
+ private ToolStripMenuItem _IndexToolStripMenuItem;
+ [AccessedThroughProperty("SearchToolStripMenuItem")]
+ private ToolStripMenuItem _SearchToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator8")]
+ private ToolStripSeparator _ToolStripSeparator8;
+ [AccessedThroughProperty("AboutToolStripMenuItem")]
+ private ToolStripMenuItem _AboutToolStripMenuItem;
+ [AccessedThroughProperty("ArrangeIconsToolStripMenuItem")]
+ private ToolStripMenuItem _ArrangeIconsToolStripMenuItem;
+ [AccessedThroughProperty("CloseAllToolStripMenuItem")]
+ private ToolStripMenuItem _CloseAllToolStripMenuItem;
+ [AccessedThroughProperty("NewWindowToolStripMenuItem")]
+ private ToolStripMenuItem _NewWindowToolStripMenuItem;
+ [AccessedThroughProperty("WindowsMenu")]
+ private ToolStripMenuItem _WindowsMenu;
+ [AccessedThroughProperty("CascadeToolStripMenuItem")]
+ private ToolStripMenuItem _CascadeToolStripMenuItem;
+ [AccessedThroughProperty("TileVerticalToolStripMenuItem")]
+ private ToolStripMenuItem _TileVerticalToolStripMenuItem;
+ [AccessedThroughProperty("TileHorizontalToolStripMenuItem")]
+ private ToolStripMenuItem _TileHorizontalToolStripMenuItem;
+ [AccessedThroughProperty("OptionsToolStripMenuItem")]
+ private ToolStripMenuItem _OptionsToolStripMenuItem;
+ [AccessedThroughProperty("HelpToolStripButton")]
+ private ToolStripButton _HelpToolStripButton;
+ [AccessedThroughProperty("ToolStripSeparator2")]
+ private ToolStripSeparator _ToolStripSeparator2;
+ [AccessedThroughProperty("PrintPreviewToolStripButton")]
+ private ToolStripButton _PrintPreviewToolStripButton;
+ [AccessedThroughProperty("ToolTip")]
+ private ToolTip _ToolTip;
+ [AccessedThroughProperty("ToolStripStatusLabel")]
+ private ToolStripStatusLabel _ToolStripStatusLabel;
+ [AccessedThroughProperty("StatusStrip")]
+ private StatusStrip _StatusStrip;
+ [AccessedThroughProperty("PrintToolStripButton")]
+ private ToolStripButton _PrintToolStripButton;
+ [AccessedThroughProperty("NewToolStripButton")]
+ private ToolStripButton _NewToolStripButton;
+ [AccessedThroughProperty("ToolStrip")]
+ private ToolStrip _ToolStrip;
+ [AccessedThroughProperty("OpenToolStripButton")]
+ private ToolStripButton _OpenToolStripButton;
+ [AccessedThroughProperty("SaveToolStripButton")]
+ private ToolStripButton _SaveToolStripButton;
+ [AccessedThroughProperty("ToolStripSeparator1")]
+ private ToolStripSeparator _ToolStripSeparator1;
+ [AccessedThroughProperty("PrintPreviewToolStripMenuItem")]
+ private ToolStripMenuItem _PrintPreviewToolStripMenuItem;
+ [AccessedThroughProperty("PrintToolStripMenuItem")]
+ private ToolStripMenuItem _PrintToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator4")]
+ private ToolStripSeparator _ToolStripSeparator4;
+ [AccessedThroughProperty("ExitToolStripMenuItem")]
+ private ToolStripMenuItem _ExitToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator5")]
+ private ToolStripSeparator _ToolStripSeparator5;
+ [AccessedThroughProperty("PrintSetupToolStripMenuItem")]
+ private ToolStripMenuItem _PrintSetupToolStripMenuItem;
+ [AccessedThroughProperty("SaveAsToolStripMenuItem")]
+ private ToolStripMenuItem _SaveAsToolStripMenuItem;
+ [AccessedThroughProperty("NewToolStripMenuItem")]
+ private ToolStripMenuItem _NewToolStripMenuItem;
+ [AccessedThroughProperty("FileMenu")]
+ private ToolStripMenuItem _FileMenu;
+ [AccessedThroughProperty("OpenToolStripMenuItem")]
+ private ToolStripMenuItem _OpenToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator3")]
+ private ToolStripSeparator _ToolStripSeparator3;
+ [AccessedThroughProperty("SaveToolStripMenuItem")]
+ private ToolStripMenuItem _SaveToolStripMenuItem;
+ [AccessedThroughProperty("MenuStrip")]
+ private MenuStrip _MenuStrip;
+ [AccessedThroughProperty("EditMenu")]
+ private ToolStripMenuItem _EditMenu;
+ [AccessedThroughProperty("UndoToolStripMenuItem")]
+ private ToolStripMenuItem _UndoToolStripMenuItem;
+ [AccessedThroughProperty("RedoToolStripMenuItem")]
+ private ToolStripMenuItem _RedoToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator6")]
+ private ToolStripSeparator _ToolStripSeparator6;
+ [AccessedThroughProperty("CutToolStripMenuItem")]
+ private ToolStripMenuItem _CutToolStripMenuItem;
+ [AccessedThroughProperty("CopyToolStripMenuItem")]
+ private ToolStripMenuItem _CopyToolStripMenuItem;
+ [AccessedThroughProperty("PasteToolStripMenuItem")]
+ private ToolStripMenuItem _PasteToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator7")]
+ private ToolStripSeparator _ToolStripSeparator7;
+ [AccessedThroughProperty("SelectAllToolStripMenuItem")]
+ private ToolStripMenuItem _SelectAllToolStripMenuItem;
+ [AccessedThroughProperty("ViewMenu")]
+ private ToolStripMenuItem _ViewMenu;
+ [AccessedThroughProperty("ToolBarToolStripMenuItem")]
+ private ToolStripMenuItem _ToolBarToolStripMenuItem;
+ [AccessedThroughProperty("StatusBarToolStripMenuItem")]
+ private ToolStripMenuItem _StatusBarToolStripMenuItem;
+ [AccessedThroughProperty("ToolsMenu")]
+ private ToolStripMenuItem _ToolsMenu;
+ [AccessedThroughProperty("TypeMenu")]
+ private ToolStripMenuItem _TypeMenu;
+ [AccessedThroughProperty("机型信息MToolStripMenuItem")]
+ private ToolStripMenuItem _机型信息MToolStripMenuItem;
+ [AccessedThroughProperty("EditMenuList")]
+ private ToolStripMenuItem _EditMenuList;
+ [AccessedThroughProperty("信道信息CToolStripMenuItem")]
+ private ToolStripMenuItem _信道信息CToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator9")]
+ private ToolStripSeparator _ToolStripSeparator9;
+ [AccessedThroughProperty("整机信息OToolStripMenuItem")]
+ private ToolStripMenuItem _整机信息OToolStripMenuItem;
+ [AccessedThroughProperty("扫描信息SToolStripMenuItem")]
+ private ToolStripMenuItem _扫描信息SToolStripMenuItem;
+ [AccessedThroughProperty("提示音AToolStripMenuItem")]
+ private ToolStripMenuItem _提示音AToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator10")]
+ private ToolStripSeparator _ToolStripSeparator10;
+ [AccessedThroughProperty("双音多频DToolStripMenuItem")]
+ private ToolStripMenuItem _双音多频DToolStripMenuItem;
+ [AccessedThroughProperty("两音TToolStripMenuItem")]
+ private ToolStripMenuItem _两音TToolStripMenuItem;
+ [AccessedThroughProperty("五音FToolStripMenuItem")]
+ private ToolStripMenuItem _五音FToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator11")]
+ private ToolStripSeparator _ToolStripSeparator11;
+ [AccessedThroughProperty("紧急报警信息EToolStripMenuItem")]
+ private ToolStripMenuItem _紧急报警信息EToolStripMenuItem;
+ [AccessedThroughProperty("收音机存储信道JToolStripMenuItem")]
+ private ToolStripMenuItem _收音机存储信道JToolStripMenuItem;
+ [AccessedThroughProperty("嵌入信息IToolStripMenuItem")]
+ private ToolStripMenuItem _嵌入信息IToolStripMenuItem;
+ [AccessedThroughProperty("对讲机信息RToolStripMenuItem")]
+ private ToolStripMenuItem _对讲机信息RToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator12")]
+ private ToolStripSeparator _ToolStripSeparator12;
+ [AccessedThroughProperty("ProgrammeMenu")]
+ private ToolStripMenuItem _ProgrammeMenu;
+ [AccessedThroughProperty("从对讲机读取数据RToolStripMenuItem")]
+ private ToolStripMenuItem _从对讲机读取数据RToolStripMenuItem;
+ [AccessedThroughProperty("向对讲机写入数据WToolStripMenuItem")]
+ private ToolStripMenuItem _向对讲机写入数据WToolStripMenuItem;
+ [AccessedThroughProperty("SetMenu")]
+ private ToolStripMenuItem _SetMenu;
+ [AccessedThroughProperty("语言设置LToolStripMenuItem")]
+ private ToolStripMenuItem _语言设置LToolStripMenuItem;
+ [AccessedThroughProperty("通信端口PToolStripMenuItem")]
+ private ToolStripMenuItem _通信端口PToolStripMenuItem;
+ [AccessedThroughProperty("更改密码CToolStripMenuItem")]
+ private ToolStripMenuItem _更改密码CToolStripMenuItem;
+ [AccessedThroughProperty("TreeViewToolStripMenuItem")]
+ private ToolStripMenuItem _TreeViewToolStripMenuItem;
+ [AccessedThroughProperty("ToolStripSeparator13")]
+ private ToolStripSeparator _ToolStripSeparator13;
+ [AccessedThroughProperty("ToolStripSeparator14")]
+ private ToolStripSeparator _ToolStripSeparator14;
+ [AccessedThroughProperty("帮助主题HToolStripMenuItem")]
+ private ToolStripMenuItem _帮助主题HToolStripMenuItem;
+ [AccessedThroughProperty("Panel1")]
+ private Panel _Panel1;
+ [AccessedThroughProperty("EditMenuListTreeView")]
+ private TreeView _EditMenuListTreeView;
+ [AccessedThroughProperty("ToolStripSeparator15")]
+ private ToolStripSeparator _ToolStripSeparator15;
+ [AccessedThroughProperty("SerialPort1")]
+ private SerialPort _SerialPort1;
+ [AccessedThroughProperty("Timer1")]
+ private System.Windows.Forms.Timer _Timer1;
+ [AccessedThroughProperty("ReadToolStripButton")]
+ private ToolStripButton _ReadToolStripButton;
+ [AccessedThroughProperty("ComPortToolStripButton")]
+ private ToolStripButton _ComPortToolStripButton;
+ [AccessedThroughProperty("WriteToolStripButton")]
+ private ToolStripButton _WriteToolStripButton;
+ [AccessedThroughProperty("ToolStripSeparator16")]
+ private ToolStripSeparator _ToolStripSeparator16;
+ [AccessedThroughProperty("中文ToolStripMenuItem")]
+ private ToolStripMenuItem _中文ToolStripMenuItem;
+ [AccessedThroughProperty("英文ToolStripMenuItem")]
+ private ToolStripMenuItem _英文ToolStripMenuItem;
+ private int m_ChildFormNumber;
+
+ [DebuggerNonUserCode]
+ static MDIParent1()
{
- publicva.EEPROM_Byte[index] = Conversions.ToByte("&h" + streamReader.ReadLine());
- checked { ++index; }
}
- while (index <= short.MaxValue);
- streamReader.Close();
- AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
- FormTreeViewHide();
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- publicva.Rw_PasswordStr = "";
- }
- private void OpenFile(object sender, EventArgs e)
- {
- var openFileDialog = new OpenFileDialog();
- openFileDialog.InitialDirectory = MyProject.Computer.FileSystem.SpecialDirectories.MyDocuments;
- openFileDialog.Filter = "数据文件(*.hpg)|*.hpg";
- if (openFileDialog.ShowDialog(this) != DialogResult.OK)
- return;
- var streamReader = new StreamReader(openFileDialog.FileName);
- var index = 0;
- do
- {
- publicva.EEPROM_Byte[index] = Conversions.ToByte("&h" + streamReader.ReadLine());
- checked { ++index; }
- }
- while (index <= short.MaxValue);
- streamReader.Close();
- AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
- FormTreeViewHide();
- }
-
- private void SaveAsToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var saveFileDialog = new SaveFileDialog();
- saveFileDialog.InitialDirectory = MyProject.Computer.FileSystem.SpecialDirectories.MyDocuments;
- saveFileDialog.Filter = "数据文件(*.hpg)|*.hpg";
- if (saveFileDialog.ShowDialog(this) != DialogResult.OK)
- return;
- var fileName = saveFileDialog.FileName;
- AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
- var streamWriter = new StreamWriter(fileName);
- var startIndex = 0;
- do
- {
- streamWriter.WriteLine(BitConverter.ToString(publicva.EEPROM_Byte, startIndex, 1));
- checked { ++startIndex; }
- }
- while (startIndex <= short.MaxValue);
- streamWriter.Close();
- }
-
- private void ExitToolsStripMenuItem_Click(object sender, EventArgs e) => Application.Exit();
-
- private void CutToolStripMenuItem_Click(object sender, EventArgs e)
- {
- }
-
- private void CopyToolStripMenuItem_Click(object sender, EventArgs e)
- {
- }
-
- private void PasteToolStripMenuItem_Click(object sender, EventArgs e)
- {
- }
-
- private void ToolBarToolStripMenuItem_Click(object sender, EventArgs e)
- {
- ToolStrip.Visible = ToolBarToolStripMenuItem.Checked;
- }
-
- private void StatusBarToolStripMenuItem_Click(object sender, EventArgs e)
- {
- StatusStrip.Visible = StatusBarToolStripMenuItem.Checked;
- }
-
- private void CascadeToolStripMenuItem_Click(object sender, EventArgs e)
- {
- LayoutMdi(MdiLayout.Cascade);
- }
-
- private void TileVerticleToolStripMenuItem_Click(object sender, EventArgs e)
- {
- LayoutMdi(MdiLayout.TileVertical);
- }
-
- private void TileHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
- {
- LayoutMdi(MdiLayout.TileHorizontal);
- }
-
- private void ArrangeIconsToolStripMenuItem_Click(object sender, EventArgs e)
- {
- LayoutMdi(MdiLayout.ArrangeIcons);
- }
-
- private void CloseAllToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var mdiChildren = MdiChildren;
- var index = 0;
- while (index < mdiChildren.Length)
- {
- mdiChildren[index].Close();
- checked { ++index; }
- }
- }
-
- private void MDIParent1_Load(object sender, EventArgs e)
- {
- MyProject.Forms.ComForm.GetSerialPortNames();
- publicva.ChangeCOM_Count = 0U;
- publicva.COM_SelectIndex = 0U;
- MyProject.Forms.ComForm.ComboBox1.SelectedIndex = checked ((int) publicva.COM_SelectIndex);
- SerialPort1.PortName = Conversions.ToString(MyProject.Forms.ComForm.ComboBox1.Items[checked ((int) publicva.COM_SelectIndex)]);
- MyProject.Forms.TypeMsgForm.ComboBox机型.SelectedIndex = 0;
- try
- {
- var streamReader = File.OpenText(Application.StartupPath + "\\Config.hpg");
- publicva.Language = streamReader.ReadLine();
- streamReader.Close();
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- publicva.Language = "zh-CN";
- ProjectData.ClearProjectError();
- }
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- 中文ToolStripMenuItem.Checked = true;
- 英文ToolStripMenuItem.Checked = false;
- }
- else
- {
- 中文ToolStripMenuItem.Checked = false;
- 英文ToolStripMenuItem.Checked = true;
- }
- changeLanguage(publicva.Language);
- EditMenuListTreeView.Nodes[0].Expand();
- MyProject.Forms.ChannelMsg.MdiParent = this;
- MyProject.Forms.ChannelMsg.Show();
- MyProject.Forms.ChannelMsg.Focus();
- ShowNewForm(RuntimeHelpers.GetObjectValue(sender), e);
- Get_FreqRang();
- publicva.LastProgrammeTime = Conversions.ToString(DateAndTime.Now.Year) + "-" + Conversions.ToString(DateAndTime.Now.Month) + "-" + Conversions.ToString(DateAndTime.Now.Day);
- }
-
- private void TreeViewToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Panel1.Visible = TreeViewToolStripMenuItem.Checked;
- }
-
- private void EditMenuListTreeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- var name = e.Node.Name;
- if (Operators.CompareString(name, "节点1", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
- else if (Operators.CompareString(name, "节点2", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.TypeFuncMsgForm);
- else if (Operators.CompareString(name, "节点3", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.ScanFuncMsgForm);
- else if (Operators.CompareString(name, "节点4", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.BeepForm);
- else if (Operators.CompareString(name, "节点5", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.DtmfForm);
- else if (Operators.CompareString(name, "节点6", false) == 0)
- SafeLoadWindowByName(MyProject.Forms._2ToneForm);
- else if (Operators.CompareString(name, "节点7", false) == 0)
- SafeLoadWindowByName(MyProject.Forms._5ToneForm);
- else if (Operators.CompareString(name, "节点8", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.SOSMsgForm);
- else if (Operators.CompareString(name, "节点9", false) == 0)
- SafeLoadWindowByName(MyProject.Forms.RadioMsgForm);
- else if (Operators.CompareString(name, "节点10", false) == 0)
- {
- SafeLoadWindowByName(MyProject.Forms.MsgForm);
- }
- else
- {
- if (Operators.CompareString(name, "节点11", false) != 0)
- return;
- SafeLoadWindowByName(MyProject.Forms.SofeMsgForm);
- }
- }
-
- public void FormTreeViewHide()
- {
- var index1 = 10;
- var strArray1 = new string[12, 2]
- {
+ public MDIParent1()
{
- "HPG-68D",
- "节点0"
- },
- {
- "信道信息",
- "节点1"
- },
- {
- "整机信息",
- "节点2"
- },
- {
- "扫描信息",
- "节点3"
- },
- {
- "提示音",
- "节点4"
- },
- {
- "双音多频",
- "节点5"
- },
- {
- "两音",
- "节点6"
- },
- {
- "五音",
- "节点7"
- },
- {
- "紧急报警信息",
- "节点8"
- },
- {
- "收音机存储信道",
- "节点9"
- },
- {
- "嵌入信息",
- "节点10"
- },
- {
- "对讲机信息",
- "节点11"
+ Load += MDIParent1_Load;
+ __ENCList.Add(new WeakReference(this));
+ m_ChildFormNumber = 0;
+ InitializeComponent();
}
- };
- var strArray2 = new string[12, 2]
- {
+
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
{
- "HPG-68D",
- "节点0"
- },
- {
- "Channel Information",
- "节点1"
- },
- {
- "Optional Features",
- "节点2"
- },
- {
- "Scan Information",
- "节点3"
- },
- {
- "Alert Tone",
- "节点4"
- },
- {
- "DTMF",
- "节点5"
- },
- {
- "2-Tone",
- "节点6"
- },
- {
- "5-Tone",
- "节点7"
- },
- {
- "Emergency Information",
- "节点8"
- },
- {
- "Receiver Only Memory",
- "节点9"
- },
- {
- "Embedded Message",
- "节点10"
- },
- {
- "Radio Information",
- "节点11"
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
}
- };
- EditMenuListTreeView.Nodes.Clear();
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- EditMenuListTreeView.Nodes.Add(strArray1[0, 0]);
- EditMenuListTreeView.Nodes[0].Name = strArray1[0, 1];
- EditMenuListTreeView.SelectedNode = EditMenuListTreeView.Nodes[0];
- var index2 = 1;
- do
+
+ [DebuggerStepThrough]
+ private void InitializeComponent()
{
- EditMenuListTreeView.SelectedNode.Nodes.Add(strArray1[index2, 0]);
- EditMenuListTreeView.SelectedNode.Nodes[checked (index2 - 1)].Name = strArray1[index2, 1];
- checked { ++index2; }
- }
- while (index2 <= 11);
- }
- else
- {
- EditMenuListTreeView.Nodes.Add(strArray2[0, 0]);
- EditMenuListTreeView.Nodes[0].Name = strArray2[0, 1];
- EditMenuListTreeView.SelectedNode = EditMenuListTreeView.Nodes[0];
- var index3 = 1;
- do
- {
- EditMenuListTreeView.SelectedNode.Nodes.Add(strArray2[index3, 0]);
- EditMenuListTreeView.SelectedNode.Nodes[checked (index3 - 1)].Name = strArray2[index3, 1];
- checked { ++index3; }
- }
- while (index3 <= 11);
- }
- if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit5) > 0U)
- {
- 五音FToolStripMenuItem.Visible = true;
- }
- else
- {
- EditMenuListTreeView.Nodes[0].Nodes[6].Remove();
- 五音FToolStripMenuItem.Visible = false;
- if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
- MyProject.Forms._5ToneForm.Close();
- }
- if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit4) > 0U)
- {
- 两音TToolStripMenuItem.Visible = true;
- }
- else
- {
- EditMenuListTreeView.Nodes[0].Nodes[5].Remove();
- 两音TToolStripMenuItem.Visible = false;
- if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
- MyProject.Forms._2ToneForm.Close();
- }
- if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit0) > 0U)
- {
- 双音多频DToolStripMenuItem.Visible = true;
- }
- else
- {
- EditMenuListTreeView.Nodes[0].Nodes[4].Remove();
- 双音多频DToolStripMenuItem.Visible = false;
- if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
- MyProject.Forms.DtmfForm.Close();
- }
- if ((publicva.EEPROM_Byte[index1] & publicva.Bit5 | publicva.EEPROM_Byte[index1] & publicva.Bit4) != 0)
- {
- 提示音AToolStripMenuItem.Visible = true;
- }
- else
- {
- EditMenuListTreeView.Nodes[0].Nodes[3].Remove();
- 提示音AToolStripMenuItem.Visible = false;
- if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
- MyProject.Forms.BeepForm.Close();
- }
- EditMenuListTreeView.Nodes[0].Expand();
- }
-
- public void SafeLoadWindowByName(Form rFrm)
- {
- var mdiChildren = MdiChildren;
- var index = 0;
- while (index < mdiChildren.Length)
- {
- var form = mdiChildren[index];
- if (Operators.CompareString(form.Name, rFrm.Name, false) == 0)
- {
- form.Focus();
- return;
- }
- checked { ++index; }
- }
- rFrm.MdiParent = this;
- rFrm.Show();
- rFrm.Focus();
- }
-
- public bool JudgeIsFormLoaded(Form rFrm)
- {
- var mdiChildren = MdiChildren;
- var index = 0;
- while (index < mdiChildren.Length)
- {
- if (Operators.CompareString(mdiChildren[index].Name, rFrm.Name, false) == 0)
- return true;
- checked { ++index; }
- }
- return false;
- }
-
- public void AllForm_LoadData(object sender, EventArgs e)
- {
- if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
- MyProject.Forms.BeepForm.BeepForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
- MyProject.Forms._2ToneForm._2ToneForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
- MyProject.Forms._5ToneForm._5ToneForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
- MyProject.Forms.DtmfForm.DtmfForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.RadioMsgForm))
- MyProject.Forms.RadioMsgForm.RadioMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.ChannelMsg))
- MyProject.Forms.ChannelMsg.ChannelMsg_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
- MyProject.Forms.ScanFuncMsgForm.ScanFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.SOSMsgForm))
- MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.TypeFuncMsgForm))
- MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.MsgForm))
- MyProject.Forms.MsgForm.MsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- if (!JudgeIsFormLoaded(MyProject.Forms.SofeMsgForm))
- return;
- MyProject.Forms.SofeMsgForm.SofeMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- public void AllForm_SaveData(object sender, EventArgs e)
- {
- if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
- MyProject.Forms.BeepForm.BeepForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
- MyProject.Forms._2ToneForm._2ToneForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
- MyProject.Forms._5ToneForm._5ToneForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
- MyProject.Forms.DtmfForm.DtmfForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.RadioMsgForm))
- MyProject.Forms.RadioMsgForm.RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.ChannelMsg))
- MyProject.Forms.ChannelMsg.ChannelMsg_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
- MyProject.Forms.ScanFuncMsgForm.ScanFuncMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.SOSMsgForm))
- MyProject.Forms.SOSMsgForm.SOSMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (JudgeIsFormLoaded(MyProject.Forms.TypeFuncMsgForm))
- MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- if (!JudgeIsFormLoaded(MyProject.Forms.MsgForm))
- return;
- MyProject.Forms.MsgForm.MsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- public void SetControl_Text(Control object_x, int address)
- {
- if (!(object_x is ComboBox))
- return;
- if (((ComboBox) object_x).FindStringExact(publicva.EEPROM_Byte[address].ToString()) != -1)
- ((ComboBox) object_x).Text = Conversions.ToString(publicva.EEPROM_Byte[address]);
- else
- ((ComboBox) object_x).SelectedIndex = 0;
- }
-
- public void GetContol_Data(Control object_x, int address)
- {
- if (!(object_x is ComboBox))
- return;
- publicva.EEPROM_Byte[address] = !(((ComboBox) object_x).FindStringExact(((ComboBox) object_x).Text) == -1 | ((ComboBox) object_x).SelectedIndex == 0) ? Conversions.ToByte(((ComboBox) object_x).Text) : (byte) 0;
- }
-
- public void Judge_SetControl_SetControl_U8_Data(
- Control object_x,
- int address,
- byte AndBit,
- int Right_No)
- {
- if (!(object_x is ComboBox))
- return;
- if (((ComboBox) object_x).FindString(publicva.EEPROM_Byte[address].ToString()) == -1)
- publicva.EEPROM_Byte[address] = 0;
- SetControl_U8_Data(object_x, address, AndBit, Right_No);
- }
-
- public void SetControl_U8_Data(Control object_x, int address, byte AndBit, int Right_No)
- {
- if (object_x is ComboBox)
- {
- try
- {
- ((ComboBox) object_x).SelectedIndex = (byte) ((publicva.EEPROM_Byte[address] & (uint) AndBit) >> (Right_No & 7));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- var num = (int) Interaction.MsgBox(object_x.Name.ToString() + " 溢出出错值: " + ((byte) ((publicva.EEPROM_Byte[address] & (uint) AndBit) >> (Right_No & 7))).ToString());
- ((ComboBox) object_x).SelectedIndex = 0;
- ProjectData.ClearProjectError();
- }
- }
- if (!(object_x is CheckBox))
- return;
- try
- {
- if (Right_No != 0)
- ((CheckBox) object_x).Checked = ((byte) ~(publicva.EEPROM_Byte[address] & AndBit) & (uint) AndBit) > 0U;
- else
- ((CheckBox) object_x).Checked = (publicva.EEPROM_Byte[address] & (uint) AndBit) > 0U;
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- var num = (int) Interaction.MsgBox(object_x.Name.ToString() + " 溢出出错值: " + ((byte) (publicva.EEPROM_Byte[address] & AndBit)).ToString());
- ((CheckBox) object_x).Checked = false;
- ProjectData.ClearProjectError();
- }
- }
-
- public void GetControl_U8_Data(Control object_x, int address, byte AndBit, int Right_No)
- {
- if (object_x is ComboBox)
- {
- publicva.EEPROM_Byte[address] = (byte) (publicva.EEPROM_Byte[address] & ~AndBit);
- publicva.EEPROM_Byte[address] = checked ((byte) (publicva.EEPROM_Byte[address] | ((ComboBox) object_x).SelectedIndex << Right_No));
- }
- if (!(object_x is CheckBox))
- return;
- publicva.EEPROM_Byte[address] = !((CheckBox) object_x).Checked ? (Right_No == 0 ? (byte) (publicva.EEPROM_Byte[address] & ~AndBit) : (byte) (publicva.EEPROM_Byte[address] | AndBit)) : (Right_No == 0 ? (byte) (publicva.EEPROM_Byte[address] | AndBit) : (byte) (publicva.EEPROM_Byte[address] & ~AndBit));
- }
-
- public object Get_2ByteToU16_L_H(int address)
- {
- return checked (publicva.EEPROM_Byte[address + 1] * 256 + publicva.EEPROM_Byte[address + 0] * 1);
- }
-
- public void Set_U16To2Byte_L_H(int value, int address)
- {
- publicva.EEPROM_Byte[checked (address + 1)] = checked ((byte) ((value & 65280) >> 8));
- publicva.EEPROM_Byte[checked (address + 0)] = checked ((byte) (value & byte.MaxValue));
- }
-
- public object Get_4ByteToU32_L_H(int address)
- {
- return checked (publicva.EEPROM_Byte[address + 3] * 16777216 + publicva.EEPROM_Byte[address + 2] * 65536 + publicva.EEPROM_Byte[address + 1] * 256 + publicva.EEPROM_Byte[address + 0] * 1);
- }
-
- public void Set_U32To4Byte_L_H(int value, int address)
- {
- publicva.EEPROM_Byte[checked (address + 3)] = checked ((byte) ((value & -16777216) >> 24));
- publicva.EEPROM_Byte[checked (address + 2)] = checked ((byte) ((value & 16711680) >> 16));
- publicva.EEPROM_Byte[checked (address + 1)] = checked ((byte) ((value & 65280) >> 8));
- publicva.EEPROM_Byte[checked (address + 0)] = checked ((byte) (value & byte.MaxValue));
- }
-
- public void Get_FreqRang()
- {
- var num = 768;
- var index = 0;
- do
- {
- publicva.RxFreqRang[index, 0] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked (num + 0 + index * 16)));
- publicva.RxFreqRang[index, 1] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked (num + 4 + index * 16)));
- publicva.TxFreqRang[index, 0] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked (num + 8 + index * 16)));
- publicva.TxFreqRang[index, 1] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked (num + 12 + index * 16)));
- checked { ++index; }
- }
- while (index <= 6);
- }
-
- public void Set_FreqRang()
- {
- var num = 768;
- var index = 0;
- do
- {
- Set_U32To4Byte_L_H(checked ((int) publicva.RxFreqRang[index, 0]), checked (num + 0 + index * 16));
- Set_U32To4Byte_L_H(checked ((int) publicva.RxFreqRang[index, 1]), checked (num + 4 + index * 16));
- Set_U32To4Byte_L_H(checked ((int) publicva.TxFreqRang[index, 0]), checked (num + 8 + index * 16));
- Set_U32To4Byte_L_H(checked ((int) publicva.TxFreqRang[index, 1]), checked (num + 12 + index * 16));
- checked { ++index; }
- }
- while (index <= 6);
- }
-
- private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SaveAsToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void SaveToolStripButton_Click(object sender, EventArgs e)
- {
- SaveAsToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void 通信端口PToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.ComForm.ShowDialog();
- }
-
- public bool JudgeArrayDataIsSame(byte[] source, byte[] input)
- {
- var num = Information.UBound(source);
- var index = 0;
- while (index <= num)
- {
- if (source[index] != input[index])
- return false;
- checked { ++index; }
- }
- return true;
- }
-
- public object Get_CRC_Data(byte[] UARTDATA)
- {
- var num1 = 0;
- var num2 = checked ((uint) (UARTDATA[6] + 3 - 1));
- uint num3 = 0;
- while (num3 <= num2)
- {
- num1 = checked (num1 + UARTDATA[(int) (4L + num3)]) & byte.MaxValue;
- checked { ++num3; }
- }
- return checked (25 - num1 & byte.MaxValue ^ byte.MaxValue + 1) & byte.MaxValue;
- }
-
- public void Tx_WriteDataCOM_Frame()
- {
- publicva.SendDataBuf[0] = 2;
- publicva.SendDataBuf[1] = 35;
- publicva.SendDataBuf[2] = 230;
- publicva.SendDataBuf[3] = 245;
- publicva.SendDataBuf[4] = checked ((byte) unchecked (publicva.Rw_EEPROM_Add_Length_List[checked ((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] / 256L));
- publicva.SendDataBuf[5] = checked ((byte) unchecked (publicva.Rw_EEPROM_Add_Length_List[checked ((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] % 256L));
- publicva.SendDataBuf[6] = checked ((byte) publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 1]);
- var num1 = checked ((uint) (publicva.SendDataBuf[6] - 1));
- uint num2 = 0;
- while (num2 <= num1)
- {
- publicva.SendDataBuf[checked ((int) (7L + num2))] = publicva.EEPROM_Byte[checked ((int) (publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 0] + num2))];
- checked { ++num2; }
- }
- var index = checked (7 + publicva.SendDataBuf[6]);
- publicva.SendDataBuf[index] = Conversions.ToByte(Get_CRC_Data(publicva.SendDataBuf));
- publicva.SendDataBuf[checked (index + 1)] = 3;
- publicva.ReceivedCount = 5U;
- SerialPort1.Write(publicva.SendDataBuf, 0, checked (7 + publicva.SendDataBuf[6] + 1 + 1));
- }
-
- public void WriteDataToPC_EEPROM_Byte()
- {
- var num1 = checked ((uint) (publicva.ReceivedDataBuf[6] - 1));
- uint num2 = 0;
- while (num2 <= num1)
- {
- publicva.EEPROM_Byte[checked ((int) (publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 0] + num2))] = publicva.ReceivedDataBuf[checked ((int) (7L + num2))];
- checked { ++num2; }
- }
- }
-
- public void Tx_ReadDataCOM_Frame()
- {
- publicva.SendDataBuf[0] = 2;
- publicva.SendDataBuf[1] = 35;
- publicva.SendDataBuf[2] = 229;
- publicva.SendDataBuf[3] = 246;
- publicva.SendDataBuf[4] = checked ((byte) unchecked (publicva.Rw_EEPROM_Add_Length_List[checked ((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] / 256L));
- publicva.SendDataBuf[5] = checked ((byte) unchecked (publicva.Rw_EEPROM_Add_Length_List[checked ((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] % 256L));
- publicva.SendDataBuf[6] = checked ((byte) publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 1]);
- publicva.SendDataBuf[7] = 3;
- publicva.ReceivedCount = checked ((uint) (7 + publicva.SendDataBuf[6] + 1 + 1));
- SerialPort1.Write(publicva.SendDataBuf, 0, 8);
- }
-
- public bool MSCcomm_StartInit(string MscommComStr, uint[,] AddressList)
- {
- bool flag;
- try
- {
- if (!SerialPort1.IsOpen)
- {
- SerialPort1.Open();
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("无法打开串口,请检查端口是否被其它程序占用!!!", "Can not open serial port, check whether the port is occupied by other programs!!!");
- flag = false;
- goto label_9;
- }
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MyProject.Forms.ChannelMsg.Msgbox_Msg("无法打开串口,请检查端口是否被其它程序占用!!!", "Can not open serial port, check whether the port is occupied by other programs!!!");
- flag = false;
- ProjectData.ClearProjectError();
- goto label_9;
- }
- SerialPort1.DiscardNull = true;
- publicva.F_MSCommStop = false;
- publicva.MSCommTimeOut = 60U;
- publicva.MSCommReconnectionCount = 0U;
- publicva.ChangeCOM_Count = 0U;
- publicva.MSCommStatus = 0U;
- publicva.MscommCom = MscommComStr;
- publicva.ReceivedCount = 5U;
- publicva.Rw_EEPROM_Add_Length_ListIndex = 0U;
- publicva.Rw_EEPROM_Add_Length_ListSum = checked ((uint) (Information.UBound(AddressList) + 1));
- var num = checked ((uint) Information.UBound(AddressList));
- uint index = 0;
- while (index <= num)
- {
- publicva.Rw_EEPROM_Add_Length_List[checked ((int) index), 0] = AddressList[checked ((int) index), 0];
- publicva.Rw_EEPROM_Add_Length_List[checked ((int) index), 1] = AddressList[checked ((int) index), 1];
- checked { ++index; }
- }
- SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
- Timer1.Enabled = true;
- publicva.LastProgrammeTime = Conversions.ToString(DateAndTime.Now.Year) + "-" + Conversions.ToString(DateAndTime.Now.Month) + "-" + Conversions.ToString(DateAndTime.Now.Day);
- flag = true;
-label_9:
- return flag;
- }
-
- public void MSComm_Stop()
- {
- Timer1.Enabled = false;
- publicva.MSCommTimeOut = 0U;
- publicva.ChangeCOM_CNT = 0U;
- publicva.F_MSCommStop = true;
- publicva.ReceivedCount = 5U;
- SerialPort1.DiscardNull = true;
- if (!SerialPort1.IsOpen)
- return;
- Thread.Sleep(500);
- Application.DoEvents();
- SerialPort1.Close();
- }
-
- private void SerialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
- {
- if (SerialPort1.BytesToRead < publicva.ReceivedCount)
- return;
- SerialPort1.Read(publicva.ReceivedDataBuf, 0, checked ((int) publicva.ReceivedCount));
- switch (publicva.MSCommStatus)
- {
- case 0:
- if (JudgeArrayDataIsSame(publicva.Rx_Connect_OK, publicva.ReceivedDataBuf))
- {
- publicva.MSCommTimeOut = 40U;
- publicva.ChangeCOM_CNT = 0U;
- publicva.MSCommStatus = 1U;
- publicva.ReceivedCount = 21U;
- SerialPort1.DiscardNull = false;
- SerialPort1.Write(publicva.Tx_GetBandMsg, 0, publicva.Tx_GetBandMsg.Length);
- break;
- }
- publicva.ChangeCOM_CNT = 0U;
- SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
- break;
- case 1:
- var flag = false;
- if (JudgeArrayDataIsSame(publicva.Rx_GetBandMsg, publicva.ReceivedDataBuf))
- {
- publicva.MSCommTimeOut = 40U;
- var mscommCom1 = publicva.MscommCom;
- if (Operators.CompareString(mscommCom1, "Write", false) == 0)
+ components = new Container();
+ var componentResourceManager = new ComponentResourceManager(typeof(MDIParent1));
+ MenuStrip = new MenuStrip();
+ FileMenu = new ToolStripMenuItem();
+ NewToolStripMenuItem = new ToolStripMenuItem();
+ OpenToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator3 = new ToolStripSeparator();
+ SaveToolStripMenuItem = new ToolStripMenuItem();
+ SaveAsToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator4 = new ToolStripSeparator();
+ PrintToolStripMenuItem = new ToolStripMenuItem();
+ PrintPreviewToolStripMenuItem = new ToolStripMenuItem();
+ PrintSetupToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator5 = new ToolStripSeparator();
+ ExitToolStripMenuItem = new ToolStripMenuItem();
+ TypeMenu = new ToolStripMenuItem();
+ 机型信息MToolStripMenuItem = new ToolStripMenuItem();
+ EditMenuList = new ToolStripMenuItem();
+ 信道信息CToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator9 = new ToolStripSeparator();
+ 整机信息OToolStripMenuItem = new ToolStripMenuItem();
+ 扫描信息SToolStripMenuItem = new ToolStripMenuItem();
+ 提示音AToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator10 = new ToolStripSeparator();
+ 双音多频DToolStripMenuItem = new ToolStripMenuItem();
+ 两音TToolStripMenuItem = new ToolStripMenuItem();
+ 五音FToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator11 = new ToolStripSeparator();
+ 紧急报警信息EToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator15 = new ToolStripSeparator();
+ 收音机存储信道JToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator12 = new ToolStripSeparator();
+ 嵌入信息IToolStripMenuItem = new ToolStripMenuItem();
+ 对讲机信息RToolStripMenuItem = new ToolStripMenuItem();
+ ProgrammeMenu = new ToolStripMenuItem();
+ 从对讲机读取数据RToolStripMenuItem = new ToolStripMenuItem();
+ 向对讲机写入数据WToolStripMenuItem = new ToolStripMenuItem();
+ SetMenu = new ToolStripMenuItem();
+ 语言设置LToolStripMenuItem = new ToolStripMenuItem();
+ 中文ToolStripMenuItem = new ToolStripMenuItem();
+ 英文ToolStripMenuItem = new ToolStripMenuItem();
+ 通信端口PToolStripMenuItem = new ToolStripMenuItem();
+ 更改密码CToolStripMenuItem = new ToolStripMenuItem();
+ ViewMenu = new ToolStripMenuItem();
+ TreeViewToolStripMenuItem = new ToolStripMenuItem();
+ ToolBarToolStripMenuItem = new ToolStripMenuItem();
+ StatusBarToolStripMenuItem = new ToolStripMenuItem();
+ WindowsMenu = new ToolStripMenuItem();
+ NewWindowToolStripMenuItem = new ToolStripMenuItem();
+ CascadeToolStripMenuItem = new ToolStripMenuItem();
+ TileVerticalToolStripMenuItem = new ToolStripMenuItem();
+ TileHorizontalToolStripMenuItem = new ToolStripMenuItem();
+ ArrangeIconsToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator13 = new ToolStripSeparator();
+ CloseAllToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator14 = new ToolStripSeparator();
+ HelpMenu = new ToolStripMenuItem();
+ ContentsToolStripMenuItem = new ToolStripMenuItem();
+ IndexToolStripMenuItem = new ToolStripMenuItem();
+ SearchToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator8 = new ToolStripSeparator();
+ 帮助主题HToolStripMenuItem = new ToolStripMenuItem();
+ AboutToolStripMenuItem = new ToolStripMenuItem();
+ EditMenu = new ToolStripMenuItem();
+ UndoToolStripMenuItem = new ToolStripMenuItem();
+ RedoToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator6 = new ToolStripSeparator();
+ CutToolStripMenuItem = new ToolStripMenuItem();
+ CopyToolStripMenuItem = new ToolStripMenuItem();
+ PasteToolStripMenuItem = new ToolStripMenuItem();
+ ToolStripSeparator7 = new ToolStripSeparator();
+ SelectAllToolStripMenuItem = new ToolStripMenuItem();
+ ToolsMenu = new ToolStripMenuItem();
+ OptionsToolStripMenuItem = new ToolStripMenuItem();
+ ToolStrip = new ToolStrip();
+ NewToolStripButton = new ToolStripButton();
+ OpenToolStripButton = new ToolStripButton();
+ SaveToolStripButton = new ToolStripButton();
+ ToolStripSeparator1 = new ToolStripSeparator();
+ PrintToolStripButton = new ToolStripButton();
+ PrintPreviewToolStripButton = new ToolStripButton();
+ ToolStripSeparator2 = new ToolStripSeparator();
+ ReadToolStripButton = new ToolStripButton();
+ ComPortToolStripButton = new ToolStripButton();
+ WriteToolStripButton = new ToolStripButton();
+ ToolStripSeparator16 = new ToolStripSeparator();
+ HelpToolStripButton = new ToolStripButton();
+ StatusStrip = new StatusStrip();
+ ToolStripStatusLabel = new ToolStripStatusLabel();
+ ToolTip = new ToolTip(components);
+ Panel1 = new Panel();
+ EditMenuListTreeView = new TreeView();
+ SerialPort1 = new SerialPort(components);
+ Timer1 = new System.Windows.Forms.Timer(components);
+ MenuStrip.SuspendLayout();
+ ToolStrip.SuspendLayout();
+ StatusStrip.SuspendLayout();
+ Panel1.SuspendLayout();
+ SuspendLayout();
+ MenuStrip.AccessibleDescription = null;
+ MenuStrip.AccessibleName = null;
+ componentResourceManager.ApplyResources(MenuStrip, "MenuStrip");
+ MenuStrip.BackgroundImage = null;
+ MenuStrip.Font = null;
+ MenuStrip.Items.AddRange(new ToolStripItem[10]
{
- if ((publicva.ReceivedDataBuf[15] & (uint) publicva.Bit6) > 0U)
- flag = true;
- }
- else if (Operators.CompareString(mscommCom1, "Read", false) == 0)
+ FileMenu,
+ TypeMenu,
+ EditMenuList,
+ ProgrammeMenu,
+ SetMenu,
+ ViewMenu,
+ WindowsMenu,
+ HelpMenu,
+ EditMenu,
+ ToolsMenu
+ });
+ MenuStrip.MdiWindowListItem = WindowsMenu;
+ MenuStrip.Name = "MenuStrip";
+ ToolTip.SetToolTip(MenuStrip, componentResourceManager.GetString("MenuStrip.ToolTip"));
+ FileMenu.AccessibleDescription = null;
+ FileMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(FileMenu, "FileMenu");
+ FileMenu.BackgroundImage = null;
+ FileMenu.DropDownItems.AddRange(new ToolStripItem[11]
{
- if ((publicva.ReceivedDataBuf[15] & (uint) publicva.Bit5) > 0U)
- flag = true;
- }
- else if (Operators.CompareString(mscommCom1, "Write_Password", false) == 0 || Operators.CompareString(mscommCom1, "Read_Password", false) != 0)
- ;
- if (flag)
+ NewToolStripMenuItem,
+ OpenToolStripMenuItem,
+ ToolStripSeparator3,
+ SaveToolStripMenuItem,
+ SaveAsToolStripMenuItem,
+ ToolStripSeparator4,
+ PrintToolStripMenuItem,
+ PrintPreviewToolStripMenuItem,
+ PrintSetupToolStripMenuItem,
+ ToolStripSeparator5,
+ ExitToolStripMenuItem
+ });
+ FileMenu.Name = "FileMenu";
+ FileMenu.ShortcutKeyDisplayString = null;
+ NewToolStripMenuItem.AccessibleDescription = null;
+ NewToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(NewToolStripMenuItem, "NewToolStripMenuItem");
+ NewToolStripMenuItem.BackgroundImage = null;
+ NewToolStripMenuItem.Name = "NewToolStripMenuItem";
+ NewToolStripMenuItem.ShortcutKeyDisplayString = null;
+ OpenToolStripMenuItem.AccessibleDescription = null;
+ OpenToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(OpenToolStripMenuItem, "OpenToolStripMenuItem");
+ OpenToolStripMenuItem.BackgroundImage = null;
+ OpenToolStripMenuItem.Name = "OpenToolStripMenuItem";
+ OpenToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator3.AccessibleDescription = null;
+ ToolStripSeparator3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator3, "ToolStripSeparator3");
+ ToolStripSeparator3.Name = "ToolStripSeparator3";
+ SaveToolStripMenuItem.AccessibleDescription = null;
+ SaveToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(SaveToolStripMenuItem, "SaveToolStripMenuItem");
+ SaveToolStripMenuItem.BackgroundImage = null;
+ SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
+ SaveToolStripMenuItem.ShortcutKeyDisplayString = null;
+ SaveAsToolStripMenuItem.AccessibleDescription = null;
+ SaveAsToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(SaveAsToolStripMenuItem, "SaveAsToolStripMenuItem");
+ SaveAsToolStripMenuItem.BackgroundImage = null;
+ SaveAsToolStripMenuItem.Name = "SaveAsToolStripMenuItem";
+ SaveAsToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator4.AccessibleDescription = null;
+ ToolStripSeparator4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator4, "ToolStripSeparator4");
+ ToolStripSeparator4.Name = "ToolStripSeparator4";
+ PrintToolStripMenuItem.AccessibleDescription = null;
+ PrintToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(PrintToolStripMenuItem, "PrintToolStripMenuItem");
+ PrintToolStripMenuItem.BackgroundImage = null;
+ PrintToolStripMenuItem.Name = "PrintToolStripMenuItem";
+ PrintToolStripMenuItem.ShortcutKeyDisplayString = null;
+ PrintPreviewToolStripMenuItem.AccessibleDescription = null;
+ PrintPreviewToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(PrintPreviewToolStripMenuItem, "PrintPreviewToolStripMenuItem");
+ PrintPreviewToolStripMenuItem.BackgroundImage = null;
+ PrintPreviewToolStripMenuItem.Name = "PrintPreviewToolStripMenuItem";
+ PrintPreviewToolStripMenuItem.ShortcutKeyDisplayString = null;
+ PrintSetupToolStripMenuItem.AccessibleDescription = null;
+ PrintSetupToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(PrintSetupToolStripMenuItem, "PrintSetupToolStripMenuItem");
+ PrintSetupToolStripMenuItem.BackgroundImage = null;
+ PrintSetupToolStripMenuItem.Name = "PrintSetupToolStripMenuItem";
+ PrintSetupToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator5.AccessibleDescription = null;
+ ToolStripSeparator5.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator5, "ToolStripSeparator5");
+ ToolStripSeparator5.Name = "ToolStripSeparator5";
+ ExitToolStripMenuItem.AccessibleDescription = null;
+ ExitToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(ExitToolStripMenuItem, "ExitToolStripMenuItem");
+ ExitToolStripMenuItem.BackgroundImage = null;
+ ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
+ ExitToolStripMenuItem.ShortcutKeyDisplayString = null;
+ TypeMenu.AccessibleDescription = null;
+ TypeMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(TypeMenu, "TypeMenu");
+ TypeMenu.BackgroundImage = null;
+ TypeMenu.DropDownItems.AddRange(new ToolStripItem[1]
{
- publicva.MSCommStatus = 7U;
- }
- else
+ 机型信息MToolStripMenuItem
+ });
+ TypeMenu.Name = "TypeMenu";
+ TypeMenu.ShortcutKeyDisplayString = null;
+ 机型信息MToolStripMenuItem.AccessibleDescription = null;
+ 机型信息MToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(机型信息MToolStripMenuItem, "机型信息MToolStripMenuItem");
+ 机型信息MToolStripMenuItem.BackgroundImage = null;
+ 机型信息MToolStripMenuItem.Name = "机型信息MToolStripMenuItem";
+ 机型信息MToolStripMenuItem.ShortcutKeyDisplayString = null;
+ EditMenuList.AccessibleDescription = null;
+ EditMenuList.AccessibleName = null;
+ componentResourceManager.ApplyResources(EditMenuList, "EditMenuList");
+ EditMenuList.BackgroundImage = null;
+ EditMenuList.DropDownItems.AddRange(new ToolStripItem[16]
{
- publicva.MSCommStatus = 3U;
- var mscommCom2 = publicva.MscommCom;
- if (Operators.CompareString(mscommCom2, "Write", false) == 0 || Operators.CompareString(mscommCom2, "Write_Password", false) == 0)
- Tx_WriteDataCOM_Frame();
- else if (Operators.CompareString(mscommCom2, "Read", false) == 0 || Operators.CompareString(mscommCom2, "Read_Password", false) == 0)
- Tx_ReadDataCOM_Frame();
- }
- break;
- }
- break;
- case 2:
- if (JudgeArrayDataIsSame(publicva.Rx_Password_OK, publicva.ReceivedDataBuf))
- {
- publicva.MSCommTimeOut = 40U;
- publicva.MSCommStatus = 3U;
- var mscommCom = publicva.MscommCom;
- if (Operators.CompareString(mscommCom, "Write", false) == 0)
+ 信道信息CToolStripMenuItem,
+ ToolStripSeparator9,
+ 整机信息OToolStripMenuItem,
+ 扫描信息SToolStripMenuItem,
+ 提示音AToolStripMenuItem,
+ ToolStripSeparator10,
+ 双音多频DToolStripMenuItem,
+ 两音TToolStripMenuItem,
+ 五音FToolStripMenuItem,
+ ToolStripSeparator11,
+ 紧急报警信息EToolStripMenuItem,
+ ToolStripSeparator15,
+ 收音机存储信道JToolStripMenuItem,
+ ToolStripSeparator12,
+ 嵌入信息IToolStripMenuItem,
+ 对讲机信息RToolStripMenuItem
+ });
+ EditMenuList.Name = "EditMenuList";
+ EditMenuList.ShortcutKeyDisplayString = null;
+ 信道信息CToolStripMenuItem.AccessibleDescription = null;
+ 信道信息CToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(信道信息CToolStripMenuItem, "信道信息CToolStripMenuItem");
+ 信道信息CToolStripMenuItem.BackgroundImage = null;
+ 信道信息CToolStripMenuItem.Checked = true;
+ 信道信息CToolStripMenuItem.CheckState = CheckState.Checked;
+ 信道信息CToolStripMenuItem.Name = "信道信息CToolStripMenuItem";
+ 信道信息CToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator9.AccessibleDescription = null;
+ ToolStripSeparator9.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator9, "ToolStripSeparator9");
+ ToolStripSeparator9.Name = "ToolStripSeparator9";
+ 整机信息OToolStripMenuItem.AccessibleDescription = null;
+ 整机信息OToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(整机信息OToolStripMenuItem, "整机信息OToolStripMenuItem");
+ 整机信息OToolStripMenuItem.BackgroundImage = null;
+ 整机信息OToolStripMenuItem.Name = "整机信息OToolStripMenuItem";
+ 整机信息OToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 扫描信息SToolStripMenuItem.AccessibleDescription = null;
+ 扫描信息SToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(扫描信息SToolStripMenuItem, "扫描信息SToolStripMenuItem");
+ 扫描信息SToolStripMenuItem.BackgroundImage = null;
+ 扫描信息SToolStripMenuItem.Name = "扫描信息SToolStripMenuItem";
+ 扫描信息SToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 提示音AToolStripMenuItem.AccessibleDescription = null;
+ 提示音AToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(提示音AToolStripMenuItem, "提示音AToolStripMenuItem");
+ 提示音AToolStripMenuItem.BackgroundImage = null;
+ 提示音AToolStripMenuItem.Name = "提示音AToolStripMenuItem";
+ 提示音AToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator10.AccessibleDescription = null;
+ ToolStripSeparator10.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator10, "ToolStripSeparator10");
+ ToolStripSeparator10.Name = "ToolStripSeparator10";
+ 双音多频DToolStripMenuItem.AccessibleDescription = null;
+ 双音多频DToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(双音多频DToolStripMenuItem, "双音多频DToolStripMenuItem");
+ 双音多频DToolStripMenuItem.BackgroundImage = null;
+ 双音多频DToolStripMenuItem.Name = "双音多频DToolStripMenuItem";
+ 双音多频DToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 两音TToolStripMenuItem.AccessibleDescription = null;
+ 两音TToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(两音TToolStripMenuItem, "两音TToolStripMenuItem");
+ 两音TToolStripMenuItem.BackgroundImage = null;
+ 两音TToolStripMenuItem.Name = "两音TToolStripMenuItem";
+ 两音TToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 五音FToolStripMenuItem.AccessibleDescription = null;
+ 五音FToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(五音FToolStripMenuItem, "五音FToolStripMenuItem");
+ 五音FToolStripMenuItem.BackgroundImage = null;
+ 五音FToolStripMenuItem.Name = "五音FToolStripMenuItem";
+ 五音FToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator11.AccessibleDescription = null;
+ ToolStripSeparator11.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator11, "ToolStripSeparator11");
+ ToolStripSeparator11.Name = "ToolStripSeparator11";
+ 紧急报警信息EToolStripMenuItem.AccessibleDescription = null;
+ 紧急报警信息EToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(紧急报警信息EToolStripMenuItem, "紧急报警信息EToolStripMenuItem");
+ 紧急报警信息EToolStripMenuItem.BackgroundImage = null;
+ 紧急报警信息EToolStripMenuItem.Name = "紧急报警信息EToolStripMenuItem";
+ 紧急报警信息EToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator15.AccessibleDescription = null;
+ ToolStripSeparator15.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator15, "ToolStripSeparator15");
+ ToolStripSeparator15.Name = "ToolStripSeparator15";
+ 收音机存储信道JToolStripMenuItem.AccessibleDescription = null;
+ 收音机存储信道JToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(收音机存储信道JToolStripMenuItem, "收音机存储信道JToolStripMenuItem");
+ 收音机存储信道JToolStripMenuItem.BackgroundImage = null;
+ 收音机存储信道JToolStripMenuItem.Name = "收音机存储信道JToolStripMenuItem";
+ 收音机存储信道JToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator12.AccessibleDescription = null;
+ ToolStripSeparator12.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator12, "ToolStripSeparator12");
+ ToolStripSeparator12.Name = "ToolStripSeparator12";
+ 嵌入信息IToolStripMenuItem.AccessibleDescription = null;
+ 嵌入信息IToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(嵌入信息IToolStripMenuItem, "嵌入信息IToolStripMenuItem");
+ 嵌入信息IToolStripMenuItem.BackgroundImage = null;
+ 嵌入信息IToolStripMenuItem.Name = "嵌入信息IToolStripMenuItem";
+ 嵌入信息IToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 对讲机信息RToolStripMenuItem.AccessibleDescription = null;
+ 对讲机信息RToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(对讲机信息RToolStripMenuItem, "对讲机信息RToolStripMenuItem");
+ 对讲机信息RToolStripMenuItem.BackgroundImage = null;
+ 对讲机信息RToolStripMenuItem.Name = "对讲机信息RToolStripMenuItem";
+ 对讲机信息RToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ProgrammeMenu.AccessibleDescription = null;
+ ProgrammeMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(ProgrammeMenu, "ProgrammeMenu");
+ ProgrammeMenu.BackgroundImage = null;
+ ProgrammeMenu.DropDownItems.AddRange(new ToolStripItem[2]
{
- Tx_WriteDataCOM_Frame();
- break;
- }
- if (Operators.CompareString(mscommCom, "Read", false) == 0)
+ 从对讲机读取数据RToolStripMenuItem,
+ 向对讲机写入数据WToolStripMenuItem
+ });
+ ProgrammeMenu.Name = "ProgrammeMenu";
+ ProgrammeMenu.ShortcutKeyDisplayString = null;
+ 从对讲机读取数据RToolStripMenuItem.AccessibleDescription = null;
+ 从对讲机读取数据RToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(从对讲机读取数据RToolStripMenuItem, "从对讲机读取数据RToolStripMenuItem");
+ 从对讲机读取数据RToolStripMenuItem.BackgroundImage = null;
+ 从对讲机读取数据RToolStripMenuItem.Name = "从对讲机读取数据RToolStripMenuItem";
+ 从对讲机读取数据RToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 向对讲机写入数据WToolStripMenuItem.AccessibleDescription = null;
+ 向对讲机写入数据WToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(向对讲机写入数据WToolStripMenuItem, "向对讲机写入数据WToolStripMenuItem");
+ 向对讲机写入数据WToolStripMenuItem.BackgroundImage = null;
+ 向对讲机写入数据WToolStripMenuItem.Name = "向对讲机写入数据WToolStripMenuItem";
+ 向对讲机写入数据WToolStripMenuItem.ShortcutKeyDisplayString = null;
+ SetMenu.AccessibleDescription = null;
+ SetMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(SetMenu, "SetMenu");
+ SetMenu.BackgroundImage = null;
+ SetMenu.DropDownItems.AddRange(new ToolStripItem[3]
{
- Tx_ReadDataCOM_Frame();
- break;
- }
- break;
- }
- if (JudgeArrayDataIsSame(publicva.Rx_Password_Error, publicva.ReceivedDataBuf))
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("密码错误", "Parrword Error");
- publicva.MSCommStatus = 6U;
- break;
- }
- break;
- case 3:
- var mscommCom3 = publicva.MscommCom;
- if (Operators.CompareString(mscommCom3, "Write", false) == 0 || Operators.CompareString(mscommCom3, "Write_Password", false) == 0)
- {
- if (JudgeArrayDataIsSame(publicva.Rx_CRC_DATA_OK, publicva.ReceivedDataBuf))
+ 语言设置LToolStripMenuItem,
+ 通信端口PToolStripMenuItem,
+ 更改密码CToolStripMenuItem
+ });
+ SetMenu.Name = "SetMenu";
+ SetMenu.ShortcutKeyDisplayString = null;
+ 语言设置LToolStripMenuItem.AccessibleDescription = null;
+ 语言设置LToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(语言设置LToolStripMenuItem, "语言设置LToolStripMenuItem");
+ 语言设置LToolStripMenuItem.BackgroundImage = null;
+ 语言设置LToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[2]
{
- publicva.MSCommTimeOut = 40U;
- publicva.Rw_EEPROM_Add_Length_ListIndex = checked ((uint) (publicva.Rw_EEPROM_Add_Length_ListIndex + 1L));
- if (publicva.Rw_EEPROM_Add_Length_ListIndex >= publicva.Rw_EEPROM_Add_Length_ListSum)
- {
- publicva.MSCommStatus = 4U;
- publicva.ReceivedCount = 5U;
- SerialPort1.Write(publicva.Tx_MSCommFinish, 0, publicva.Tx_MSCommFinish.Length);
- break;
- }
- Tx_WriteDataCOM_Frame();
- break;
- }
- if (JudgeArrayDataIsSame(publicva.Rx_CRC_DATA_Error, publicva.ReceivedDataBuf))
+ 中文ToolStripMenuItem,
+ 英文ToolStripMenuItem
+ });
+ 语言设置LToolStripMenuItem.Name = "语言设置LToolStripMenuItem";
+ 语言设置LToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 中文ToolStripMenuItem.AccessibleDescription = null;
+ 中文ToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(中文ToolStripMenuItem, "中文ToolStripMenuItem");
+ 中文ToolStripMenuItem.BackgroundImage = null;
+ 中文ToolStripMenuItem.Checked = true;
+ 中文ToolStripMenuItem.CheckState = CheckState.Checked;
+ 中文ToolStripMenuItem.Name = "中文ToolStripMenuItem";
+ 中文ToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 英文ToolStripMenuItem.AccessibleDescription = null;
+ 英文ToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(英文ToolStripMenuItem, "英文ToolStripMenuItem");
+ 英文ToolStripMenuItem.BackgroundImage = null;
+ 英文ToolStripMenuItem.Name = "英文ToolStripMenuItem";
+ 英文ToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 通信端口PToolStripMenuItem.AccessibleDescription = null;
+ 通信端口PToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(通信端口PToolStripMenuItem, "通信端口PToolStripMenuItem");
+ 通信端口PToolStripMenuItem.BackgroundImage = null;
+ 通信端口PToolStripMenuItem.Name = "通信端口PToolStripMenuItem";
+ 通信端口PToolStripMenuItem.ShortcutKeyDisplayString = null;
+ 更改密码CToolStripMenuItem.AccessibleDescription = null;
+ 更改密码CToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(更改密码CToolStripMenuItem, "更改密码CToolStripMenuItem");
+ 更改密码CToolStripMenuItem.BackgroundImage = null;
+ 更改密码CToolStripMenuItem.Name = "更改密码CToolStripMenuItem";
+ 更改密码CToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ViewMenu.AccessibleDescription = null;
+ ViewMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(ViewMenu, "ViewMenu");
+ ViewMenu.BackgroundImage = null;
+ ViewMenu.DropDownItems.AddRange(new ToolStripItem[3]
{
- SerialPort1.Write(publicva.SendDataBuf, 0, checked (7 + publicva.SendDataBuf[6] + 1 + 1));
- break;
- }
- break;
- }
- if (Operators.CompareString(mscommCom3, "Read", false) == 0 || Operators.CompareString(mscommCom3, "Read_Password", false) == 0)
- {
- var index = checked (7 + publicva.ReceivedDataBuf[6]);
- if (Operators.ConditionalCompareObjectEqual(Get_CRC_Data(publicva.ReceivedDataBuf), publicva.ReceivedDataBuf[index], false))
+ TreeViewToolStripMenuItem,
+ ToolBarToolStripMenuItem,
+ StatusBarToolStripMenuItem
+ });
+ ViewMenu.Name = "ViewMenu";
+ ViewMenu.ShortcutKeyDisplayString = null;
+ TreeViewToolStripMenuItem.AccessibleDescription = null;
+ TreeViewToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(TreeViewToolStripMenuItem, "TreeViewToolStripMenuItem");
+ TreeViewToolStripMenuItem.BackgroundImage = null;
+ TreeViewToolStripMenuItem.Checked = true;
+ TreeViewToolStripMenuItem.CheckOnClick = true;
+ TreeViewToolStripMenuItem.CheckState = CheckState.Checked;
+ TreeViewToolStripMenuItem.Name = "TreeViewToolStripMenuItem";
+ TreeViewToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolBarToolStripMenuItem.AccessibleDescription = null;
+ ToolBarToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolBarToolStripMenuItem, "ToolBarToolStripMenuItem");
+ ToolBarToolStripMenuItem.BackgroundImage = null;
+ ToolBarToolStripMenuItem.Checked = true;
+ ToolBarToolStripMenuItem.CheckOnClick = true;
+ ToolBarToolStripMenuItem.CheckState = CheckState.Checked;
+ ToolBarToolStripMenuItem.Name = "ToolBarToolStripMenuItem";
+ ToolBarToolStripMenuItem.ShortcutKeyDisplayString = null;
+ StatusBarToolStripMenuItem.AccessibleDescription = null;
+ StatusBarToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(StatusBarToolStripMenuItem, "StatusBarToolStripMenuItem");
+ StatusBarToolStripMenuItem.BackgroundImage = null;
+ StatusBarToolStripMenuItem.Checked = true;
+ StatusBarToolStripMenuItem.CheckOnClick = true;
+ StatusBarToolStripMenuItem.CheckState = CheckState.Checked;
+ StatusBarToolStripMenuItem.Name = "StatusBarToolStripMenuItem";
+ StatusBarToolStripMenuItem.ShortcutKeyDisplayString = null;
+ WindowsMenu.AccessibleDescription = null;
+ WindowsMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(WindowsMenu, "WindowsMenu");
+ WindowsMenu.BackgroundImage = null;
+ WindowsMenu.DropDownItems.AddRange(new ToolStripItem[8]
{
- publicva.MSCommTimeOut = 40U;
- WriteDataToPC_EEPROM_Byte();
- publicva.Rw_EEPROM_Add_Length_ListIndex = checked ((uint) (publicva.Rw_EEPROM_Add_Length_ListIndex + 1L));
- if (publicva.Rw_EEPROM_Add_Length_ListIndex >= publicva.Rw_EEPROM_Add_Length_ListSum)
- {
- publicva.MSCommStatus = 4U;
- publicva.ReceivedCount = 5U;
- SerialPort1.Write(publicva.Tx_MSCommFinish, 0, publicva.Tx_MSCommFinish.Length);
- }
- else
- Tx_ReadDataCOM_Frame();
- }
- else
- SerialPort1.Write(publicva.SendDataBuf, 0, 8);
- break;
- }
- break;
- case 4:
- if (JudgeArrayDataIsSame(publicva.Rx_MSCommFinish_OK, publicva.ReceivedDataBuf))
- {
- publicva.MSCommStatus = 5U;
- break;
- }
- break;
- }
- }
+ NewWindowToolStripMenuItem,
+ CascadeToolStripMenuItem,
+ TileVerticalToolStripMenuItem,
+ TileHorizontalToolStripMenuItem,
+ ArrangeIconsToolStripMenuItem,
+ ToolStripSeparator13,
+ CloseAllToolStripMenuItem,
+ ToolStripSeparator14
+ });
+ WindowsMenu.Name = "WindowsMenu";
+ WindowsMenu.ShortcutKeyDisplayString = null;
+ NewWindowToolStripMenuItem.AccessibleDescription = null;
+ NewWindowToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(NewWindowToolStripMenuItem, "NewWindowToolStripMenuItem");
+ NewWindowToolStripMenuItem.BackgroundImage = null;
+ NewWindowToolStripMenuItem.Name = "NewWindowToolStripMenuItem";
+ NewWindowToolStripMenuItem.ShortcutKeyDisplayString = null;
+ CascadeToolStripMenuItem.AccessibleDescription = null;
+ CascadeToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(CascadeToolStripMenuItem, "CascadeToolStripMenuItem");
+ CascadeToolStripMenuItem.BackgroundImage = null;
+ CascadeToolStripMenuItem.Name = "CascadeToolStripMenuItem";
+ CascadeToolStripMenuItem.ShortcutKeyDisplayString = null;
+ TileVerticalToolStripMenuItem.AccessibleDescription = null;
+ TileVerticalToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(TileVerticalToolStripMenuItem, "TileVerticalToolStripMenuItem");
+ TileVerticalToolStripMenuItem.BackgroundImage = null;
+ TileVerticalToolStripMenuItem.Name = "TileVerticalToolStripMenuItem";
+ TileVerticalToolStripMenuItem.ShortcutKeyDisplayString = null;
+ TileHorizontalToolStripMenuItem.AccessibleDescription = null;
+ TileHorizontalToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(TileHorizontalToolStripMenuItem, "TileHorizontalToolStripMenuItem");
+ TileHorizontalToolStripMenuItem.BackgroundImage = null;
+ TileHorizontalToolStripMenuItem.Name = "TileHorizontalToolStripMenuItem";
+ TileHorizontalToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ArrangeIconsToolStripMenuItem.AccessibleDescription = null;
+ ArrangeIconsToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(ArrangeIconsToolStripMenuItem, "ArrangeIconsToolStripMenuItem");
+ ArrangeIconsToolStripMenuItem.BackgroundImage = null;
+ ArrangeIconsToolStripMenuItem.Name = "ArrangeIconsToolStripMenuItem";
+ ArrangeIconsToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator13.AccessibleDescription = null;
+ ToolStripSeparator13.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator13, "ToolStripSeparator13");
+ ToolStripSeparator13.Name = "ToolStripSeparator13";
+ CloseAllToolStripMenuItem.AccessibleDescription = null;
+ CloseAllToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(CloseAllToolStripMenuItem, "CloseAllToolStripMenuItem");
+ CloseAllToolStripMenuItem.BackgroundImage = null;
+ CloseAllToolStripMenuItem.Name = "CloseAllToolStripMenuItem";
+ CloseAllToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator14.AccessibleDescription = null;
+ ToolStripSeparator14.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator14, "ToolStripSeparator14");
+ ToolStripSeparator14.Name = "ToolStripSeparator14";
+ HelpMenu.AccessibleDescription = null;
+ HelpMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(HelpMenu, "HelpMenu");
+ HelpMenu.BackgroundImage = null;
+ HelpMenu.DropDownItems.AddRange(new ToolStripItem[6]
+ {
+ ContentsToolStripMenuItem,
+ IndexToolStripMenuItem,
+ SearchToolStripMenuItem,
+ ToolStripSeparator8,
+ 帮助主题HToolStripMenuItem,
+ AboutToolStripMenuItem
+ });
+ HelpMenu.Name = "HelpMenu";
+ HelpMenu.ShortcutKeyDisplayString = null;
+ ContentsToolStripMenuItem.AccessibleDescription = null;
+ ContentsToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(ContentsToolStripMenuItem, "ContentsToolStripMenuItem");
+ ContentsToolStripMenuItem.BackgroundImage = null;
+ ContentsToolStripMenuItem.Name = "ContentsToolStripMenuItem";
+ ContentsToolStripMenuItem.ShortcutKeyDisplayString = null;
+ IndexToolStripMenuItem.AccessibleDescription = null;
+ IndexToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(IndexToolStripMenuItem, "IndexToolStripMenuItem");
+ IndexToolStripMenuItem.BackgroundImage = null;
+ IndexToolStripMenuItem.Name = "IndexToolStripMenuItem";
+ IndexToolStripMenuItem.ShortcutKeyDisplayString = null;
+ SearchToolStripMenuItem.AccessibleDescription = null;
+ SearchToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(SearchToolStripMenuItem, "SearchToolStripMenuItem");
+ SearchToolStripMenuItem.BackgroundImage = null;
+ SearchToolStripMenuItem.Name = "SearchToolStripMenuItem";
+ SearchToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator8.AccessibleDescription = null;
+ ToolStripSeparator8.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator8, "ToolStripSeparator8");
+ ToolStripSeparator8.Name = "ToolStripSeparator8";
+ 帮助主题HToolStripMenuItem.AccessibleDescription = null;
+ 帮助主题HToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(帮助主题HToolStripMenuItem, "帮助主题HToolStripMenuItem");
+ 帮助主题HToolStripMenuItem.BackgroundImage = null;
+ 帮助主题HToolStripMenuItem.Name = "帮助主题HToolStripMenuItem";
+ 帮助主题HToolStripMenuItem.ShortcutKeyDisplayString = null;
+ AboutToolStripMenuItem.AccessibleDescription = null;
+ AboutToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(AboutToolStripMenuItem, "AboutToolStripMenuItem");
+ AboutToolStripMenuItem.BackgroundImage = null;
+ AboutToolStripMenuItem.Name = "AboutToolStripMenuItem";
+ AboutToolStripMenuItem.ShortcutKeyDisplayString = null;
+ EditMenu.AccessibleDescription = null;
+ EditMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(EditMenu, "EditMenu");
+ EditMenu.BackgroundImage = null;
+ EditMenu.DropDownItems.AddRange(new ToolStripItem[8]
+ {
+ UndoToolStripMenuItem,
+ RedoToolStripMenuItem,
+ ToolStripSeparator6,
+ CutToolStripMenuItem,
+ CopyToolStripMenuItem,
+ PasteToolStripMenuItem,
+ ToolStripSeparator7,
+ SelectAllToolStripMenuItem
+ });
+ EditMenu.Name = "EditMenu";
+ EditMenu.ShortcutKeyDisplayString = null;
+ UndoToolStripMenuItem.AccessibleDescription = null;
+ UndoToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(UndoToolStripMenuItem, "UndoToolStripMenuItem");
+ UndoToolStripMenuItem.BackgroundImage = null;
+ UndoToolStripMenuItem.Name = "UndoToolStripMenuItem";
+ UndoToolStripMenuItem.ShortcutKeyDisplayString = null;
+ RedoToolStripMenuItem.AccessibleDescription = null;
+ RedoToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(RedoToolStripMenuItem, "RedoToolStripMenuItem");
+ RedoToolStripMenuItem.BackgroundImage = null;
+ RedoToolStripMenuItem.Name = "RedoToolStripMenuItem";
+ RedoToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator6.AccessibleDescription = null;
+ ToolStripSeparator6.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator6, "ToolStripSeparator6");
+ ToolStripSeparator6.Name = "ToolStripSeparator6";
+ CutToolStripMenuItem.AccessibleDescription = null;
+ CutToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(CutToolStripMenuItem, "CutToolStripMenuItem");
+ CutToolStripMenuItem.BackgroundImage = null;
+ CutToolStripMenuItem.Name = "CutToolStripMenuItem";
+ CutToolStripMenuItem.ShortcutKeyDisplayString = null;
+ CopyToolStripMenuItem.AccessibleDescription = null;
+ CopyToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(CopyToolStripMenuItem, "CopyToolStripMenuItem");
+ CopyToolStripMenuItem.BackgroundImage = null;
+ CopyToolStripMenuItem.Name = "CopyToolStripMenuItem";
+ CopyToolStripMenuItem.ShortcutKeyDisplayString = null;
+ PasteToolStripMenuItem.AccessibleDescription = null;
+ PasteToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(PasteToolStripMenuItem, "PasteToolStripMenuItem");
+ PasteToolStripMenuItem.BackgroundImage = null;
+ PasteToolStripMenuItem.Name = "PasteToolStripMenuItem";
+ PasteToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStripSeparator7.AccessibleDescription = null;
+ ToolStripSeparator7.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator7, "ToolStripSeparator7");
+ ToolStripSeparator7.Name = "ToolStripSeparator7";
+ SelectAllToolStripMenuItem.AccessibleDescription = null;
+ SelectAllToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(SelectAllToolStripMenuItem, "SelectAllToolStripMenuItem");
+ SelectAllToolStripMenuItem.BackgroundImage = null;
+ SelectAllToolStripMenuItem.Name = "SelectAllToolStripMenuItem";
+ SelectAllToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolsMenu.AccessibleDescription = null;
+ ToolsMenu.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolsMenu, "ToolsMenu");
+ ToolsMenu.BackgroundImage = null;
+ ToolsMenu.DropDownItems.AddRange(new ToolStripItem[1]
+ {
+ OptionsToolStripMenuItem
+ });
+ ToolsMenu.Name = "ToolsMenu";
+ ToolsMenu.ShortcutKeyDisplayString = null;
+ OptionsToolStripMenuItem.AccessibleDescription = null;
+ OptionsToolStripMenuItem.AccessibleName = null;
+ componentResourceManager.ApplyResources(OptionsToolStripMenuItem, "OptionsToolStripMenuItem");
+ OptionsToolStripMenuItem.BackgroundImage = null;
+ OptionsToolStripMenuItem.Name = "OptionsToolStripMenuItem";
+ OptionsToolStripMenuItem.ShortcutKeyDisplayString = null;
+ ToolStrip.AccessibleDescription = null;
+ ToolStrip.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStrip, "ToolStrip");
+ ToolStrip.BackgroundImage = null;
+ ToolStrip.Font = null;
+ ToolStrip.Items.AddRange(new ToolStripItem[12]
+ {
+ NewToolStripButton,
+ OpenToolStripButton,
+ SaveToolStripButton,
+ ToolStripSeparator1,
+ PrintToolStripButton,
+ PrintPreviewToolStripButton,
+ ToolStripSeparator2,
+ ReadToolStripButton,
+ ComPortToolStripButton,
+ WriteToolStripButton,
+ ToolStripSeparator16,
+ HelpToolStripButton
+ });
+ ToolStrip.Name = "ToolStrip";
+ ToolTip.SetToolTip(ToolStrip, componentResourceManager.GetString("ToolStrip.ToolTip"));
+ NewToolStripButton.AccessibleDescription = null;
+ NewToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(NewToolStripButton, "NewToolStripButton");
+ NewToolStripButton.BackgroundImage = null;
+ NewToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ NewToolStripButton.Name = "NewToolStripButton";
+ OpenToolStripButton.AccessibleDescription = null;
+ OpenToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(OpenToolStripButton, "OpenToolStripButton");
+ OpenToolStripButton.BackgroundImage = null;
+ OpenToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ OpenToolStripButton.Name = "OpenToolStripButton";
+ SaveToolStripButton.AccessibleDescription = null;
+ SaveToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(SaveToolStripButton, "SaveToolStripButton");
+ SaveToolStripButton.BackgroundImage = null;
+ SaveToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ SaveToolStripButton.Name = "SaveToolStripButton";
+ ToolStripSeparator1.AccessibleDescription = null;
+ ToolStripSeparator1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator1, "ToolStripSeparator1");
+ ToolStripSeparator1.Name = "ToolStripSeparator1";
+ PrintToolStripButton.AccessibleDescription = null;
+ PrintToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(PrintToolStripButton, "PrintToolStripButton");
+ PrintToolStripButton.BackgroundImage = null;
+ PrintToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ PrintToolStripButton.Name = "PrintToolStripButton";
+ PrintPreviewToolStripButton.AccessibleDescription = null;
+ PrintPreviewToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(PrintPreviewToolStripButton, "PrintPreviewToolStripButton");
+ PrintPreviewToolStripButton.BackgroundImage = null;
+ PrintPreviewToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ PrintPreviewToolStripButton.Name = "PrintPreviewToolStripButton";
+ ToolStripSeparator2.AccessibleDescription = null;
+ ToolStripSeparator2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator2, "ToolStripSeparator2");
+ ToolStripSeparator2.Name = "ToolStripSeparator2";
+ ReadToolStripButton.AccessibleDescription = null;
+ ReadToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(ReadToolStripButton, "ReadToolStripButton");
+ ReadToolStripButton.BackgroundImage = null;
+ ReadToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ ReadToolStripButton.Name = "ReadToolStripButton";
+ ComPortToolStripButton.AccessibleDescription = null;
+ ComPortToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComPortToolStripButton, "ComPortToolStripButton");
+ ComPortToolStripButton.BackgroundImage = null;
+ ComPortToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ ComPortToolStripButton.Name = "ComPortToolStripButton";
+ WriteToolStripButton.AccessibleDescription = null;
+ WriteToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(WriteToolStripButton, "WriteToolStripButton");
+ WriteToolStripButton.BackgroundImage = null;
+ WriteToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ WriteToolStripButton.Name = "WriteToolStripButton";
+ ToolStripSeparator16.AccessibleDescription = null;
+ ToolStripSeparator16.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripSeparator16, "ToolStripSeparator16");
+ ToolStripSeparator16.Name = "ToolStripSeparator16";
+ HelpToolStripButton.AccessibleDescription = null;
+ HelpToolStripButton.AccessibleName = null;
+ componentResourceManager.ApplyResources(HelpToolStripButton, "HelpToolStripButton");
+ HelpToolStripButton.BackgroundImage = null;
+ HelpToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
+ HelpToolStripButton.Name = "HelpToolStripButton";
+ StatusStrip.AccessibleDescription = null;
+ StatusStrip.AccessibleName = null;
+ componentResourceManager.ApplyResources(StatusStrip, "StatusStrip");
+ StatusStrip.BackgroundImage = null;
+ StatusStrip.Font = null;
+ StatusStrip.Items.AddRange(new ToolStripItem[1]
+ {
+ ToolStripStatusLabel
+ });
+ StatusStrip.Name = "StatusStrip";
+ ToolTip.SetToolTip(StatusStrip, componentResourceManager.GetString("StatusStrip.ToolTip"));
+ ToolStripStatusLabel.AccessibleDescription = null;
+ ToolStripStatusLabel.AccessibleName = null;
+ componentResourceManager.ApplyResources(ToolStripStatusLabel, "ToolStripStatusLabel");
+ ToolStripStatusLabel.BackgroundImage = null;
+ ToolStripStatusLabel.Name = "ToolStripStatusLabel";
+ Panel1.AccessibleDescription = null;
+ Panel1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Panel1, "Panel1");
+ Panel1.BackgroundImage = null;
+ Panel1.BorderStyle = BorderStyle.Fixed3D;
+ Panel1.Controls.Add(EditMenuListTreeView);
+ Panel1.Font = null;
+ Panel1.Name = "Panel1";
+ ToolTip.SetToolTip(Panel1, componentResourceManager.GetString("Panel1.ToolTip"));
+ EditMenuListTreeView.AccessibleDescription = null;
+ EditMenuListTreeView.AccessibleName = null;
+ componentResourceManager.ApplyResources(EditMenuListTreeView, "EditMenuListTreeView");
+ EditMenuListTreeView.BackgroundImage = null;
+ EditMenuListTreeView.Font = null;
+ EditMenuListTreeView.Name = "EditMenuListTreeView";
+ EditMenuListTreeView.Nodes.AddRange(new TreeNode[1]
+ {
+ (TreeNode) componentResourceManager.GetObject("EditMenuListTreeView.Nodes")
+ });
+ ToolTip.SetToolTip(EditMenuListTreeView, componentResourceManager.GetString("EditMenuListTreeView.ToolTip"));
+ SerialPort1.BaudRate = 19200;
+ SerialPort1.DtrEnable = true;
+ SerialPort1.RtsEnable = true;
+ Timer1.Interval = 10;
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ Controls.Add(Panel1);
+ Controls.Add(ToolStrip);
+ Controls.Add(MenuStrip);
+ Controls.Add(StatusStrip);
+ DoubleBuffered = true;
+ Font = null;
+ IsMdiContainer = true;
+ MainMenuStrip = MenuStrip;
+ Name = nameof(MDIParent1);
+ ToolTip.SetToolTip(this, componentResourceManager.GetString("$this.ToolTip"));
+ MenuStrip.ResumeLayout(false);
+ MenuStrip.PerformLayout();
+ ToolStrip.ResumeLayout(false);
+ ToolStrip.PerformLayout();
+ StatusStrip.ResumeLayout(false);
+ StatusStrip.PerformLayout();
+ Panel1.ResumeLayout(false);
+ ResumeLayout(false);
+ PerformLayout();
+ }
- private void Timer1_Tick(object sender, EventArgs e)
- {
- switch (publicva.MSCommStatus)
- {
- case 5:
- var mscommCom = publicva.MscommCom;
- if (Operators.CompareString(mscommCom, "Write", false) == 0)
- {
- MSComm_Stop();
- break;
- }
- if (Operators.CompareString(mscommCom, "Read", false) == 0)
- {
+ internal virtual ToolStripMenuItem ContentsToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _ContentsToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ContentsToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem HelpMenu
+ {
+ [DebuggerNonUserCode]
+ get => _HelpMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _HelpMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem IndexToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _IndexToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _IndexToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem SearchToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _SearchToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SearchToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator8
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator8 = value; }
+ }
+
+ internal virtual ToolStripMenuItem AboutToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _AboutToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_AboutToolStripMenuItem != null)
+ _AboutToolStripMenuItem.Click -= AboutToolStripMenuItem_Click;
+ _AboutToolStripMenuItem = value;
+ if (_AboutToolStripMenuItem == null)
+ return;
+ _AboutToolStripMenuItem.Click += AboutToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem ArrangeIconsToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _ArrangeIconsToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ArrangeIconsToolStripMenuItem != null)
+ _ArrangeIconsToolStripMenuItem.Click -= ArrangeIconsToolStripMenuItem_Click;
+ _ArrangeIconsToolStripMenuItem = value;
+ if (_ArrangeIconsToolStripMenuItem == null)
+ return;
+ _ArrangeIconsToolStripMenuItem.Click += ArrangeIconsToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem CloseAllToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _CloseAllToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CloseAllToolStripMenuItem != null)
+ _CloseAllToolStripMenuItem.Click -= CloseAllToolStripMenuItem_Click;
+ _CloseAllToolStripMenuItem = value;
+ if (_CloseAllToolStripMenuItem == null)
+ return;
+ _CloseAllToolStripMenuItem.Click += CloseAllToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem NewWindowToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _NewWindowToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NewWindowToolStripMenuItem != null)
+ _NewWindowToolStripMenuItem.Click -= ShowNewForm;
+ _NewWindowToolStripMenuItem = value;
+ if (_NewWindowToolStripMenuItem == null)
+ return;
+ _NewWindowToolStripMenuItem.Click += ShowNewForm;
+ }
+ }
+
+ internal virtual ToolStripMenuItem WindowsMenu
+ {
+ [DebuggerNonUserCode]
+ get => _WindowsMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _WindowsMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem CascadeToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _CascadeToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CascadeToolStripMenuItem != null)
+ _CascadeToolStripMenuItem.Click -= CascadeToolStripMenuItem_Click;
+ _CascadeToolStripMenuItem = value;
+ if (_CascadeToolStripMenuItem == null)
+ return;
+ _CascadeToolStripMenuItem.Click += CascadeToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem TileVerticalToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _TileVerticalToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TileVerticalToolStripMenuItem != null)
+ _TileVerticalToolStripMenuItem.Click -= TileVerticleToolStripMenuItem_Click;
+ _TileVerticalToolStripMenuItem = value;
+ if (_TileVerticalToolStripMenuItem == null)
+ return;
+ _TileVerticalToolStripMenuItem.Click += TileVerticleToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem TileHorizontalToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _TileHorizontalToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TileHorizontalToolStripMenuItem != null)
+ _TileHorizontalToolStripMenuItem.Click -= TileHorizontalToolStripMenuItem_Click;
+ _TileHorizontalToolStripMenuItem = value;
+ if (_TileHorizontalToolStripMenuItem == null)
+ return;
+ _TileHorizontalToolStripMenuItem.Click += TileHorizontalToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem OptionsToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _OptionsToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _OptionsToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripButton HelpToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _HelpToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _HelpToolStripButton = value; }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator2
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator2 = value; }
+ }
+
+ internal virtual ToolStripButton PrintPreviewToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _PrintPreviewToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _PrintPreviewToolStripButton = value; }
+ }
+
+ internal virtual ToolTip ToolTip
+ {
+ [DebuggerNonUserCode]
+ get => _ToolTip;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolTip = value; }
+ }
+
+ internal virtual ToolStripStatusLabel ToolStripStatusLabel
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripStatusLabel;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripStatusLabel = value; }
+ }
+
+ internal virtual StatusStrip StatusStrip
+ {
+ [DebuggerNonUserCode]
+ get => _StatusStrip;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _StatusStrip = value; }
+ }
+
+ internal virtual ToolStripButton PrintToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _PrintToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _PrintToolStripButton = value; }
+ }
+
+ internal virtual ToolStripButton NewToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _NewToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NewToolStripButton != null)
+ _NewToolStripButton.Click -= ShowNewForm;
+ _NewToolStripButton = value;
+ if (_NewToolStripButton == null)
+ return;
+ _NewToolStripButton.Click += ShowNewForm;
+ }
+ }
+
+ internal virtual ToolStrip ToolStrip
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStrip;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStrip = value; }
+ }
+
+ internal virtual ToolStripButton OpenToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _OpenToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_OpenToolStripButton != null)
+ _OpenToolStripButton.Click -= OpenFile;
+ _OpenToolStripButton = value;
+ if (_OpenToolStripButton == null)
+ return;
+ _OpenToolStripButton.Click += OpenFile;
+ }
+ }
+
+ internal virtual ToolStripButton SaveToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _SaveToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_SaveToolStripButton != null)
+ _SaveToolStripButton.Click -= SaveToolStripButton_Click;
+ _SaveToolStripButton = value;
+ if (_SaveToolStripButton == null)
+ return;
+ _SaveToolStripButton.Click += SaveToolStripButton_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator1
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator1 = value; }
+ }
+
+ internal virtual ToolStripMenuItem PrintPreviewToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _PrintPreviewToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _PrintPreviewToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem PrintToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _PrintToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _PrintToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator4
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator4 = value; }
+ }
+
+ internal virtual ToolStripMenuItem ExitToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _ExitToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ExitToolStripMenuItem != null)
+ _ExitToolStripMenuItem.Click -= ExitToolsStripMenuItem_Click;
+ _ExitToolStripMenuItem = value;
+ if (_ExitToolStripMenuItem == null)
+ return;
+ _ExitToolStripMenuItem.Click += ExitToolsStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator5
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator5 = value; }
+ }
+
+ internal virtual ToolStripMenuItem PrintSetupToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _PrintSetupToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _PrintSetupToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem SaveAsToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _SaveAsToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_SaveAsToolStripMenuItem != null)
+ _SaveAsToolStripMenuItem.Click -= SaveAsToolStripMenuItem_Click;
+ _SaveAsToolStripMenuItem = value;
+ if (_SaveAsToolStripMenuItem == null)
+ return;
+ _SaveAsToolStripMenuItem.Click += SaveAsToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem NewToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _NewToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NewToolStripMenuItem != null)
+ _NewToolStripMenuItem.Click -= ShowNewForm;
+ _NewToolStripMenuItem = value;
+ if (_NewToolStripMenuItem == null)
+ return;
+ _NewToolStripMenuItem.Click += ShowNewForm;
+ }
+ }
+
+ internal virtual ToolStripMenuItem FileMenu
+ {
+ [DebuggerNonUserCode]
+ get => _FileMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _FileMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem OpenToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _OpenToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_OpenToolStripMenuItem != null)
+ _OpenToolStripMenuItem.Click -= OpenFile;
+ _OpenToolStripMenuItem = value;
+ if (_OpenToolStripMenuItem == null)
+ return;
+ _OpenToolStripMenuItem.Click += OpenFile;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator3
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator3 = value; }
+ }
+
+ internal virtual ToolStripMenuItem SaveToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _SaveToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_SaveToolStripMenuItem != null)
+ _SaveToolStripMenuItem.Click -= SaveToolStripMenuItem_Click;
+ _SaveToolStripMenuItem = value;
+ if (_SaveToolStripMenuItem == null)
+ return;
+ _SaveToolStripMenuItem.Click += SaveToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual MenuStrip MenuStrip
+ {
+ [DebuggerNonUserCode]
+ get => _MenuStrip;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _MenuStrip = value; }
+ }
+
+ internal virtual ToolStripMenuItem EditMenu
+ {
+ [DebuggerNonUserCode]
+ get => _EditMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _EditMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem UndoToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _UndoToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _UndoToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem RedoToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _RedoToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _RedoToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator6
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator6 = value; }
+ }
+
+ internal virtual ToolStripMenuItem CutToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _CutToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CutToolStripMenuItem != null)
+ _CutToolStripMenuItem.Click -= CutToolStripMenuItem_Click;
+ _CutToolStripMenuItem = value;
+ if (_CutToolStripMenuItem == null)
+ return;
+ _CutToolStripMenuItem.Click += CutToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem CopyToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _CopyToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CopyToolStripMenuItem != null)
+ _CopyToolStripMenuItem.Click -= CopyToolStripMenuItem_Click;
+ _CopyToolStripMenuItem = value;
+ if (_CopyToolStripMenuItem == null)
+ return;
+ _CopyToolStripMenuItem.Click += CopyToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem PasteToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _PasteToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_PasteToolStripMenuItem != null)
+ _PasteToolStripMenuItem.Click -= PasteToolStripMenuItem_Click;
+ _PasteToolStripMenuItem = value;
+ if (_PasteToolStripMenuItem == null)
+ return;
+ _PasteToolStripMenuItem.Click += PasteToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator7
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator7 = value; }
+ }
+
+ internal virtual ToolStripMenuItem SelectAllToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _SelectAllToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SelectAllToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem ViewMenu
+ {
+ [DebuggerNonUserCode]
+ get => _ViewMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ViewMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem ToolBarToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _ToolBarToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ToolBarToolStripMenuItem != null)
+ _ToolBarToolStripMenuItem.Click -= ToolBarToolStripMenuItem_Click;
+ _ToolBarToolStripMenuItem = value;
+ if (_ToolBarToolStripMenuItem == null)
+ return;
+ _ToolBarToolStripMenuItem.Click += ToolBarToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem StatusBarToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _StatusBarToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_StatusBarToolStripMenuItem != null)
+ _StatusBarToolStripMenuItem.Click -= StatusBarToolStripMenuItem_Click;
+ _StatusBarToolStripMenuItem = value;
+ if (_StatusBarToolStripMenuItem == null)
+ return;
+ _StatusBarToolStripMenuItem.Click += StatusBarToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem ToolsMenu
+ {
+ [DebuggerNonUserCode]
+ get => _ToolsMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolsMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem TypeMenu
+ {
+ [DebuggerNonUserCode]
+ get => _TypeMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TypeMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem 机型信息MToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _机型信息MToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_机型信息MToolStripMenuItem != null)
+ _机型信息MToolStripMenuItem.Click -= 机型信息MToolStripMenuItem_Click;
+ _机型信息MToolStripMenuItem = value;
+ if (_机型信息MToolStripMenuItem == null)
+ return;
+ _机型信息MToolStripMenuItem.Click += 机型信息MToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem EditMenuList
+ {
+ [DebuggerNonUserCode]
+ get => _EditMenuList;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _EditMenuList = value; }
+ }
+
+ internal virtual ToolStripMenuItem 信道信息CToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _信道信息CToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_信道信息CToolStripMenuItem != null)
+ _信道信息CToolStripMenuItem.Click -= 信道信息CToolStripMenuItem_Click;
+ _信道信息CToolStripMenuItem = value;
+ if (_信道信息CToolStripMenuItem == null)
+ return;
+ _信道信息CToolStripMenuItem.Click += 信道信息CToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator9
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator9 = value; }
+ }
+
+ internal virtual ToolStripMenuItem 整机信息OToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _整机信息OToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_整机信息OToolStripMenuItem != null)
+ _整机信息OToolStripMenuItem.Click -= 整机信息OToolStripMenuItem_Click;
+ _整机信息OToolStripMenuItem = value;
+ if (_整机信息OToolStripMenuItem == null)
+ return;
+ _整机信息OToolStripMenuItem.Click += 整机信息OToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 扫描信息SToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _扫描信息SToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_扫描信息SToolStripMenuItem != null)
+ _扫描信息SToolStripMenuItem.Click -= 扫描信息SToolStripMenuItem_Click;
+ _扫描信息SToolStripMenuItem = value;
+ if (_扫描信息SToolStripMenuItem == null)
+ return;
+ _扫描信息SToolStripMenuItem.Click += 扫描信息SToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 提示音AToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _提示音AToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_提示音AToolStripMenuItem != null)
+ _提示音AToolStripMenuItem.Click -= 提示音AToolStripMenuItem_Click;
+ _提示音AToolStripMenuItem = value;
+ if (_提示音AToolStripMenuItem == null)
+ return;
+ _提示音AToolStripMenuItem.Click += 提示音AToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator10
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator10 = value; }
+ }
+
+ internal virtual ToolStripMenuItem 双音多频DToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _双音多频DToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_双音多频DToolStripMenuItem != null)
+ _双音多频DToolStripMenuItem.Click -= 双音多频DToolStripMenuItem_Click;
+ _双音多频DToolStripMenuItem = value;
+ if (_双音多频DToolStripMenuItem == null)
+ return;
+ _双音多频DToolStripMenuItem.Click += 双音多频DToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 两音TToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _两音TToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_两音TToolStripMenuItem != null)
+ _两音TToolStripMenuItem.Click -= 两音TToolStripMenuItem_Click;
+ _两音TToolStripMenuItem = value;
+ if (_两音TToolStripMenuItem == null)
+ return;
+ _两音TToolStripMenuItem.Click += 两音TToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 五音FToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _五音FToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_五音FToolStripMenuItem != null)
+ _五音FToolStripMenuItem.Click -= 五音FToolStripMenuItem_Click;
+ _五音FToolStripMenuItem = value;
+ if (_五音FToolStripMenuItem == null)
+ return;
+ _五音FToolStripMenuItem.Click += 五音FToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator11
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator11 = value; }
+ }
+
+ internal virtual ToolStripMenuItem 紧急报警信息EToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _紧急报警信息EToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_紧急报警信息EToolStripMenuItem != null)
+ _紧急报警信息EToolStripMenuItem.Click -= 紧急报警信息EToolStripMenuItem_Click;
+ _紧急报警信息EToolStripMenuItem = value;
+ if (_紧急报警信息EToolStripMenuItem == null)
+ return;
+ _紧急报警信息EToolStripMenuItem.Click += 紧急报警信息EToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 收音机存储信道JToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _收音机存储信道JToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_收音机存储信道JToolStripMenuItem != null)
+ _收音机存储信道JToolStripMenuItem.Click -= 收音机存储信道JToolStripMenuItem_Click;
+ _收音机存储信道JToolStripMenuItem = value;
+ if (_收音机存储信道JToolStripMenuItem == null)
+ return;
+ _收音机存储信道JToolStripMenuItem.Click += 收音机存储信道JToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 嵌入信息IToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _嵌入信息IToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_嵌入信息IToolStripMenuItem != null)
+ _嵌入信息IToolStripMenuItem.Click -= 嵌入信息IToolStripMenuItem_Click;
+ _嵌入信息IToolStripMenuItem = value;
+ if (_嵌入信息IToolStripMenuItem == null)
+ return;
+ _嵌入信息IToolStripMenuItem.Click += 嵌入信息IToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 对讲机信息RToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _对讲机信息RToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_对讲机信息RToolStripMenuItem != null)
+ _对讲机信息RToolStripMenuItem.Click -= 对讲机信息RToolStripMenuItem_Click;
+ _对讲机信息RToolStripMenuItem = value;
+ if (_对讲机信息RToolStripMenuItem == null)
+ return;
+ _对讲机信息RToolStripMenuItem.Click += 对讲机信息RToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator12
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator12 = value; }
+ }
+
+ internal virtual ToolStripMenuItem ProgrammeMenu
+ {
+ [DebuggerNonUserCode]
+ get => _ProgrammeMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ProgrammeMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem 从对讲机读取数据RToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _从对讲机读取数据RToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_从对讲机读取数据RToolStripMenuItem != null)
+ _从对讲机读取数据RToolStripMenuItem.Click -= 从对讲机读取数据RToolStripMenuItem_Click;
+ _从对讲机读取数据RToolStripMenuItem = value;
+ if (_从对讲机读取数据RToolStripMenuItem == null)
+ return;
+ _从对讲机读取数据RToolStripMenuItem.Click += 从对讲机读取数据RToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 向对讲机写入数据WToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _向对讲机写入数据WToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_向对讲机写入数据WToolStripMenuItem != null)
+ _向对讲机写入数据WToolStripMenuItem.Click -= 向对讲机写入数据WToolStripMenuItem_Click;
+ _向对讲机写入数据WToolStripMenuItem = value;
+ if (_向对讲机写入数据WToolStripMenuItem == null)
+ return;
+ _向对讲机写入数据WToolStripMenuItem.Click += 向对讲机写入数据WToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem SetMenu
+ {
+ [DebuggerNonUserCode]
+ get => _SetMenu;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SetMenu = value; }
+ }
+
+ internal virtual ToolStripMenuItem 语言设置LToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _语言设置LToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _语言设置LToolStripMenuItem = value; }
+ }
+
+ internal virtual ToolStripMenuItem 通信端口PToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _通信端口PToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_通信端口PToolStripMenuItem != null)
+ _通信端口PToolStripMenuItem.Click -= 通信端口PToolStripMenuItem_Click;
+ _通信端口PToolStripMenuItem = value;
+ if (_通信端口PToolStripMenuItem == null)
+ return;
+ _通信端口PToolStripMenuItem.Click += 通信端口PToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 更改密码CToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _更改密码CToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_更改密码CToolStripMenuItem != null)
+ _更改密码CToolStripMenuItem.Click -= 更改密码CToolStripMenuItem_Click;
+ _更改密码CToolStripMenuItem = value;
+ if (_更改密码CToolStripMenuItem == null)
+ return;
+ _更改密码CToolStripMenuItem.Click += 更改密码CToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem TreeViewToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _TreeViewToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TreeViewToolStripMenuItem != null)
+ _TreeViewToolStripMenuItem.Click -= TreeViewToolStripMenuItem_Click;
+ _TreeViewToolStripMenuItem = value;
+ if (_TreeViewToolStripMenuItem == null)
+ return;
+ _TreeViewToolStripMenuItem.Click += TreeViewToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator13
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator13 = value; }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator14
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator14 = value; }
+ }
+
+ internal virtual ToolStripMenuItem 帮助主题HToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _帮助主题HToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _帮助主题HToolStripMenuItem = value; }
+ }
+
+ internal virtual Panel Panel1
+ {
+ [DebuggerNonUserCode]
+ get => _Panel1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Panel1 = value;
+ }
+
+ internal virtual TreeView EditMenuListTreeView
+ {
+ [DebuggerNonUserCode]
+ get => _EditMenuListTreeView;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_EditMenuListTreeView != null)
+ _EditMenuListTreeView.NodeMouseClick -= EditMenuListTreeView_NodeMouseClick;
+ _EditMenuListTreeView = value;
+ if (_EditMenuListTreeView == null)
+ return;
+ _EditMenuListTreeView.NodeMouseClick += EditMenuListTreeView_NodeMouseClick;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator15
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator15 = value; }
+ }
+
+ internal virtual SerialPort SerialPort1
+ {
+ [DebuggerNonUserCode]
+ get => _SerialPort1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_SerialPort1 != null)
+ _SerialPort1.DataReceived -= SerialPort1_DataReceived;
+ _SerialPort1 = value;
+ if (_SerialPort1 == null)
+ return;
+ _SerialPort1.DataReceived += SerialPort1_DataReceived;
+ }
+ }
+
+ internal virtual System.Windows.Forms.Timer Timer1
+ {
+ [DebuggerNonUserCode]
+ get => _Timer1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Timer1 != null)
+ _Timer1.Tick -= Timer1_Tick;
+ _Timer1 = value;
+ if (_Timer1 == null)
+ return;
+ _Timer1.Tick += Timer1_Tick;
+ }
+ }
+
+ internal virtual ToolStripButton ReadToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _ReadToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ReadToolStripButton != null)
+ _ReadToolStripButton.Click -= ReadToolStripButton_Click;
+ _ReadToolStripButton = value;
+ if (_ReadToolStripButton == null)
+ return;
+ _ReadToolStripButton.Click += ReadToolStripButton_Click;
+ }
+ }
+
+ internal virtual ToolStripButton ComPortToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _ComPortToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComPortToolStripButton != null)
+ _ComPortToolStripButton.Click -= ComPortToolStripButton_Click;
+ _ComPortToolStripButton = value;
+ if (_ComPortToolStripButton == null)
+ return;
+ _ComPortToolStripButton.Click += ComPortToolStripButton_Click;
+ }
+ }
+
+ internal virtual ToolStripButton WriteToolStripButton
+ {
+ [DebuggerNonUserCode]
+ get => _WriteToolStripButton;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_WriteToolStripButton != null)
+ _WriteToolStripButton.Click -= WriteToolStripButton_Click;
+ _WriteToolStripButton = value;
+ if (_WriteToolStripButton == null)
+ return;
+ _WriteToolStripButton.Click += WriteToolStripButton_Click;
+ }
+ }
+
+ internal virtual ToolStripSeparator ToolStripSeparator16
+ {
+ [DebuggerNonUserCode]
+ get => _ToolStripSeparator16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ToolStripSeparator16 = value; }
+ }
+
+ internal virtual ToolStripMenuItem 中文ToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _中文ToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_中文ToolStripMenuItem != null)
+ _中文ToolStripMenuItem.Click -= 中文ToolStripMenuItem_Click;
+ _中文ToolStripMenuItem = value;
+ if (_中文ToolStripMenuItem == null)
+ return;
+ _中文ToolStripMenuItem.Click += 中文ToolStripMenuItem_Click;
+ }
+ }
+
+ internal virtual ToolStripMenuItem 英文ToolStripMenuItem
+ {
+ [DebuggerNonUserCode]
+ get => _英文ToolStripMenuItem;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_英文ToolStripMenuItem != null)
+ _英文ToolStripMenuItem.Click -= 英文ToolStripMenuItem_Click;
+ _英文ToolStripMenuItem = value;
+ if (_英文ToolStripMenuItem == null)
+ return;
+ _英文ToolStripMenuItem.Click += 英文ToolStripMenuItem_Click;
+ }
+ }
+
+ private void ShowNewForm(object sender, EventArgs e)
+ {
+ try
+ {
+ var streamReader = File.OpenText(Application.StartupPath + "\\default_data.hpg");
+ var index = 0;
+ do
+ {
+ publicva.EEPROM_Byte[index] = Conversions.ToByte("&h" + streamReader.ReadLine());
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= short.MaxValue);
+
+ streamReader.Close();
+ AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
+ FormTreeViewHide();
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ publicva.Rw_PasswordStr = "";
+ }
+
+ private void OpenFile(object sender, EventArgs e)
+ {
+ var openFileDialog = new OpenFileDialog();
+ openFileDialog.InitialDirectory = MyProject.Computer.FileSystem.SpecialDirectories.MyDocuments;
+ openFileDialog.Filter = "数据文件(*.hpg)|*.hpg";
+ if (openFileDialog.ShowDialog(this) != DialogResult.OK)
+ return;
+ var streamReader = new StreamReader(openFileDialog.FileName);
+ var index = 0;
+ do
+ {
+ publicva.EEPROM_Byte[index] = Conversions.ToByte("&h" + streamReader.ReadLine());
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= short.MaxValue);
+
+ streamReader.Close();
AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
FormTreeViewHide();
- MSComm_Stop();
- var numArray = new byte[32769];
- var streamReader = File.OpenText(Application.StartupPath + "\\default_data.hpg");
- var index1 = 0;
- do
- {
- numArray[index1] = Conversions.ToByte("&h" + streamReader.ReadLine());
- checked { ++index1; }
- }
- while (index1 <= short.MaxValue);
- streamReader.Close();
- var index2 = 0;
- do
- {
- numArray[index2] = publicva.EEPROM_Byte[index2];
- checked { ++index2; }
- }
- while (index2 <= 895);
- var text = File.CreateText(Application.StartupPath + "\\default_data.hpg");
+ }
+
+ private void SaveAsToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var saveFileDialog = new SaveFileDialog();
+ saveFileDialog.InitialDirectory = MyProject.Computer.FileSystem.SpecialDirectories.MyDocuments;
+ saveFileDialog.Filter = "数据文件(*.hpg)|*.hpg";
+ if (saveFileDialog.ShowDialog(this) != DialogResult.OK)
+ return;
+ var fileName = saveFileDialog.FileName;
+ AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
+ var streamWriter = new StreamWriter(fileName);
var startIndex = 0;
do
{
- text.WriteLine(BitConverter.ToString(numArray, startIndex, 1));
- checked { ++startIndex; }
+ streamWriter.WriteLine(BitConverter.ToString(publicva.EEPROM_Byte, startIndex, 1));
+ checked
+ {
+ ++startIndex;
+ }
}
while (startIndex <= short.MaxValue);
- text.Close();
- break;
- }
- if (Operators.CompareString(mscommCom, "Write_Password", false) == 0)
- {
- MSComm_Stop();
- MyProject.Forms.ChannelMsg.Msgbox_Msg("密码更改成功!", "Password change is successful!");
- break;
- }
- if (Operators.CompareString(mscommCom, "Read_Password", false) == 0)
- {
- MSComm_Stop();
- var num = (int) MyProject.Forms.PasswordForm.ShowDialog();
- break;
- }
- break;
- case 6:
- MSComm_Stop();
- break;
- case 7:
- Timer1.Enabled = false;
- var num1 = (int) MyProject.Forms.InputPasswordForm.ShowDialog();
- break;
- }
- if (publicva.MSCommTimeOut > 0U)
- {
- publicva.MSCommTimeOut = checked ((uint) (publicva.MSCommTimeOut - 1L));
- if (publicva.MSCommTimeOut == 0U)
+
+ streamWriter.Close();
+ }
+
+ private void ExitToolsStripMenuItem_Click(object sender, EventArgs e) => Application.Exit();
+
+ private void CutToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (publicva.MSCommStatus == 0U)
- {
- publicva.MSCommReconnectionCount = checked ((uint) (publicva.MSCommReconnectionCount + 1L));
- if (publicva.MSCommReconnectionCount >= 5U)
+ }
+
+ private void CopyToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ }
+
+ private void PasteToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ }
+
+ private void ToolBarToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ ToolStrip.Visible = ToolBarToolStripMenuItem.Checked;
+ }
+
+ private void StatusBarToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ StatusStrip.Visible = StatusBarToolStripMenuItem.Checked;
+ }
+
+ private void CascadeToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ LayoutMdi(MdiLayout.Cascade);
+ }
+
+ private void TileVerticleToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ LayoutMdi(MdiLayout.TileVertical);
+ }
+
+ private void TileHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ LayoutMdi(MdiLayout.TileHorizontal);
+ }
+
+ private void ArrangeIconsToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ LayoutMdi(MdiLayout.ArrangeIcons);
+ }
+
+ private void CloseAllToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var mdiChildren = MdiChildren;
+ var index = 0;
+ while (index < mdiChildren.Length)
{
- MSComm_Stop();
- MyProject.Forms.ChannelMsg.Msgbox_Msg("连接对讲机失败!", "Connection radios failed!");
+ mdiChildren[index]
+ .Close();
+ checked
+ {
+ ++index;
+ }
+ }
+ }
+
+ private void MDIParent1_Load(object sender, EventArgs e)
+ {
+ MyProject.Forms.ComForm.GetSerialPortNames();
+ publicva.ChangeCOM_Count = 0U;
+ publicva.COM_SelectIndex = 0U;
+ MyProject.Forms.ComForm.ComboBox1.SelectedIndex = checked((int) publicva.COM_SelectIndex);
+ SerialPort1.PortName = Conversions.ToString(MyProject.Forms.ComForm.ComboBox1.Items[checked((int) publicva.COM_SelectIndex)]);
+ MyProject.Forms.TypeMsgForm.ComboBox机型.SelectedIndex = 0;
+ try
+ {
+ var streamReader = File.OpenText(Application.StartupPath + "\\Config.hpg");
+ publicva.Language = streamReader.ReadLine();
+ streamReader.Close();
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ publicva.Language = "en-US";
+ ProjectData.ClearProjectError();
+ }
+
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ {
+ 中文ToolStripMenuItem.Checked = true;
+ 英文ToolStripMenuItem.Checked = false;
}
else
{
- publicva.MSCommTimeOut = 60U;
- SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
+ 中文ToolStripMenuItem.Checked = false;
+ 英文ToolStripMenuItem.Checked = true;
}
- }
- else
- {
- MSComm_Stop();
- MyProject.Forms.ChannelMsg.Msgbox_Msg("传输中断请检测线路连接后重试!!!", "Transmission interruption, please check connections and try again!!!");
- }
+
+ ChangeLanguage(publicva.Language);
+ EditMenuListTreeView.Nodes[0]
+ .Expand();
+ MyProject.Forms.ChannelMsg.MdiParent = this;
+ MyProject.Forms.ChannelMsg.Show();
+ MyProject.Forms.ChannelMsg.Focus();
+ ShowNewForm(RuntimeHelpers.GetObjectValue(sender), e);
+ Get_FreqRang();
+ publicva.LastProgrammeTime = Conversions.ToString(DateAndTime.Now.Year) + "-" + Conversions.ToString(DateAndTime.Now.Month) + "-" +
+ Conversions.ToString(DateAndTime.Now.Day);
}
- }
- if (publicva.ChangeCOM_CNT <= 0U)
- return;
- publicva.ChangeCOM_CNT = checked ((uint) (publicva.ChangeCOM_CNT - 1L));
- if (publicva.ChangeCOM_CNT == 0U)
- {
- publicva.ChangeCOM_Count = checked ((uint) (publicva.ChangeCOM_Count + 1L));
- if (publicva.ChangeCOM_Count > MyProject.Forms.ComForm.ComboBox1.Items.Count)
+
+ private void TreeViewToolStripMenuItem_Click(object sender, EventArgs e)
{
- MSComm_Stop();
- MyProject.Forms.ChannelMsg.Msgbox_Msg("连接对讲机失败!", "Connection radios failed!");
+ Panel1.Visible = TreeViewToolStripMenuItem.Checked;
}
- else
+
+ private void EditMenuListTreeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
- try
- {
- if (SerialPort1.IsOpen)
+ var name = e.Node.Name;
+ if (Operators.CompareString(name, "节点1", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
+ else if (Operators.CompareString(name, "节点2", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.TypeFuncMsgForm);
+ else if (Operators.CompareString(name, "节点3", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.ScanFuncMsgForm);
+ else if (Operators.CompareString(name, "节点4", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.BeepForm);
+ else if (Operators.CompareString(name, "节点5", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.DtmfForm);
+ else if (Operators.CompareString(name, "节点6", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms._2ToneForm);
+ else if (Operators.CompareString(name, "节点7", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms._5ToneForm);
+ else if (Operators.CompareString(name, "节点8", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.SOSMsgForm);
+ else if (Operators.CompareString(name, "节点9", false) == 0)
+ SafeLoadWindowByName(MyProject.Forms.RadioMsgForm);
+ else if (Operators.CompareString(name, "节点10", false) == 0)
{
- Thread.Sleep(500);
- Application.DoEvents();
- SerialPort1.Close();
+ SafeLoadWindowByName(MyProject.Forms.MsgForm);
}
- publicva.COM_SelectIndex = checked ((uint) (publicva.COM_SelectIndex + 1L));
- if (publicva.COM_SelectIndex >= MyProject.Forms.ComForm.ComboBox1.Items.Count)
- publicva.COM_SelectIndex = 0U;
- MyProject.Forms.ComForm.ComboBox1.SelectedIndex = checked ((int) publicva.COM_SelectIndex);
- SerialPort1.PortName = MyProject.Forms.ComForm.ComboBox1.Text;
- SerialPort1.Open();
+ else
+ {
+ if (Operators.CompareString(name, "节点11", false) != 0)
+ return;
+ SafeLoadWindowByName(MyProject.Forms.SofeMsgForm);
+ }
+ }
+
+ private void FormTreeViewHide()
+ {
+ var index1 = 10;
+ var strArray1 = new[,]
+ {
+ {
+ "HPG-68D",
+ "节点0"
+ },
+ {
+ "信道信息",
+ "节点1"
+ },
+ {
+ "整机信息",
+ "节点2"
+ },
+ {
+ "扫描信息",
+ "节点3"
+ },
+ {
+ "提示音",
+ "节点4"
+ },
+ {
+ "双音多频",
+ "节点5"
+ },
+ {
+ "两音",
+ "节点6"
+ },
+ {
+ "五音",
+ "节点7"
+ },
+ {
+ "紧急报警信息",
+ "节点8"
+ },
+ {
+ "收音机存储信道",
+ "节点9"
+ },
+ {
+ "嵌入信息",
+ "节点10"
+ },
+ {
+ "对讲机信息",
+ "节点11"
+ }
+ };
+ var strArray2 = new[,]
+ {
+ {
+ "HPG-68D",
+ "节点0"
+ },
+ {
+ "Channel Information",
+ "节点1"
+ },
+ {
+ "Optional Features",
+ "节点2"
+ },
+ {
+ "Scan Information",
+ "节点3"
+ },
+ {
+ "Alert Tone",
+ "节点4"
+ },
+ {
+ "DTMF",
+ "节点5"
+ },
+ {
+ "2-Tone",
+ "节点6"
+ },
+ {
+ "5-Tone",
+ "节点7"
+ },
+ {
+ "Emergency Information",
+ "节点8"
+ },
+ {
+ "Receiver Only Memory",
+ "节点9"
+ },
+ {
+ "Embedded Message",
+ "节点10"
+ },
+ {
+ "Radio Information",
+ "节点11"
+ }
+ };
+ EditMenuListTreeView.Nodes.Clear();
+
+ EditMenuListTreeView.Nodes.Add(strArray2[0, 0]);
+ EditMenuListTreeView.Nodes[0].Name = strArray2[0, 1];
+ EditMenuListTreeView.SelectedNode = EditMenuListTreeView.Nodes[0];
+ var index3 = 1;
+ do
+ {
+ EditMenuListTreeView.SelectedNode.Nodes.Add(strArray2[index3, 0]);
+ EditMenuListTreeView.SelectedNode.Nodes[checked(index3 - 1)].Name = strArray2[index3, 1];
+ checked
+ {
+ ++index3;
+ }
+ }
+ while (index3 <= 11);
+
+ if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit5) > 0U)
+ {
+ 五音FToolStripMenuItem.Visible = true;
+ }
+ else
+ {
+ EditMenuListTreeView.Nodes[0]
+ .Nodes[6]
+ .Remove();
+ 五音FToolStripMenuItem.Visible = false;
+ if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
+ MyProject.Forms._5ToneForm.Close();
+ }
+
+ if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit4) > 0U)
+ {
+ 两音TToolStripMenuItem.Visible = true;
+ }
+ else
+ {
+ EditMenuListTreeView.Nodes[0]
+ .Nodes[5]
+ .Remove();
+ 两音TToolStripMenuItem.Visible = false;
+ if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
+ MyProject.Forms._2ToneForm.Close();
+ }
+
+ if ((publicva.EEPROM_Byte[index1] & (uint) publicva.Bit0) > 0U)
+ {
+ 双音多频DToolStripMenuItem.Visible = true;
+ }
+ else
+ {
+ EditMenuListTreeView.Nodes[0]
+ .Nodes[4]
+ .Remove();
+ 双音多频DToolStripMenuItem.Visible = false;
+ if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
+ MyProject.Forms.DtmfForm.Close();
+ }
+
+ if ((publicva.EEPROM_Byte[index1] & publicva.Bit5 | publicva.EEPROM_Byte[index1] & publicva.Bit4) != 0)
+ {
+ 提示音AToolStripMenuItem.Visible = true;
+ }
+ else
+ {
+ EditMenuListTreeView.Nodes[0]
+ .Nodes[3]
+ .Remove();
+ 提示音AToolStripMenuItem.Visible = false;
+ if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
+ MyProject.Forms.BeepForm.Close();
+ }
+
+ EditMenuListTreeView.Nodes[0]
+ .Expand();
+ }
+
+ public void SafeLoadWindowByName(Form rFrm)
+ {
+ var mdiChildren = MdiChildren;
+ var index = 0;
+ while (index < mdiChildren.Length)
+ {
+ var form = mdiChildren[index];
+ if (Operators.CompareString(form.Name, rFrm.Name, false) == 0)
+ {
+ form.Focus();
+ return;
+ }
+
+ checked
+ {
+ ++index;
+ }
+ }
+
+ rFrm.MdiParent = this;
+ rFrm.Show();
+ rFrm.Focus();
+ }
+
+ public bool JudgeIsFormLoaded(Form rFrm)
+ {
+ var mdiChildren = MdiChildren;
+ var index = 0;
+ while (index < mdiChildren.Length)
+ {
+ if (Operators.CompareString(mdiChildren[index].Name, rFrm.Name, false) == 0)
+ return true;
+ checked
+ {
+ ++index;
+ }
+ }
+
+ return false;
+ }
+
+ public void AllForm_LoadData(object sender, EventArgs e)
+ {
+ if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
+ MyProject.Forms.BeepForm.BeepForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
+ MyProject.Forms._2ToneForm._2ToneForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
+ MyProject.Forms._5ToneForm._5ToneForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
+ MyProject.Forms.DtmfForm.DtmfForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.RadioMsgForm))
+ MyProject.Forms.RadioMsgForm.RadioMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.ChannelMsg))
+ MyProject.Forms.ChannelMsg.ChannelMsg_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
+ MyProject.Forms.ScanFuncMsgForm.ScanFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.SOSMsgForm))
+ MyProject.Forms.SOSMsgForm.SOSMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.TypeFuncMsgForm))
+ MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.MsgForm))
+ MyProject.Forms.MsgForm.MsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ if (!JudgeIsFormLoaded(MyProject.Forms.SofeMsgForm))
+ return;
+ MyProject.Forms.SofeMsgForm.SofeMsgForm_Load(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ public void AllForm_SaveData(object sender, EventArgs e)
+ {
+ if (JudgeIsFormLoaded(MyProject.Forms.BeepForm))
+ MyProject.Forms.BeepForm.BeepForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms._2ToneForm))
+ MyProject.Forms._2ToneForm._2ToneForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms._5ToneForm))
+ MyProject.Forms._5ToneForm._5ToneForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.DtmfForm))
+ MyProject.Forms.DtmfForm.DtmfForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.RadioMsgForm))
+ MyProject.Forms.RadioMsgForm.RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.ChannelMsg))
+ MyProject.Forms.ChannelMsg.ChannelMsg_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.ScanFuncMsgForm))
+ MyProject.Forms.ScanFuncMsgForm.ScanFuncMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.SOSMsgForm))
+ MyProject.Forms.SOSMsgForm.SOSMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (JudgeIsFormLoaded(MyProject.Forms.TypeFuncMsgForm))
+ MyProject.Forms.TypeFuncMsgForm.TypeFuncMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ if (!JudgeIsFormLoaded(MyProject.Forms.MsgForm))
+ return;
+ MyProject.Forms.MsgForm.MsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ public void SetControl_Text(Control objectX, int address)
+ {
+ if (!(objectX is ComboBox))
+ return;
+ if (((ComboBox) objectX).FindStringExact(publicva.EEPROM_Byte[address]
+ .ToString()) != -1)
+ ((ComboBox) objectX).Text = Conversions.ToString(publicva.EEPROM_Byte[address]);
+ else
+ ((ComboBox) objectX).SelectedIndex = 0;
+ }
+
+ public void GetContol_Data(Control objectX, int address)
+ {
+ if (!(objectX is ComboBox))
+ return;
+ publicva.EEPROM_Byte[address] =
+ !(((ComboBox) objectX).FindStringExact(((ComboBox) objectX).Text) == -1 | ((ComboBox) objectX).SelectedIndex == 0)
+ ? Conversions.ToByte(((ComboBox) objectX).Text)
+ : (byte) 0;
+ }
+
+ public void Judge_SetControl_SetControl_U8_Data(
+ Control object_x,
+ int address,
+ byte AndBit,
+ int Right_No)
+ {
+ if (!(object_x is ComboBox))
+ return;
+ if (((ComboBox) object_x).FindString(publicva.EEPROM_Byte[address]
+ .ToString()) == -1)
+ publicva.EEPROM_Byte[address] = 0;
+ SetControl_U8_Data(object_x, address, AndBit, Right_No);
+ }
+
+ public void SetControl_U8_Data(Control objectX, int address, byte andBit, int rightNo)
+ {
+ if (objectX is ComboBox)
+ {
+ try
+ {
+ ((ComboBox) objectX).SelectedIndex = (byte) ((publicva.EEPROM_Byte[address] & (uint) andBit) >> (rightNo & 7));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ var num = (int) Interaction.MsgBox(objectX.Name + " 溢出出错值: " +
+ ((byte) ((publicva.EEPROM_Byte[address] & (uint) andBit) >> (rightNo & 7))));
+ ((ComboBox) objectX).SelectedIndex = 0;
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ if (!(objectX is CheckBox))
+ return;
+ try
+ {
+ if (rightNo != 0)
+ ((CheckBox) objectX).Checked = ((byte) ~(publicva.EEPROM_Byte[address] & andBit) & (uint) andBit) > 0U;
+ else
+ ((CheckBox) objectX).Checked = (publicva.EEPROM_Byte[address] & (uint) andBit) > 0U;
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ var num = (int) Interaction.MsgBox(objectX.Name + " 溢出出错值: " + ((byte) (publicva.EEPROM_Byte[address] & andBit)));
+ ((CheckBox) objectX).Checked = false;
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ public void GetControl_U8_Data(Control object_x, int address, byte AndBit, int Right_No)
+ {
+ if (object_x is ComboBox)
+ {
+ publicva.EEPROM_Byte[address] = (byte) (publicva.EEPROM_Byte[address] & ~AndBit);
+ publicva.EEPROM_Byte[address] = checked((byte) (publicva.EEPROM_Byte[address] | ((ComboBox) object_x).SelectedIndex << Right_No));
+ }
+
+ if (!(object_x is CheckBox))
+ return;
+ publicva.EEPROM_Byte[address] = !((CheckBox) object_x).Checked
+ ? (Right_No == 0 ? (byte) (publicva.EEPROM_Byte[address] & ~AndBit) : (byte) (publicva.EEPROM_Byte[address] | AndBit))
+ : (Right_No == 0 ? (byte) (publicva.EEPROM_Byte[address] | AndBit) : (byte) (publicva.EEPROM_Byte[address] & ~AndBit));
+ }
+
+ public object Get_2ByteToU16_L_H(int address)
+ {
+ return checked(publicva.EEPROM_Byte[address + 1] * 256 + publicva.EEPROM_Byte[address + 0] * 1);
+ }
+
+ public void Set_U16To2Byte_L_H(int value, int address)
+ {
+ publicva.EEPROM_Byte[checked(address + 1)] = checked((byte) ((value & 65280) >> 8));
+ publicva.EEPROM_Byte[checked(address + 0)] = checked((byte) (value & byte.MaxValue));
+ }
+
+ public object Get_4ByteToU32_L_H(int address)
+ {
+ return checked(publicva.EEPROM_Byte[address + 3] * 16777216 + publicva.EEPROM_Byte[address + 2] * 65536 +
+ publicva.EEPROM_Byte[address + 1] * 256 + publicva.EEPROM_Byte[address + 0] * 1);
+ }
+
+ private void Set_U32To4Byte_L_H(int value, int address)
+ {
+ publicva.EEPROM_Byte[checked(address + 3)] = checked((byte) ((value & -16777216) >> 24));
+ publicva.EEPROM_Byte[checked(address + 2)] = checked((byte) ((value & 16711680) >> 16));
+ publicva.EEPROM_Byte[checked(address + 1)] = checked((byte) ((value & 65280) >> 8));
+ publicva.EEPROM_Byte[checked(address + 0)] = checked((byte) (value & byte.MaxValue));
+ }
+
+ private void Get_FreqRang()
+ {
+ var num = 768;
+ var index = 0;
+ do
+ {
+ publicva.RxFreqRang[index, 0] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked(num + 0 + index * 16)));
+ publicva.RxFreqRang[index, 1] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked(num + 4 + index * 16)));
+ publicva.TxFreqRang[index, 0] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked(num + 8 + index * 16)));
+ publicva.TxFreqRang[index, 1] = Conversions.ToUInteger(Get_4ByteToU32_L_H(checked(num + 12 + index * 16)));
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= 6);
+ }
+
+ public void Set_FreqRang()
+ {
+ var num = 768;
+ var index = 0;
+ do
+ {
+ Set_U32To4Byte_L_H(checked((int) publicva.RxFreqRang[index, 0]), checked(num + 0 + index * 16));
+ Set_U32To4Byte_L_H(checked((int) publicva.RxFreqRang[index, 1]), checked(num + 4 + index * 16));
+ Set_U32To4Byte_L_H(checked((int) publicva.TxFreqRang[index, 0]), checked(num + 8 + index * 16));
+ Set_U32To4Byte_L_H(checked((int) publicva.TxFreqRang[index, 1]), checked(num + 12 + index * 16));
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= 6);
+ }
+
+ private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SaveAsToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void SaveToolStripButton_Click(object sender, EventArgs e)
+ {
+ SaveAsToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void 通信端口PToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.ComForm.ShowDialog();
+ }
+
+ private bool JudgeArrayDataIsSame(byte[] source, byte[] input)
+ {
+ var num = Information.UBound(source);
+ var index = 0;
+ while (index <= num)
+ {
+ if (source[index] != input[index])
+ return false;
+ checked
+ {
+ ++index;
+ }
+ }
+
+ return true;
+ }
+
+ private object Get_CRC_Data(byte[] UARTDATA)
+ {
+ var num1 = 0;
+ var num2 = checked((uint) (UARTDATA[6] + 3 - 1));
+ uint num3 = 0;
+ while (num3 <= num2)
+ {
+ num1 = checked(num1 + UARTDATA[(int) (4L + num3)]) & byte.MaxValue;
+ checked
+ {
+ ++num3;
+ }
+ }
+
+ return checked(25 - num1 & byte.MaxValue ^ byte.MaxValue + 1) & byte.MaxValue;
+ }
+
+ private void Tx_WriteDataCOM_Frame()
+ {
+ publicva.SendDataBuf[0] = 2;
+ publicva.SendDataBuf[1] = 35;
+ publicva.SendDataBuf[2] = 230;
+ publicva.SendDataBuf[3] = 245;
+ publicva.SendDataBuf[4] =
+ checked((byte) unchecked(publicva.Rw_EEPROM_Add_Length_List[checked((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] / 256L));
+ publicva.SendDataBuf[5] =
+ checked((byte) unchecked(publicva.Rw_EEPROM_Add_Length_List[checked((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] % 256L));
+ publicva.SendDataBuf[6] = checked((byte) publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 1]);
+ var num1 = checked((uint) (publicva.SendDataBuf[6] - 1));
+ uint num2 = 0;
+ while (num2 <= num1)
+ {
+ publicva.SendDataBuf[checked((int) (7L + num2))] =
+ publicva.EEPROM_Byte
+ [checked((int) (publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 0] + num2))];
+ checked
+ {
+ ++num2;
+ }
+ }
+
+ var index = checked(7 + publicva.SendDataBuf[6]);
+ publicva.SendDataBuf[index] = Conversions.ToByte(Get_CRC_Data(publicva.SendDataBuf));
+ publicva.SendDataBuf[checked(index + 1)] = 3;
+ publicva.ReceivedCount = 5U;
+ SerialPort1.Write(publicva.SendDataBuf, 0, checked(7 + publicva.SendDataBuf[6] + 1 + 1));
+ }
+
+ private void WriteDataToPC_EEPROM_Byte()
+ {
+ var num1 = checked((uint) (publicva.ReceivedDataBuf[6] - 1));
+ uint num2 = 0;
+ while (num2 <= num1)
+ {
+ publicva.EEPROM_Byte[checked((int) (publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 0] + num2))] =
+ publicva.ReceivedDataBuf[checked((int) (7L + num2))];
+ checked
+ {
+ ++num2;
+ }
+ }
+ }
+
+ private void Tx_ReadDataCOM_Frame()
+ {
+ publicva.SendDataBuf[0] = 2;
+ publicva.SendDataBuf[1] = 35;
+ publicva.SendDataBuf[2] = 229;
+ publicva.SendDataBuf[3] = 246;
+ publicva.SendDataBuf[4] =
+ checked((byte) unchecked(publicva.Rw_EEPROM_Add_Length_List[checked((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] / 256L));
+ publicva.SendDataBuf[5] =
+ checked((byte) unchecked(publicva.Rw_EEPROM_Add_Length_List[checked((int) publicva.Rw_EEPROM_Add_Length_ListIndex), 0] % 256L));
+ publicva.SendDataBuf[6] = checked((byte) publicva.Rw_EEPROM_Add_Length_List[(int) publicva.Rw_EEPROM_Add_Length_ListIndex, 1]);
+ publicva.SendDataBuf[7] = 3;
+ publicva.ReceivedCount = checked((uint) (7 + publicva.SendDataBuf[6] + 1 + 1));
+ SerialPort1.Write(publicva.SendDataBuf, 0, 8);
+ }
+
+ public bool MSCcomm_StartInit(string MscommComStr, uint[,] AddressList)
+ {
+ bool flag;
+ try
+ {
+ if (!SerialPort1.IsOpen)
+ {
+ SerialPort1.Open();
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Can not open serial port, check whether the port is occupied by other programs!!!");
+ flag = false;
+ goto label_9;
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Can not open serial port, check whether the port is occupied by other programs!!!");
+ flag = false;
+ ProjectData.ClearProjectError();
+ goto label_9;
+ }
+
+ SerialPort1.DiscardNull = true;
+ publicva.F_MSCommStop = false;
publicva.MSCommTimeOut = 60U;
publicva.MSCommReconnectionCount = 0U;
+ publicva.ChangeCOM_Count = 0U;
+ publicva.MSCommStatus = 0U;
+ publicva.MscommCom = MscommComStr;
+ publicva.ReceivedCount = 5U;
+ publicva.Rw_EEPROM_Add_Length_ListIndex = 0U;
+ publicva.Rw_EEPROM_Add_Length_ListSum = checked((uint) (Information.UBound(AddressList) + 1));
+ var num = checked((uint) Information.UBound(AddressList));
+ uint index = 0;
+ while (index <= num)
+ {
+ publicva.Rw_EEPROM_Add_Length_List[checked((int) index), 0] = AddressList[checked((int) index), 0];
+ publicva.Rw_EEPROM_Add_Length_List[checked((int) index), 1] = AddressList[checked((int) index), 1];
+ checked
+ {
+ ++index;
+ }
+ }
+
SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MSComm_Stop();
- MyProject.Forms.ChannelMsg.Msgbox_Msg("连接对讲机失败!", "Connection radios failed!");
- ProjectData.ClearProjectError();
- }
+ Timer1.Enabled = true;
+ publicva.LastProgrammeTime = Conversions.ToString(DateAndTime.Now.Year) + "-" + Conversions.ToString(DateAndTime.Now.Month) + "-" +
+ Conversions.ToString(DateAndTime.Now.Day);
+ flag = true;
+ label_9:
+ return flag;
}
- }
- }
- private void 从对讲机读取数据RToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.MSCommReadForm.ShowDialog();
- }
+ public void MSComm_Stop()
+ {
+ Timer1.Enabled = false;
+ publicva.MSCommTimeOut = 0U;
+ publicva.ChangeCOM_CNT = 0U;
+ publicva.F_MSCommStop = true;
+ publicva.ReceivedCount = 5U;
+ SerialPort1.DiscardNull = true;
+ if (!SerialPort1.IsOpen)
+ return;
+ Thread.Sleep(500);
+ Application.DoEvents();
+ SerialPort1.Close();
+ }
- private void 向对讲机写入数据WToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.MSCommWriteForm.ShowDialog();
- }
+ private void SerialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
+ {
+ if (SerialPort1.BytesToRead < publicva.ReceivedCount)
+ return;
+ SerialPort1.Read(publicva.ReceivedDataBuf, 0, checked((int) publicva.ReceivedCount));
+ switch (publicva.MSCommStatus)
+ {
+ case 0:
+ if (JudgeArrayDataIsSame(publicva.Rx_Connect_OK, publicva.ReceivedDataBuf))
+ {
+ publicva.MSCommTimeOut = 40U;
+ publicva.ChangeCOM_CNT = 0U;
+ publicva.MSCommStatus = 1U;
+ publicva.ReceivedCount = 21U;
+ SerialPort1.DiscardNull = false;
+ SerialPort1.Write(publicva.Tx_GetBandMsg, 0, publicva.Tx_GetBandMsg.Length);
+ break;
+ }
- private void ReadToolStripButton_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.MSCommReadForm.ShowDialog();
- }
+ publicva.ChangeCOM_CNT = 0U;
+ SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
+ break;
+ case 1:
+ var flag = false;
+ if (JudgeArrayDataIsSame(publicva.Rx_GetBandMsg, publicva.ReceivedDataBuf))
+ {
+ publicva.MSCommTimeOut = 40U;
+ var mscommCom1 = publicva.MscommCom;
+ if (Operators.CompareString(mscommCom1, "Write", false) == 0)
+ {
+ if ((publicva.ReceivedDataBuf[15] & (uint) publicva.Bit6) > 0U)
+ flag = true;
+ }
+ else if (Operators.CompareString(mscommCom1, "Read", false) == 0)
+ {
+ if ((publicva.ReceivedDataBuf[15] & (uint) publicva.Bit5) > 0U)
+ flag = true;
+ }
+ else if (Operators.CompareString(mscommCom1, "Write_Password", false) == 0 ||
+ Operators.CompareString(mscommCom1, "Read_Password", false) != 0)
+ ;
- private void WriteToolStripButton_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.MSCommWriteForm.ShowDialog();
- }
+ if (flag)
+ {
+ publicva.MSCommStatus = 7U;
+ }
+ else
+ {
+ publicva.MSCommStatus = 3U;
+ var mscommCom2 = publicva.MscommCom;
+ if (Operators.CompareString(mscommCom2, "Write", false) == 0 ||
+ Operators.CompareString(mscommCom2, "Write_Password", false) == 0)
+ Tx_WriteDataCOM_Frame();
+ else if (Operators.CompareString(mscommCom2, "Read", false) == 0 ||
+ Operators.CompareString(mscommCom2, "Read_Password", false) == 0)
+ Tx_ReadDataCOM_Frame();
+ }
- private void ComPortToolStripButton_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.ComForm.ShowDialog();
- }
+ break;
+ }
- private void 信道信息CToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
- }
+ break;
+ case 2:
+ if (JudgeArrayDataIsSame(publicva.Rx_Password_OK, publicva.ReceivedDataBuf))
+ {
+ publicva.MSCommTimeOut = 40U;
+ publicva.MSCommStatus = 3U;
+ var mscommCom = publicva.MscommCom;
+ if (Operators.CompareString(mscommCom, "Write", false) == 0)
+ {
+ Tx_WriteDataCOM_Frame();
+ break;
+ }
- private void 整机信息OToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.TypeFuncMsgForm);
- }
+ if (Operators.CompareString(mscommCom, "Read", false) == 0)
+ {
+ Tx_ReadDataCOM_Frame();
+ break;
+ }
- private void 扫描信息SToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.ScanFuncMsgForm);
- }
+ break;
+ }
- private void 提示音AToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.BeepForm);
- }
+ if (JudgeArrayDataIsSame(publicva.Rx_Password_Error, publicva.ReceivedDataBuf))
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Parrword Error");
+ publicva.MSCommStatus = 6U;
+ break;
+ }
- private void 双音多频DToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.DtmfForm);
- }
+ break;
+ case 3:
+ var mscommCom3 = publicva.MscommCom;
+ if (Operators.CompareString(mscommCom3, "Write", false) == 0 || Operators.CompareString(mscommCom3, "Write_Password", false) == 0)
+ {
+ if (JudgeArrayDataIsSame(publicva.Rx_CRC_DATA_OK, publicva.ReceivedDataBuf))
+ {
+ publicva.MSCommTimeOut = 40U;
+ publicva.Rw_EEPROM_Add_Length_ListIndex = checked((uint) (publicva.Rw_EEPROM_Add_Length_ListIndex + 1L));
+ if (publicva.Rw_EEPROM_Add_Length_ListIndex >= publicva.Rw_EEPROM_Add_Length_ListSum)
+ {
+ publicva.MSCommStatus = 4U;
+ publicva.ReceivedCount = 5U;
+ SerialPort1.Write(publicva.Tx_MSCommFinish, 0, publicva.Tx_MSCommFinish.Length);
+ break;
+ }
- private void 两音TToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms._2ToneForm);
- }
+ Tx_WriteDataCOM_Frame();
+ break;
+ }
- private void 五音FToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms._5ToneForm);
- }
+ if (JudgeArrayDataIsSame(publicva.Rx_CRC_DATA_Error, publicva.ReceivedDataBuf))
+ {
+ SerialPort1.Write(publicva.SendDataBuf, 0, checked(7 + publicva.SendDataBuf[6] + 1 + 1));
+ break;
+ }
- private void 紧急报警信息EToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.SOSMsgForm);
- }
+ break;
+ }
- private void 收音机存储信道JToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.RadioMsgForm);
- }
+ if (Operators.CompareString(mscommCom3, "Read", false) == 0 || Operators.CompareString(mscommCom3, "Read_Password", false) == 0)
+ {
+ var index = checked(7 + publicva.ReceivedDataBuf[6]);
+ if (Operators.ConditionalCompareObjectEqual(Get_CRC_Data(publicva.ReceivedDataBuf), publicva.ReceivedDataBuf[index], false))
+ {
+ publicva.MSCommTimeOut = 40U;
+ WriteDataToPC_EEPROM_Byte();
+ publicva.Rw_EEPROM_Add_Length_ListIndex = checked((uint) (publicva.Rw_EEPROM_Add_Length_ListIndex + 1L));
+ if (publicva.Rw_EEPROM_Add_Length_ListIndex >= publicva.Rw_EEPROM_Add_Length_ListSum)
+ {
+ publicva.MSCommStatus = 4U;
+ publicva.ReceivedCount = 5U;
+ SerialPort1.Write(publicva.Tx_MSCommFinish, 0, publicva.Tx_MSCommFinish.Length);
+ }
+ else
+ Tx_ReadDataCOM_Frame();
+ }
+ else
+ SerialPort1.Write(publicva.SendDataBuf, 0, 8);
- private void 嵌入信息IToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.MsgForm);
- }
+ break;
+ }
- private void 对讲机信息RToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.SofeMsgForm);
- }
+ break;
+ case 4:
+ if (JudgeArrayDataIsSame(publicva.Rx_MSCommFinish_OK, publicva.ReceivedDataBuf))
+ {
+ publicva.MSCommStatus = 5U;
+ break;
+ }
- private void 机型信息MToolStripMenuItem_Click(object sender, EventArgs e)
- {
- SafeLoadWindowByName(MyProject.Forms.TypeMsgForm);
- }
+ break;
+ }
+ }
- private void AboutToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var num = (int) MyProject.Forms.AboutForm.ShowDialog();
- }
+ private void Timer1_Tick(object sender, EventArgs e)
+ {
+ switch (publicva.MSCommStatus)
+ {
+ case 5:
+ var mscommCom = publicva.MscommCom;
+ if (Operators.CompareString(mscommCom, "Write", false) == 0)
+ {
+ MSComm_Stop();
+ break;
+ }
- private void 更改密码CToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (!MSCcomm_StartInit("Read_Password", publicva.RPassword_EEPROM_Add_Lendgth_List))
- ;
- }
+ if (Operators.CompareString(mscommCom, "Read", false) == 0)
+ {
+ AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
+ FormTreeViewHide();
+ MSComm_Stop();
+ var numArray = new byte[32769];
+ var streamReader = File.OpenText(Application.StartupPath + "\\default_data.hpg");
+ var index1 = 0;
+ do
+ {
+ numArray[index1] = Conversions.ToByte("&h" + streamReader.ReadLine());
+ checked
+ {
+ ++index1;
+ }
+ }
+ while (index1 <= short.MaxValue);
- private void changeLanguage(string languageName)
- {
- try
- {
- LanguageHelper.SetLanguage(languageName, this);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms._2ToneForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms._5ToneForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.AboutForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.BeepForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.ChannelEditForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.ChannelMsg);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.ComForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.DtmfForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.InputPasswordForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.MSCommReadForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.MSCommWriteForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.MsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.PasswordForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.RadioMsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.ScanFuncMsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.SofeMsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.SOSMsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.TypeFuncMsgForm);
- LanguageHelper.SetLanguage(languageName, MyProject.Forms.TypeMsgForm);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- throw ex;
- }
- }
+ streamReader.Close();
+ var index2 = 0;
+ do
+ {
+ numArray[index2] = publicva.EEPROM_Byte[index2];
+ checked
+ {
+ ++index2;
+ }
+ }
+ while (index2 <= 895);
- private void 中文ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- return;
- CloseAllToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- publicva.Language = "zh-CN";
- 中文ToolStripMenuItem.Checked = true;
- 英文ToolStripMenuItem.Checked = false;
- AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
- changeLanguage(publicva.Language);
- AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
- FormTreeViewHide();
- SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
- CascadeToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- try
- {
- var text = File.CreateText(Application.StartupPath + "\\Config.hpg");
- text.WriteLine(publicva.Language);
- text.Close();
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- }
+ var text = File.CreateText(Application.StartupPath + "\\default_data.hpg");
+ var startIndex = 0;
+ do
+ {
+ text.WriteLine(BitConverter.ToString(numArray, startIndex, 1));
+ checked
+ {
+ ++startIndex;
+ }
+ }
+ while (startIndex <= short.MaxValue);
- private void 英文ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (Operators.CompareString(publicva.Language, "en-US", false) == 0)
- return;
- CloseAllToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- publicva.Language = "en-US";
- 中文ToolStripMenuItem.Checked = false;
- 英文ToolStripMenuItem.Checked = true;
- AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
- changeLanguage(publicva.Language);
- AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
- FormTreeViewHide();
- SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
- CascadeToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
- try
- {
- var text = File.CreateText(Application.StartupPath + "\\Config.hpg");
- text.WriteLine(publicva.Language);
- text.Close();
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
+ text.Close();
+ break;
+ }
+
+ if (Operators.CompareString(mscommCom, "Write_Password", false) == 0)
+ {
+ MSComm_Stop();
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Password change is successful!");
+ break;
+ }
+
+ if (Operators.CompareString(mscommCom, "Read_Password", false) == 0)
+ {
+ MSComm_Stop();
+ var num = (int) MyProject.Forms.PasswordForm.ShowDialog();
+ break;
+ }
+
+ break;
+ case 6:
+ MSComm_Stop();
+ break;
+ case 7:
+ Timer1.Enabled = false;
+ var num1 = (int) MyProject.Forms.InputPasswordForm.ShowDialog();
+ break;
+ }
+
+ if (publicva.MSCommTimeOut > 0U)
+ {
+ publicva.MSCommTimeOut = checked((uint) (publicva.MSCommTimeOut - 1L));
+ if (publicva.MSCommTimeOut == 0U)
+ {
+ if (publicva.MSCommStatus == 0U)
+ {
+ publicva.MSCommReconnectionCount = checked((uint) (publicva.MSCommReconnectionCount + 1L));
+ if (publicva.MSCommReconnectionCount >= 5U)
+ {
+ MSComm_Stop();
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Connection radios failed!");
+ }
+ else
+ {
+ publicva.MSCommTimeOut = 60U;
+ SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
+ }
+ }
+ else
+ {
+ MSComm_Stop();
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Transmission interruption, please check connections and try again!!!");
+ }
+ }
+ }
+
+ if (publicva.ChangeCOM_CNT <= 0U)
+ return;
+ publicva.ChangeCOM_CNT = checked((uint) (publicva.ChangeCOM_CNT - 1L));
+ if (publicva.ChangeCOM_CNT == 0U)
+ {
+ publicva.ChangeCOM_Count = checked((uint) (publicva.ChangeCOM_Count + 1L));
+ if (publicva.ChangeCOM_Count > MyProject.Forms.ComForm.ComboBox1.Items.Count)
+ {
+ MSComm_Stop();
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Connection radios failed!");
+ }
+ else
+ {
+ try
+ {
+ if (SerialPort1.IsOpen)
+ {
+ Thread.Sleep(500);
+ Application.DoEvents();
+ SerialPort1.Close();
+ }
+
+ publicva.COM_SelectIndex = checked((uint) (publicva.COM_SelectIndex + 1L));
+ if (publicva.COM_SelectIndex >= MyProject.Forms.ComForm.ComboBox1.Items.Count)
+ publicva.COM_SelectIndex = 0U;
+ MyProject.Forms.ComForm.ComboBox1.SelectedIndex = checked((int) publicva.COM_SelectIndex);
+ SerialPort1.PortName = MyProject.Forms.ComForm.ComboBox1.Text;
+ SerialPort1.Open();
+ publicva.MSCommTimeOut = 60U;
+ publicva.MSCommReconnectionCount = 0U;
+ SerialPort1.Write(publicva.Tx_Connect, 0, publicva.Tx_Connect.Length);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MSComm_Stop();
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Connection radios failed!");
+ ProjectData.ClearProjectError();
+ }
+ }
+ }
+ }
+
+ private void 从对讲机读取数据RToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.MSCommReadForm.ShowDialog();
+ }
+
+ private void 向对讲机写入数据WToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.MSCommWriteForm.ShowDialog();
+ }
+
+ private void ReadToolStripButton_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.MSCommReadForm.ShowDialog();
+ }
+
+ private void WriteToolStripButton_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.MSCommWriteForm.ShowDialog();
+ }
+
+ private void ComPortToolStripButton_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.ComForm.ShowDialog();
+ }
+
+ private void 信道信息CToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
+ }
+
+ private void 整机信息OToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.TypeFuncMsgForm);
+ }
+
+ private void 扫描信息SToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.ScanFuncMsgForm);
+ }
+
+ private void 提示音AToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.BeepForm);
+ }
+
+ private void 双音多频DToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.DtmfForm);
+ }
+
+ private void 两音TToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms._2ToneForm);
+ }
+
+ private void 五音FToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms._5ToneForm);
+ }
+
+ private void 紧急报警信息EToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.SOSMsgForm);
+ }
+
+ private void 收音机存储信道JToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.RadioMsgForm);
+ }
+
+ private void 嵌入信息IToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.MsgForm);
+ }
+
+ private void 对讲机信息RToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.SofeMsgForm);
+ }
+
+ private void 机型信息MToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ SafeLoadWindowByName(MyProject.Forms.TypeMsgForm);
+ }
+
+ private void AboutToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var num = (int) MyProject.Forms.AboutForm.ShowDialog();
+ }
+
+ private void 更改密码CToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ if (!MSCcomm_StartInit("Read_Password", publicva.RPassword_EEPROM_Add_Lendgth_List))
+ ;
+ }
+
+ private void ChangeLanguage(string languageName)
+ {
+ try
+ {
+ LanguageHelper.SetLanguage(languageName, this);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms._2ToneForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms._5ToneForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.AboutForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.BeepForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.ChannelEditForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.ChannelMsg);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.ComForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.DtmfForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.InputPasswordForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.MSCommReadForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.MSCommWriteForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.MsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.PasswordForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.RadioMsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.ScanFuncMsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.SofeMsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.SOSMsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.TypeFuncMsgForm);
+ LanguageHelper.SetLanguage(languageName, MyProject.Forms.TypeMsgForm);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ throw ex;
+ }
+ }
+
+ private void 中文ToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ return;
+ CloseAllToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ publicva.Language = "zh-CN";
+ 中文ToolStripMenuItem.Checked = true;
+ 英文ToolStripMenuItem.Checked = false;
+ AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
+ ChangeLanguage(publicva.Language);
+ AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
+ FormTreeViewHide();
+ SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
+ CascadeToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ try
+ {
+ var text = File.CreateText(Application.StartupPath + "\\Config.hpg");
+ text.WriteLine(publicva.Language);
+ text.Close();
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ private void 英文ToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ if (Operators.CompareString(publicva.Language, "en-US", false) == 0)
+ return;
+ CloseAllToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ publicva.Language = "en-US";
+ 中文ToolStripMenuItem.Checked = false;
+ 英文ToolStripMenuItem.Checked = true;
+ AllForm_SaveData(RuntimeHelpers.GetObjectValue(sender), e);
+ ChangeLanguage(publicva.Language);
+ AllForm_LoadData(RuntimeHelpers.GetObjectValue(sender), e);
+ FormTreeViewHide();
+ SafeLoadWindowByName(MyProject.Forms.ChannelMsg);
+ CascadeToolStripMenuItem_Click(RuntimeHelpers.GetObjectValue(sender), e);
+ try
+ {
+ var text = File.CreateText(Application.StartupPath + "\\Config.hpg");
+ text.WriteLine(publicva.Language);
+ text.Close();
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
}
- }
-}
+}
\ No newline at end of file
diff --git a/HPG-68D/My/MyApplication.cs b/HPG-68D/My/MyApplication.cs
index 3e036a3..3b49dfd 100644
--- a/HPG-68D/My/MyApplication.cs
+++ b/HPG-68D/My/MyApplication.cs
@@ -1,10 +1,4 @@
-// Decompiled with JetBrains decompiler
-// Type: HPG_68D.My.MyApplication
-// Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
-// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-
-using Microsoft.VisualBasic.ApplicationServices;
+using Microsoft.VisualBasic.ApplicationServices;
using System;
using System.CodeDom.Compiler;
using System.Collections;
@@ -27,7 +21,6 @@ namespace HPG_68D.My
[STAThread]
[DebuggerHidden]
- [EditorBrowsable(EditorBrowsableState.Advanced)]
internal static void Main(string[] Args)
{
try
@@ -48,6 +41,7 @@ namespace HPG_68D.My
IsSingleInstance = false;
EnableVisualStyles = true;
SaveMySettingsOnExit = true;
+
ShutdownStyle = ShutdownMode.AfterMainFormCloses;
}
diff --git a/HPG-68D/My/MyProject.cs b/HPG-68D/My/MyProject.cs
index 1065ebf..323f108 100644
--- a/HPG-68D/My/MyProject.cs
+++ b/HPG-68D/My/MyProject.cs
@@ -1,10 +1,4 @@
-// Decompiled with JetBrains decompiler
-// Type: HPG_68D.My.MyProject
-// Assembly: HPG-68D, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
-// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
-// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-
-using Microsoft.VisualBasic;
+using Microsoft.VisualBasic;
using Microsoft.VisualBasic.ApplicationServices;
using Microsoft.VisualBasic.CompilerServices;
using System;
diff --git a/HPG-68D/My/MySettings.cs b/HPG-68D/My/MySettings.cs
index c483b19..7d268ed 100644
--- a/HPG-68D/My/MySettings.cs
+++ b/HPG-68D/My/MySettings.cs
@@ -4,7 +4,6 @@
// MVID: 530C99A8-8EEF-42C8-8A74-66FDE7B322C3
// Assembly location: C:\Program Files (x86)\HONGKAIDE\HPG-68D\HPG-68D.exe
-using Microsoft.VisualBasic.ApplicationServices;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.CodeDom.Compiler;
diff --git a/HPG-68D/PasswordForm.cs b/HPG-68D/PasswordForm.cs
index 5414b55..0795d88 100644
--- a/HPG-68D/PasswordForm.cs
+++ b/HPG-68D/PasswordForm.cs
@@ -11,535 +11,551 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class PasswordForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- [AccessedThroughProperty("TextBoxPassword")]
- private TextBox _TextBoxPassword;
- [AccessedThroughProperty("ButtonOK")]
- private Button _ButtonOK;
- [AccessedThroughProperty("ButtonCannel")]
- private Button _ButtonCannel;
- [AccessedThroughProperty("Label2")]
- private Label _Label2;
- [AccessedThroughProperty("TextBox_NewPassword_R")]
- private TextBox _TextBox_NewPassword_R;
- [AccessedThroughProperty("CheckBox_WritePassword")]
- private CheckBox _CheckBox_WritePassword;
- [AccessedThroughProperty("CheckBox_ReadPassword")]
- private CheckBox _CheckBox_ReadPassword;
- [AccessedThroughProperty("GroupBox_ReadPassword")]
- private GroupBox _GroupBox_ReadPassword;
- [AccessedThroughProperty("Label3")]
- private Label _Label3;
- [AccessedThroughProperty("TextBox_EnterPassword_R")]
- private TextBox _TextBox_EnterPassword_R;
- [AccessedThroughProperty("GroupBox_WritePassword")]
- private GroupBox _GroupBox_WritePassword;
- [AccessedThroughProperty("TextBox_OldPassword_W")]
- private TextBox _TextBox_OldPassword_W;
- [AccessedThroughProperty("Label4")]
- private Label _Label4;
- [AccessedThroughProperty("Label5")]
- private Label _Label5;
- [AccessedThroughProperty("Label6")]
- private Label _Label6;
- [AccessedThroughProperty("TextBox_EnterPassword_W")]
- private TextBox _TextBox_EnterPassword_W;
- [AccessedThroughProperty("TextBox_NewPassword_W")]
- private TextBox _TextBox_NewPassword_W;
-
- [DebuggerNonUserCode]
- static PasswordForm()
+ [DesignerGenerated]
+ public class PasswordForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
+ [AccessedThroughProperty("TextBoxPassword")]
+ private TextBox _TextBoxPassword;
+ [AccessedThroughProperty("ButtonOK")]
+ private Button _ButtonOK;
+ [AccessedThroughProperty("ButtonCannel")]
+ private Button _ButtonCannel;
+ [AccessedThroughProperty("Label2")]
+ private Label _Label2;
+ [AccessedThroughProperty("TextBox_NewPassword_R")]
+ private TextBox _TextBox_NewPassword_R;
+ [AccessedThroughProperty("CheckBox_WritePassword")]
+ private CheckBox _CheckBox_WritePassword;
+ [AccessedThroughProperty("CheckBox_ReadPassword")]
+ private CheckBox _CheckBox_ReadPassword;
+ [AccessedThroughProperty("GroupBox_ReadPassword")]
+ private GroupBox _GroupBox_ReadPassword;
+ [AccessedThroughProperty("Label3")]
+ private Label _Label3;
+ [AccessedThroughProperty("TextBox_EnterPassword_R")]
+ private TextBox _TextBox_EnterPassword_R;
+ [AccessedThroughProperty("GroupBox_WritePassword")]
+ private GroupBox _GroupBox_WritePassword;
+ [AccessedThroughProperty("TextBox_OldPassword_W")]
+ private TextBox _TextBox_OldPassword_W;
+ [AccessedThroughProperty("Label4")]
+ private Label _Label4;
+ [AccessedThroughProperty("Label5")]
+ private Label _Label5;
+ [AccessedThroughProperty("Label6")]
+ private Label _Label6;
+ [AccessedThroughProperty("TextBox_EnterPassword_W")]
+ private TextBox _TextBox_EnterPassword_W;
+ [AccessedThroughProperty("TextBox_NewPassword_W")]
+ private TextBox _TextBox_NewPassword_W;
- [DebuggerNonUserCode]
- public PasswordForm()
- {
- Load += PasswordForm_Load;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (PasswordForm));
- Label1 = new Label();
- TextBoxPassword = new TextBox();
- ButtonOK = new Button();
- ButtonCannel = new Button();
- Label2 = new Label();
- TextBox_NewPassword_R = new TextBox();
- CheckBox_WritePassword = new CheckBox();
- CheckBox_ReadPassword = new CheckBox();
- GroupBox_ReadPassword = new GroupBox();
- Label3 = new Label();
- TextBox_EnterPassword_R = new TextBox();
- GroupBox_WritePassword = new GroupBox();
- TextBox_OldPassword_W = new TextBox();
- Label4 = new Label();
- Label5 = new Label();
- Label6 = new Label();
- TextBox_EnterPassword_W = new TextBox();
- TextBox_NewPassword_W = new TextBox();
- GroupBox_ReadPassword.SuspendLayout();
- GroupBox_WritePassword.SuspendLayout();
- SuspendLayout();
- Label1.AccessibleDescription = null;
- Label1.AccessibleName = null;
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Font = null;
- Label1.Name = "Label1";
- TextBoxPassword.AccessibleDescription = null;
- TextBoxPassword.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBoxPassword, "TextBoxPassword");
- TextBoxPassword.BackgroundImage = null;
- TextBoxPassword.Font = null;
- TextBoxPassword.Name = "TextBoxPassword";
- ButtonOK.AccessibleDescription = null;
- ButtonOK.AccessibleName = null;
- componentResourceManager.ApplyResources(ButtonOK, "ButtonOK");
- ButtonOK.BackgroundImage = null;
- ButtonOK.Font = null;
- ButtonOK.Name = "ButtonOK";
- ButtonOK.UseVisualStyleBackColor = true;
- ButtonCannel.AccessibleDescription = null;
- ButtonCannel.AccessibleName = null;
- componentResourceManager.ApplyResources(ButtonCannel, "ButtonCannel");
- ButtonCannel.BackgroundImage = null;
- ButtonCannel.Font = null;
- ButtonCannel.Name = "ButtonCannel";
- ButtonCannel.UseVisualStyleBackColor = true;
- Label2.AccessibleDescription = null;
- Label2.AccessibleName = null;
- componentResourceManager.ApplyResources(Label2, "Label2");
- Label2.Font = null;
- Label2.Name = "Label2";
- TextBox_NewPassword_R.AccessibleDescription = null;
- TextBox_NewPassword_R.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox_NewPassword_R, "TextBox_NewPassword_R");
- TextBox_NewPassword_R.BackgroundImage = null;
- TextBox_NewPassword_R.Font = null;
- TextBox_NewPassword_R.Name = "TextBox_NewPassword_R";
- CheckBox_WritePassword.AccessibleDescription = null;
- CheckBox_WritePassword.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox_WritePassword, "CheckBox_WritePassword");
- CheckBox_WritePassword.BackgroundImage = null;
- CheckBox_WritePassword.Font = null;
- CheckBox_WritePassword.Name = "CheckBox_WritePassword";
- CheckBox_WritePassword.UseVisualStyleBackColor = true;
- CheckBox_ReadPassword.AccessibleDescription = null;
- CheckBox_ReadPassword.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox_ReadPassword, "CheckBox_ReadPassword");
- CheckBox_ReadPassword.BackgroundImage = null;
- CheckBox_ReadPassword.Font = null;
- CheckBox_ReadPassword.Name = "CheckBox_ReadPassword";
- CheckBox_ReadPassword.UseVisualStyleBackColor = true;
- GroupBox_ReadPassword.AccessibleDescription = null;
- GroupBox_ReadPassword.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox_ReadPassword, "GroupBox_ReadPassword");
- GroupBox_ReadPassword.BackgroundImage = null;
- GroupBox_ReadPassword.Controls.Add(TextBoxPassword);
- GroupBox_ReadPassword.Controls.Add(Label1);
- GroupBox_ReadPassword.Controls.Add(Label3);
- GroupBox_ReadPassword.Controls.Add(Label2);
- GroupBox_ReadPassword.Controls.Add(TextBox_EnterPassword_R);
- GroupBox_ReadPassword.Controls.Add(TextBox_NewPassword_R);
- GroupBox_ReadPassword.Font = null;
- GroupBox_ReadPassword.Name = "GroupBox_ReadPassword";
- GroupBox_ReadPassword.TabStop = false;
- Label3.AccessibleDescription = null;
- Label3.AccessibleName = null;
- componentResourceManager.ApplyResources(Label3, "Label3");
- Label3.Font = null;
- Label3.Name = "Label3";
- TextBox_EnterPassword_R.AccessibleDescription = null;
- TextBox_EnterPassword_R.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox_EnterPassword_R, "TextBox_EnterPassword_R");
- TextBox_EnterPassword_R.BackgroundImage = null;
- TextBox_EnterPassword_R.Font = null;
- TextBox_EnterPassword_R.Name = "TextBox_EnterPassword_R";
- GroupBox_WritePassword.AccessibleDescription = null;
- GroupBox_WritePassword.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox_WritePassword, "GroupBox_WritePassword");
- GroupBox_WritePassword.BackgroundImage = null;
- GroupBox_WritePassword.Controls.Add(TextBox_OldPassword_W);
- GroupBox_WritePassword.Controls.Add(Label4);
- GroupBox_WritePassword.Controls.Add(Label5);
- GroupBox_WritePassword.Controls.Add(Label6);
- GroupBox_WritePassword.Controls.Add(TextBox_EnterPassword_W);
- GroupBox_WritePassword.Controls.Add(TextBox_NewPassword_W);
- GroupBox_WritePassword.Font = null;
- GroupBox_WritePassword.Name = "GroupBox_WritePassword";
- GroupBox_WritePassword.TabStop = false;
- TextBox_OldPassword_W.AccessibleDescription = null;
- TextBox_OldPassword_W.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox_OldPassword_W, "TextBox_OldPassword_W");
- TextBox_OldPassword_W.BackgroundImage = null;
- TextBox_OldPassword_W.Font = null;
- TextBox_OldPassword_W.Name = "TextBox_OldPassword_W";
- Label4.AccessibleDescription = null;
- Label4.AccessibleName = null;
- componentResourceManager.ApplyResources(Label4, "Label4");
- Label4.Font = null;
- Label4.Name = "Label4";
- Label5.AccessibleDescription = null;
- Label5.AccessibleName = null;
- componentResourceManager.ApplyResources(Label5, "Label5");
- Label5.Font = null;
- Label5.Name = "Label5";
- Label6.AccessibleDescription = null;
- Label6.AccessibleName = null;
- componentResourceManager.ApplyResources(Label6, "Label6");
- Label6.Font = null;
- Label6.Name = "Label6";
- TextBox_EnterPassword_W.AccessibleDescription = null;
- TextBox_EnterPassword_W.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox_EnterPassword_W, "TextBox_EnterPassword_W");
- TextBox_EnterPassword_W.BackgroundImage = null;
- TextBox_EnterPassword_W.Font = null;
- TextBox_EnterPassword_W.Name = "TextBox_EnterPassword_W";
- TextBox_NewPassword_W.AccessibleDescription = null;
- TextBox_NewPassword_W.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox_NewPassword_W, "TextBox_NewPassword_W");
- TextBox_NewPassword_W.BackgroundImage = null;
- TextBox_NewPassword_W.Font = null;
- TextBox_NewPassword_W.Name = "TextBox_NewPassword_W";
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- BackgroundImage = null;
- Controls.Add(GroupBox_WritePassword);
- Controls.Add(GroupBox_ReadPassword);
- Controls.Add(CheckBox_ReadPassword);
- Controls.Add(CheckBox_WritePassword);
- Controls.Add(ButtonCannel);
- Controls.Add(ButtonOK);
- Font = null;
- FormBorderStyle = FormBorderStyle.FixedDialog;
- MaximizeBox = false;
- MinimizeBox = false;
- Name = nameof (PasswordForm);
- GroupBox_ReadPassword.ResumeLayout(false);
- GroupBox_ReadPassword.PerformLayout();
- GroupBox_WritePassword.ResumeLayout(false);
- GroupBox_WritePassword.PerformLayout();
- ResumeLayout(false);
- PerformLayout();
- }
-
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
-
- internal virtual TextBox TextBoxPassword
- {
- [DebuggerNonUserCode] get => _TextBoxPassword;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBoxPassword = value;
- }
- }
-
- internal virtual Button ButtonOK
- {
- [DebuggerNonUserCode] get => _ButtonOK;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ButtonOK != null)
- _ButtonOK.Click -= ButtonOK_Click;
- _ButtonOK = value;
- if (_ButtonOK == null)
- return;
- _ButtonOK.Click += ButtonOK_Click;
- }
- }
-
- internal virtual Button ButtonCannel
- {
- [DebuggerNonUserCode] get => _ButtonCannel;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ButtonCannel != null)
- _ButtonCannel.Click -= ButtonCannel_Click;
- _ButtonCannel = value;
- if (_ButtonCannel == null)
- return;
- _ButtonCannel.Click += ButtonCannel_Click;
- }
- }
-
- internal virtual Label Label2
- {
- [DebuggerNonUserCode] get => _Label2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label2 = value;
- }
-
- internal virtual TextBox TextBox_NewPassword_R
- {
- [DebuggerNonUserCode] get => _TextBox_NewPassword_R;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBox_NewPassword_R = value;
- }
- }
-
- internal virtual CheckBox CheckBox_WritePassword
- {
- [DebuggerNonUserCode] get => _CheckBox_WritePassword;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox_WritePassword != null)
- _CheckBox_WritePassword.CheckedChanged -= CheckBox_WritePassword_CheckedChanged;
- _CheckBox_WritePassword = value;
- if (_CheckBox_WritePassword == null)
- return;
- _CheckBox_WritePassword.CheckedChanged += CheckBox_WritePassword_CheckedChanged;
- }
- }
-
- internal virtual CheckBox CheckBox_ReadPassword
- {
- [DebuggerNonUserCode] get => _CheckBox_ReadPassword;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox_ReadPassword != null)
- _CheckBox_ReadPassword.CheckedChanged -= CheckBox_ReadPassword_CheckedChanged;
- _CheckBox_ReadPassword = value;
- if (_CheckBox_ReadPassword == null)
- return;
- _CheckBox_ReadPassword.CheckedChanged += CheckBox_ReadPassword_CheckedChanged;
- }
- }
-
- internal virtual GroupBox GroupBox_ReadPassword
- {
- [DebuggerNonUserCode] get => _GroupBox_ReadPassword;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox_ReadPassword = value;
- }
- }
-
- internal virtual Label Label3
- {
- [DebuggerNonUserCode] get => _Label3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label3 = value;
- }
-
- internal virtual TextBox TextBox_EnterPassword_R
- {
- [DebuggerNonUserCode] get => _TextBox_EnterPassword_R;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBox_EnterPassword_R = value;
- }
- }
-
- internal virtual GroupBox GroupBox_WritePassword
- {
- [DebuggerNonUserCode] get => _GroupBox_WritePassword;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox_WritePassword = value;
- }
- }
-
- internal virtual TextBox TextBox_OldPassword_W
- {
- [DebuggerNonUserCode] get => _TextBox_OldPassword_W;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBox_OldPassword_W = value;
- }
- }
-
- internal virtual Label Label4
- {
- [DebuggerNonUserCode] get => _Label4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label4 = value;
- }
-
- internal virtual Label Label5
- {
- [DebuggerNonUserCode] get => _Label5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label5 = value;
- }
-
- internal virtual Label Label6
- {
- [DebuggerNonUserCode] get => _Label6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label6 = value;
- }
-
- internal virtual TextBox TextBox_EnterPassword_W
- {
- [DebuggerNonUserCode] get => _TextBox_EnterPassword_W;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBox_EnterPassword_W = value;
- }
- }
-
- internal virtual TextBox TextBox_NewPassword_W
- {
- [DebuggerNonUserCode] get => _TextBox_NewPassword_W;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TextBox_NewPassword_W = value;
- }
- }
-
- private void PasswordForm_Load(object sender, EventArgs e)
- {
- var num = 0;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox_ReadPassword, checked (num + 11), publicva.Bit5, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox_WritePassword, checked (num + 11), publicva.Bit6, 0);
- CheckBox_ReadPassword_CheckedChanged(RuntimeHelpers.GetObjectValue(sender), e);
- CheckBox_WritePassword_CheckedChanged(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void ButtonCannel_Click(object sender, EventArgs e) => Close();
-
- private void ButtonOK_Click(object sender, EventArgs e)
- {
- var num1 = 60;
- var Right1 = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked (num1 + 0), 16));
- var num2 = 70;
- var Right2 = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked (num2 + 0), 16));
- var num3 = 0;
- if ((publicva.EEPROM_Byte[checked (num3 + 11)] & (uint) publicva.Bit5) > 0U)
- {
- if (Operators.CompareString(TextBoxPassword.Text, Right1, false) == 0)
+ [DebuggerNonUserCode]
+ static PasswordForm()
{
- if (Operators.CompareString(TextBox_NewPassword_R.Text, TextBox_EnterPassword_R.Text, false) == 0)
- {
- Encoding.ASCII.GetBytes(TextBox_NewPassword_R.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 60);
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("输入密码不同!", "Enter a password different!");
- TextBox_NewPassword_R.Text = "";
- TextBox_EnterPassword_R.Text = "";
- return;
- }
}
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("旧密码不对!", "The old password is wrong!");
- TextBoxPassword.Text = "";
- TextBox_NewPassword_R.Text = "";
- TextBox_EnterPassword_R.Text = "";
- return;
- }
- }
- else if (Operators.CompareString(TextBox_NewPassword_R.Text, TextBox_EnterPassword_R.Text, false) == 0)
- {
- Encoding.ASCII.GetBytes(TextBox_NewPassword_R.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 60);
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("输入密码不同!", "Enter a password different!");
- TextBox_NewPassword_R.Text = "";
- TextBox_EnterPassword_R.Text = "";
- return;
- }
- if ((publicva.EEPROM_Byte[checked (num3 + 11)] & (uint) publicva.Bit6) > 0U)
- {
- if (Operators.CompareString(TextBox_OldPassword_W.Text, Right2, false) == 0)
- {
- if (Operators.CompareString(TextBox_NewPassword_W.Text, TextBox_EnterPassword_W.Text, false) == 0)
- {
- Encoding.ASCII.GetBytes(TextBox_NewPassword_W.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 70);
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("输入密码不同!", "Enter a password different!");
- TextBox_NewPassword_W.Text = "";
- TextBox_EnterPassword_W.Text = "";
- return;
- }
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("旧密码不对!", "The old password is wrong!");
- TextBox_OldPassword_W.Text = "";
- TextBox_NewPassword_W.Text = "";
- TextBox_EnterPassword_W.Text = "";
- return;
- }
- }
- else if (Operators.CompareString(TextBox_NewPassword_W.Text, TextBox_EnterPassword_W.Text, false) == 0)
- {
- Encoding.ASCII.GetBytes(TextBox_NewPassword_W.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 70);
- }
- else
- {
- MyProject.Forms.ChannelMsg.Msgbox_Msg("输入密码不同!", "Enter a password different!");
- TextBox_NewPassword_W.Text = "";
- TextBox_EnterPassword_W.Text = "";
- return;
- }
- publicva.EEPROM_Byte[checked (num3 + 11)] = Operators.CompareString(TextBox_NewPassword_R.Text, "", false) != 0 ? (byte) (publicva.EEPROM_Byte[checked (num3 + 11)] | publicva.Bit5) : (byte) (publicva.EEPROM_Byte[checked (num3 + 11)] & ~publicva.Bit5);
- publicva.EEPROM_Byte[checked (num3 + 11)] = Operators.CompareString(TextBox_NewPassword_W.Text, "", false) != 0 ? (byte) (publicva.EEPROM_Byte[checked (num3 + 11)] | publicva.Bit6) : (byte) (publicva.EEPROM_Byte[checked (num3 + 11)] & ~publicva.Bit6);
- if (!MyProject.Forms.MDIParent1.MSCcomm_StartInit("Write_Password", publicva.WPassword_EEPROM_Add_Lendgth_List))
- ;
- Close();
- }
- private void CheckBox_ReadPassword_CheckedChanged(object sender, EventArgs e)
- {
- if (CheckBox_ReadPassword.Checked)
- {
- GroupBox_ReadPassword.Enabled = true;
- }
- else
- {
- GroupBox_ReadPassword.Enabled = false;
- TextBoxPassword.Text = "";
- TextBox_NewPassword_R.Text = "";
- TextBox_EnterPassword_R.Text = "";
- }
- }
+ [DebuggerNonUserCode]
+ public PasswordForm()
+ {
+ Load += PasswordForm_Load;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
+ }
- private void CheckBox_WritePassword_CheckedChanged(object sender, EventArgs e)
- {
- if (CheckBox_WritePassword.Checked)
- {
- GroupBox_WritePassword.Enabled = true;
- }
- else
- {
- GroupBox_WritePassword.Enabled = false;
- TextBox_OldPassword_W.Text = "";
- TextBox_NewPassword_W.Text = "";
- TextBox_EnterPassword_W.Text = "";
- }
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
+ }
+
+ [DebuggerStepThrough]
+ private void InitializeComponent()
+ {
+ var componentResourceManager = new ComponentResourceManager(typeof(PasswordForm));
+ Label1 = new Label();
+ TextBoxPassword = new TextBox();
+ ButtonOK = new Button();
+ ButtonCannel = new Button();
+ Label2 = new Label();
+ TextBox_NewPassword_R = new TextBox();
+ CheckBox_WritePassword = new CheckBox();
+ CheckBox_ReadPassword = new CheckBox();
+ GroupBox_ReadPassword = new GroupBox();
+ Label3 = new Label();
+ TextBox_EnterPassword_R = new TextBox();
+ GroupBox_WritePassword = new GroupBox();
+ TextBox_OldPassword_W = new TextBox();
+ Label4 = new Label();
+ Label5 = new Label();
+ Label6 = new Label();
+ TextBox_EnterPassword_W = new TextBox();
+ TextBox_NewPassword_W = new TextBox();
+ GroupBox_ReadPassword.SuspendLayout();
+ GroupBox_WritePassword.SuspendLayout();
+ SuspendLayout();
+ Label1.AccessibleDescription = null;
+ Label1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Font = null;
+ Label1.Name = "Label1";
+ TextBoxPassword.AccessibleDescription = null;
+ TextBoxPassword.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBoxPassword, "TextBoxPassword");
+ TextBoxPassword.BackgroundImage = null;
+ TextBoxPassword.Font = null;
+ TextBoxPassword.Name = "TextBoxPassword";
+ ButtonOK.AccessibleDescription = null;
+ ButtonOK.AccessibleName = null;
+ componentResourceManager.ApplyResources(ButtonOK, "ButtonOK");
+ ButtonOK.BackgroundImage = null;
+ ButtonOK.Font = null;
+ ButtonOK.Name = "ButtonOK";
+ ButtonOK.UseVisualStyleBackColor = true;
+ ButtonCannel.AccessibleDescription = null;
+ ButtonCannel.AccessibleName = null;
+ componentResourceManager.ApplyResources(ButtonCannel, "ButtonCannel");
+ ButtonCannel.BackgroundImage = null;
+ ButtonCannel.Font = null;
+ ButtonCannel.Name = "ButtonCannel";
+ ButtonCannel.UseVisualStyleBackColor = true;
+ Label2.AccessibleDescription = null;
+ Label2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label2, "Label2");
+ Label2.Font = null;
+ Label2.Name = "Label2";
+ TextBox_NewPassword_R.AccessibleDescription = null;
+ TextBox_NewPassword_R.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox_NewPassword_R, "TextBox_NewPassword_R");
+ TextBox_NewPassword_R.BackgroundImage = null;
+ TextBox_NewPassword_R.Font = null;
+ TextBox_NewPassword_R.Name = "TextBox_NewPassword_R";
+ CheckBox_WritePassword.AccessibleDescription = null;
+ CheckBox_WritePassword.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox_WritePassword, "CheckBox_WritePassword");
+ CheckBox_WritePassword.BackgroundImage = null;
+ CheckBox_WritePassword.Font = null;
+ CheckBox_WritePassword.Name = "CheckBox_WritePassword";
+ CheckBox_WritePassword.UseVisualStyleBackColor = true;
+ CheckBox_ReadPassword.AccessibleDescription = null;
+ CheckBox_ReadPassword.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox_ReadPassword, "CheckBox_ReadPassword");
+ CheckBox_ReadPassword.BackgroundImage = null;
+ CheckBox_ReadPassword.Font = null;
+ CheckBox_ReadPassword.Name = "CheckBox_ReadPassword";
+ CheckBox_ReadPassword.UseVisualStyleBackColor = true;
+ GroupBox_ReadPassword.AccessibleDescription = null;
+ GroupBox_ReadPassword.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox_ReadPassword, "GroupBox_ReadPassword");
+ GroupBox_ReadPassword.BackgroundImage = null;
+ GroupBox_ReadPassword.Controls.Add(TextBoxPassword);
+ GroupBox_ReadPassword.Controls.Add(Label1);
+ GroupBox_ReadPassword.Controls.Add(Label3);
+ GroupBox_ReadPassword.Controls.Add(Label2);
+ GroupBox_ReadPassword.Controls.Add(TextBox_EnterPassword_R);
+ GroupBox_ReadPassword.Controls.Add(TextBox_NewPassword_R);
+ GroupBox_ReadPassword.Font = null;
+ GroupBox_ReadPassword.Name = "GroupBox_ReadPassword";
+ GroupBox_ReadPassword.TabStop = false;
+ Label3.AccessibleDescription = null;
+ Label3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label3, "Label3");
+ Label3.Font = null;
+ Label3.Name = "Label3";
+ TextBox_EnterPassword_R.AccessibleDescription = null;
+ TextBox_EnterPassword_R.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox_EnterPassword_R, "TextBox_EnterPassword_R");
+ TextBox_EnterPassword_R.BackgroundImage = null;
+ TextBox_EnterPassword_R.Font = null;
+ TextBox_EnterPassword_R.Name = "TextBox_EnterPassword_R";
+ GroupBox_WritePassword.AccessibleDescription = null;
+ GroupBox_WritePassword.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox_WritePassword, "GroupBox_WritePassword");
+ GroupBox_WritePassword.BackgroundImage = null;
+ GroupBox_WritePassword.Controls.Add(TextBox_OldPassword_W);
+ GroupBox_WritePassword.Controls.Add(Label4);
+ GroupBox_WritePassword.Controls.Add(Label5);
+ GroupBox_WritePassword.Controls.Add(Label6);
+ GroupBox_WritePassword.Controls.Add(TextBox_EnterPassword_W);
+ GroupBox_WritePassword.Controls.Add(TextBox_NewPassword_W);
+ GroupBox_WritePassword.Font = null;
+ GroupBox_WritePassword.Name = "GroupBox_WritePassword";
+ GroupBox_WritePassword.TabStop = false;
+ TextBox_OldPassword_W.AccessibleDescription = null;
+ TextBox_OldPassword_W.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox_OldPassword_W, "TextBox_OldPassword_W");
+ TextBox_OldPassword_W.BackgroundImage = null;
+ TextBox_OldPassword_W.Font = null;
+ TextBox_OldPassword_W.Name = "TextBox_OldPassword_W";
+ Label4.AccessibleDescription = null;
+ Label4.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label4, "Label4");
+ Label4.Font = null;
+ Label4.Name = "Label4";
+ Label5.AccessibleDescription = null;
+ Label5.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label5, "Label5");
+ Label5.Font = null;
+ Label5.Name = "Label5";
+ Label6.AccessibleDescription = null;
+ Label6.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label6, "Label6");
+ Label6.Font = null;
+ Label6.Name = "Label6";
+ TextBox_EnterPassword_W.AccessibleDescription = null;
+ TextBox_EnterPassword_W.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox_EnterPassword_W, "TextBox_EnterPassword_W");
+ TextBox_EnterPassword_W.BackgroundImage = null;
+ TextBox_EnterPassword_W.Font = null;
+ TextBox_EnterPassword_W.Name = "TextBox_EnterPassword_W";
+ TextBox_NewPassword_W.AccessibleDescription = null;
+ TextBox_NewPassword_W.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox_NewPassword_W, "TextBox_NewPassword_W");
+ TextBox_NewPassword_W.BackgroundImage = null;
+ TextBox_NewPassword_W.Font = null;
+ TextBox_NewPassword_W.Name = "TextBox_NewPassword_W";
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ BackgroundImage = null;
+ Controls.Add(GroupBox_WritePassword);
+ Controls.Add(GroupBox_ReadPassword);
+ Controls.Add(CheckBox_ReadPassword);
+ Controls.Add(CheckBox_WritePassword);
+ Controls.Add(ButtonCannel);
+ Controls.Add(ButtonOK);
+ Font = null;
+ FormBorderStyle = FormBorderStyle.FixedDialog;
+ MaximizeBox = false;
+ MinimizeBox = false;
+ Name = nameof(PasswordForm);
+ GroupBox_ReadPassword.ResumeLayout(false);
+ GroupBox_ReadPassword.PerformLayout();
+ GroupBox_WritePassword.ResumeLayout(false);
+ GroupBox_WritePassword.PerformLayout();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ internal virtual Label Label1
+ {
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
+ }
+
+ internal virtual TextBox TextBoxPassword
+ {
+ [DebuggerNonUserCode]
+ get => _TextBoxPassword;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBoxPassword = value; }
+ }
+
+ internal virtual Button ButtonOK
+ {
+ [DebuggerNonUserCode]
+ get => _ButtonOK;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ButtonOK != null)
+ _ButtonOK.Click -= ButtonOK_Click;
+ _ButtonOK = value;
+ if (_ButtonOK == null)
+ return;
+ _ButtonOK.Click += ButtonOK_Click;
+ }
+ }
+
+ internal virtual Button ButtonCannel
+ {
+ [DebuggerNonUserCode]
+ get => _ButtonCannel;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ButtonCannel != null)
+ _ButtonCannel.Click -= ButtonCannel_Click;
+ _ButtonCannel = value;
+ if (_ButtonCannel == null)
+ return;
+ _ButtonCannel.Click += ButtonCannel_Click;
+ }
+ }
+
+ internal virtual Label Label2
+ {
+ [DebuggerNonUserCode]
+ get => _Label2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label2 = value;
+ }
+
+ internal virtual TextBox TextBox_NewPassword_R
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox_NewPassword_R;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBox_NewPassword_R = value; }
+ }
+
+ internal virtual CheckBox CheckBox_WritePassword
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox_WritePassword;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox_WritePassword != null)
+ _CheckBox_WritePassword.CheckedChanged -= CheckBox_WritePassword_CheckedChanged;
+ _CheckBox_WritePassword = value;
+ if (_CheckBox_WritePassword == null)
+ return;
+ _CheckBox_WritePassword.CheckedChanged += CheckBox_WritePassword_CheckedChanged;
+ }
+ }
+
+ internal virtual CheckBox CheckBox_ReadPassword
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox_ReadPassword;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox_ReadPassword != null)
+ _CheckBox_ReadPassword.CheckedChanged -= CheckBox_ReadPassword_CheckedChanged;
+ _CheckBox_ReadPassword = value;
+ if (_CheckBox_ReadPassword == null)
+ return;
+ _CheckBox_ReadPassword.CheckedChanged += CheckBox_ReadPassword_CheckedChanged;
+ }
+ }
+
+ internal virtual GroupBox GroupBox_ReadPassword
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox_ReadPassword;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox_ReadPassword = value; }
+ }
+
+ internal virtual Label Label3
+ {
+ [DebuggerNonUserCode]
+ get => _Label3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label3 = value;
+ }
+
+ internal virtual TextBox TextBox_EnterPassword_R
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox_EnterPassword_R;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBox_EnterPassword_R = value; }
+ }
+
+ internal virtual GroupBox GroupBox_WritePassword
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox_WritePassword;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox_WritePassword = value; }
+ }
+
+ internal virtual TextBox TextBox_OldPassword_W
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox_OldPassword_W;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBox_OldPassword_W = value; }
+ }
+
+ internal virtual Label Label4
+ {
+ [DebuggerNonUserCode]
+ get => _Label4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label4 = value;
+ }
+
+ internal virtual Label Label5
+ {
+ [DebuggerNonUserCode]
+ get => _Label5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label5 = value;
+ }
+
+ internal virtual Label Label6
+ {
+ [DebuggerNonUserCode]
+ get => _Label6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label6 = value;
+ }
+
+ internal virtual TextBox TextBox_EnterPassword_W
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox_EnterPassword_W;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBox_EnterPassword_W = value; }
+ }
+
+ internal virtual TextBox TextBox_NewPassword_W
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox_NewPassword_W;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TextBox_NewPassword_W = value; }
+ }
+
+ private void PasswordForm_Load(object sender, EventArgs e)
+ {
+ var num = 0;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox_ReadPassword, checked(num + 11), publicva.Bit5, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox_WritePassword, checked(num + 11), publicva.Bit6, 0);
+ CheckBox_ReadPassword_CheckedChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ CheckBox_WritePassword_CheckedChanged(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void ButtonCannel_Click(object sender, EventArgs e) => Close();
+
+ private void ButtonOK_Click(object sender, EventArgs e)
+ {
+ var num1 = 60;
+ var Right1 = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked(num1 + 0), 16));
+ var num2 = 70;
+ var Right2 = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked(num2 + 0), 16));
+ var num3 = 0;
+ if ((publicva.EEPROM_Byte[checked(num3 + 11)] & (uint) publicva.Bit5) > 0U)
+ {
+ if (Operators.CompareString(TextBoxPassword.Text, Right1, false) == 0)
+ {
+ if (Operators.CompareString(TextBox_NewPassword_R.Text, TextBox_EnterPassword_R.Text, false) == 0)
+ {
+ Encoding.ASCII.GetBytes(TextBox_NewPassword_R.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 60);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Enter a password different!");
+ TextBox_NewPassword_R.Text = "";
+ TextBox_EnterPassword_R.Text = "";
+ return;
+ }
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("The old password is wrong!");
+ TextBoxPassword.Text = "";
+ TextBox_NewPassword_R.Text = "";
+ TextBox_EnterPassword_R.Text = "";
+ return;
+ }
+ }
+ else if (Operators.CompareString(TextBox_NewPassword_R.Text, TextBox_EnterPassword_R.Text, false) == 0)
+ {
+ Encoding.ASCII.GetBytes(TextBox_NewPassword_R.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 60);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Enter a password different!");
+ TextBox_NewPassword_R.Text = "";
+ TextBox_EnterPassword_R.Text = "";
+ return;
+ }
+
+ if ((publicva.EEPROM_Byte[checked(num3 + 11)] & (uint) publicva.Bit6) > 0U)
+ {
+ if (Operators.CompareString(TextBox_OldPassword_W.Text, Right2, false) == 0)
+ {
+ if (Operators.CompareString(TextBox_NewPassword_W.Text, TextBox_EnterPassword_W.Text, false) == 0)
+ {
+ Encoding.ASCII.GetBytes(TextBox_NewPassword_W.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 70);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Enter a password different!");
+ TextBox_NewPassword_W.Text = "";
+ TextBox_EnterPassword_W.Text = "";
+ return;
+ }
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("The old password is wrong!");
+ TextBox_OldPassword_W.Text = "";
+ TextBox_NewPassword_W.Text = "";
+ TextBox_EnterPassword_W.Text = "";
+ return;
+ }
+ }
+ else if (Operators.CompareString(TextBox_NewPassword_W.Text, TextBox_EnterPassword_W.Text, false) == 0)
+ {
+ Encoding.ASCII.GetBytes(TextBox_NewPassword_W.Text.PadRight(16), 0, 16, publicva.EEPROM_Byte, 70);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Enter a password different!");
+ TextBox_NewPassword_W.Text = "";
+ TextBox_EnterPassword_W.Text = "";
+ return;
+ }
+
+ publicva.EEPROM_Byte[checked(num3 + 11)] = Operators.CompareString(TextBox_NewPassword_R.Text, "", false) != 0
+ ? (byte) (publicva.EEPROM_Byte[checked(num3 + 11)] | publicva.Bit5)
+ : (byte) (publicva.EEPROM_Byte[checked(num3 + 11)] & ~publicva.Bit5);
+ publicva.EEPROM_Byte[checked(num3 + 11)] = Operators.CompareString(TextBox_NewPassword_W.Text, "", false) != 0
+ ? (byte) (publicva.EEPROM_Byte[checked(num3 + 11)] | publicva.Bit6)
+ : (byte) (publicva.EEPROM_Byte[checked(num3 + 11)] & ~publicva.Bit6);
+ if (!MyProject.Forms.MDIParent1.MSCcomm_StartInit("Write_Password", publicva.WPassword_EEPROM_Add_Lendgth_List))
+ ;
+ Close();
+ }
+
+ private void CheckBox_ReadPassword_CheckedChanged(object sender, EventArgs e)
+ {
+ if (CheckBox_ReadPassword.Checked)
+ {
+ GroupBox_ReadPassword.Enabled = true;
+ }
+ else
+ {
+ GroupBox_ReadPassword.Enabled = false;
+ TextBoxPassword.Text = "";
+ TextBox_NewPassword_R.Text = "";
+ TextBox_EnterPassword_R.Text = "";
+ }
+ }
+
+ private void CheckBox_WritePassword_CheckedChanged(object sender, EventArgs e)
+ {
+ if (CheckBox_WritePassword.Checked)
+ {
+ GroupBox_WritePassword.Enabled = true;
+ }
+ else
+ {
+ GroupBox_WritePassword.Enabled = false;
+ TextBox_OldPassword_W.Text = "";
+ TextBox_NewPassword_W.Text = "";
+ TextBox_EnterPassword_W.Text = "";
+ }
+ }
}
- }
-}
+}
\ No newline at end of file
diff --git a/HPG-68D/RadioMsgForm.cs b/HPG-68D/RadioMsgForm.cs
index 5224ff8..67368cd 100644
--- a/HPG-68D/RadioMsgForm.cs
+++ b/HPG-68D/RadioMsgForm.cs
@@ -15,1365 +15,1475 @@ using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class RadioMsgForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("TabControl1")]
- private TabControl _TabControl1;
- [AccessedThroughProperty("TabPage1")]
- private TabPage _TabPage1;
- [AccessedThroughProperty("TabPage2")]
- private TabPage _TabPage2;
- [AccessedThroughProperty("TabPage3")]
- private TabPage _TabPage3;
- [AccessedThroughProperty("GroupBox1")]
- private GroupBox _GroupBox1;
- [AccessedThroughProperty("DataGridView1")]
- private DataGridView _DataGridView1;
- [AccessedThroughProperty("ComboBoxFM工作模式")]
- private ComboBox _ComboBoxFM工作模式;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- [AccessedThroughProperty("ComboBoxFM信道号")]
- private ComboBox _ComboBoxFM信道号;
- [AccessedThroughProperty("Label2")]
- private Label _Label2;
- [AccessedThroughProperty("ComboBoxAM信道号")]
- private ComboBox _ComboBoxAM信道号;
- [AccessedThroughProperty("Label3")]
- private Label _Label3;
- [AccessedThroughProperty("ComboBoxAM工作模式")]
- private ComboBox _ComboBoxAM工作模式;
- [AccessedThroughProperty("Label4")]
- private Label _Label4;
- [AccessedThroughProperty("GroupBox2")]
- private GroupBox _GroupBox2;
- [AccessedThroughProperty("DataGridView2")]
- private DataGridView _DataGridView2;
- [AccessedThroughProperty("ComboBoxAIR信道号")]
- private ComboBox _ComboBoxAIR信道号;
- [AccessedThroughProperty("Label5")]
- private Label _Label5;
- [AccessedThroughProperty("ComboBoxAIR工作模式")]
- private ComboBox _ComboBoxAIR工作模式;
- [AccessedThroughProperty("Label6")]
- private Label _Label6;
- [AccessedThroughProperty("GroupBox3")]
- private GroupBox _GroupBox3;
- [AccessedThroughProperty("DataGridView3")]
- private DataGridView _DataGridView3;
- [AccessedThroughProperty("Button3")]
- private Button _Button3;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("ColumnFMFreq")]
- private DataGridViewTextBoxColumn _ColumnFMFreq;
- [AccessedThroughProperty("ColumnAMFreq")]
- private DataGridViewTextBoxColumn _ColumnAMFreq;
- [AccessedThroughProperty("ColumnAIRFreq")]
- private DataGridViewTextBoxColumn _ColumnAIRFreq;
-
- [DebuggerNonUserCode]
- static RadioMsgForm()
+ [DesignerGenerated]
+ public class RadioMsgForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("TabControl1")]
+ private TabControl _TabControl1;
+ [AccessedThroughProperty("TabPage1")]
+ private TabPage _TabPage1;
+ [AccessedThroughProperty("TabPage2")]
+ private TabPage _TabPage2;
+ [AccessedThroughProperty("TabPage3")]
+ private TabPage _TabPage3;
+ [AccessedThroughProperty("GroupBox1")]
+ private GroupBox _GroupBox1;
+ [AccessedThroughProperty("DataGridView1")]
+ private DataGridView _DataGridView1;
+ [AccessedThroughProperty("ComboBoxFM工作模式")]
+ private ComboBox _ComboBoxFM工作模式;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
+ [AccessedThroughProperty("ComboBoxFM信道号")]
+ private ComboBox _ComboBoxFM信道号;
+ [AccessedThroughProperty("Label2")]
+ private Label _Label2;
+ [AccessedThroughProperty("ComboBoxAM信道号")]
+ private ComboBox _ComboBoxAM信道号;
+ [AccessedThroughProperty("Label3")]
+ private Label _Label3;
+ [AccessedThroughProperty("ComboBoxAM工作模式")]
+ private ComboBox _ComboBoxAM工作模式;
+ [AccessedThroughProperty("Label4")]
+ private Label _Label4;
+ [AccessedThroughProperty("GroupBox2")]
+ private GroupBox _GroupBox2;
+ [AccessedThroughProperty("DataGridView2")]
+ private DataGridView _DataGridView2;
+ [AccessedThroughProperty("ComboBoxAIR信道号")]
+ private ComboBox _ComboBoxAIR信道号;
+ [AccessedThroughProperty("Label5")]
+ private Label _Label5;
+ [AccessedThroughProperty("ComboBoxAIR工作模式")]
+ private ComboBox _ComboBoxAIR工作模式;
+ [AccessedThroughProperty("Label6")]
+ private Label _Label6;
+ [AccessedThroughProperty("GroupBox3")]
+ private GroupBox _GroupBox3;
+ [AccessedThroughProperty("DataGridView3")]
+ private DataGridView _DataGridView3;
+ [AccessedThroughProperty("Button3")]
+ private Button _Button3;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("ColumnFMFreq")]
+ private DataGridViewTextBoxColumn _ColumnFMFreq;
+ [AccessedThroughProperty("ColumnAMFreq")]
+ private DataGridViewTextBoxColumn _ColumnAMFreq;
+ [AccessedThroughProperty("ColumnAIRFreq")]
+ private DataGridViewTextBoxColumn _ColumnAIRFreq;
- [DebuggerNonUserCode]
- public RadioMsgForm()
- {
- Load += RadioMsgForm_Load;
- Deactivate += RadioMsgForm_Deactivate;
- FormClosing += RadioMsgForm_FormClosing;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (RadioMsgForm));
- var gridViewCellStyle1 = new DataGridViewCellStyle();
- var gridViewCellStyle2 = new DataGridViewCellStyle();
- var gridViewCellStyle3 = new DataGridViewCellStyle();
- var gridViewCellStyle4 = new DataGridViewCellStyle();
- var gridViewCellStyle5 = new DataGridViewCellStyle();
- var gridViewCellStyle6 = new DataGridViewCellStyle();
- var gridViewCellStyle7 = new DataGridViewCellStyle();
- var gridViewCellStyle8 = new DataGridViewCellStyle();
- var gridViewCellStyle9 = new DataGridViewCellStyle();
- var gridViewCellStyle10 = new DataGridViewCellStyle();
- var gridViewCellStyle11 = new DataGridViewCellStyle();
- var gridViewCellStyle12 = new DataGridViewCellStyle();
- TabControl1 = new TabControl();
- TabPage1 = new TabPage();
- ComboBoxFM信道号 = new ComboBox();
- Label2 = new Label();
- ComboBoxFM工作模式 = new ComboBox();
- Label1 = new Label();
- GroupBox1 = new GroupBox();
- DataGridView1 = new DataGridView();
- TabPage2 = new TabPage();
- ComboBoxAM信道号 = new ComboBox();
- Label3 = new Label();
- ComboBoxAM工作模式 = new ComboBox();
- Label4 = new Label();
- GroupBox2 = new GroupBox();
- DataGridView2 = new DataGridView();
- TabPage3 = new TabPage();
- ComboBoxAIR信道号 = new ComboBox();
- Label5 = new Label();
- ComboBoxAIR工作模式 = new ComboBox();
- Label6 = new Label();
- GroupBox3 = new GroupBox();
- DataGridView3 = new DataGridView();
- Button3 = new Button();
- Button2 = new Button();
- Button1 = new Button();
- ColumnFMFreq = new DataGridViewTextBoxColumn();
- ColumnAMFreq = new DataGridViewTextBoxColumn();
- ColumnAIRFreq = new DataGridViewTextBoxColumn();
- TabControl1.SuspendLayout();
- TabPage1.SuspendLayout();
- GroupBox1.SuspendLayout();
- ((ISupportInitialize) DataGridView1).BeginInit();
- TabPage2.SuspendLayout();
- GroupBox2.SuspendLayout();
- ((ISupportInitialize) DataGridView2).BeginInit();
- TabPage3.SuspendLayout();
- GroupBox3.SuspendLayout();
- ((ISupportInitialize) DataGridView3).BeginInit();
- SuspendLayout();
- TabControl1.AccessibleDescription = null;
- TabControl1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabControl1, "TabControl1");
- TabControl1.BackgroundImage = null;
- TabControl1.Controls.Add(TabPage1);
- TabControl1.Controls.Add(TabPage2);
- TabControl1.Controls.Add(TabPage3);
- TabControl1.Font = null;
- TabControl1.Name = "TabControl1";
- TabControl1.SelectedIndex = 0;
- TabPage1.AccessibleDescription = null;
- TabPage1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage1, "TabPage1");
- TabPage1.BackgroundImage = null;
- TabPage1.Controls.Add(ComboBoxFM信道号);
- TabPage1.Controls.Add(Label2);
- TabPage1.Controls.Add(ComboBoxFM工作模式);
- TabPage1.Controls.Add(Label1);
- TabPage1.Controls.Add(GroupBox1);
- TabPage1.Font = null;
- TabPage1.Name = "TabPage1";
- TabPage1.UseVisualStyleBackColor = true;
- ComboBoxFM信道号.AccessibleDescription = null;
- ComboBoxFM信道号.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxFM信道号, "ComboBoxFM信道号");
- ComboBoxFM信道号.BackgroundImage = null;
- ComboBoxFM信道号.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxFM信道号.Font = null;
- ComboBoxFM信道号.FormattingEnabled = true;
- ComboBoxFM信道号.Items.AddRange(new object[32]
- {
- componentResourceManager.GetString("ComboBoxFM信道号.Items"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items1"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items2"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items3"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items4"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items5"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items6"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items7"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items8"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items9"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items10"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items11"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items12"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items13"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items14"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items15"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items16"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items17"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items18"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items19"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items20"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items21"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items22"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items23"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items24"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items25"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items26"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items27"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items28"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items29"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items30"),
- componentResourceManager.GetString("ComboBoxFM信道号.Items31")
- });
- ComboBoxFM信道号.Name = "ComboBoxFM信道号";
- Label2.AccessibleDescription = null;
- Label2.AccessibleName = null;
- componentResourceManager.ApplyResources(Label2, "Label2");
- Label2.Font = null;
- Label2.Name = "Label2";
- ComboBoxFM工作模式.AccessibleDescription = null;
- ComboBoxFM工作模式.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxFM工作模式, "ComboBoxFM工作模式");
- ComboBoxFM工作模式.BackgroundImage = null;
- ComboBoxFM工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxFM工作模式.Font = null;
- ComboBoxFM工作模式.FormattingEnabled = true;
- ComboBoxFM工作模式.Items.AddRange(new object[2]
- {
- componentResourceManager.GetString("ComboBoxFM工作模式.Items"),
- componentResourceManager.GetString("ComboBoxFM工作模式.Items1")
- });
- ComboBoxFM工作模式.Name = "ComboBoxFM工作模式";
- Label1.AccessibleDescription = null;
- Label1.AccessibleName = null;
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Font = null;
- Label1.Name = "Label1";
- GroupBox1.AccessibleDescription = null;
- GroupBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
- GroupBox1.BackgroundImage = null;
- GroupBox1.Controls.Add(DataGridView1);
- GroupBox1.Font = null;
- GroupBox1.Name = "GroupBox1";
- GroupBox1.TabStop = false;
- DataGridView1.AccessibleDescription = null;
- DataGridView1.AccessibleName = null;
- DataGridView1.AllowUserToAddRows = false;
- DataGridView1.AllowUserToDeleteRows = false;
- DataGridView1.AllowUserToResizeColumns = false;
- DataGridView1.AllowUserToResizeRows = false;
- gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
- componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
- DataGridView1.BackgroundImage = null;
- gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle2.BackColor = SystemColors.Control;
- gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle2.ForeColor = SystemColors.WindowText;
- gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
- DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
- DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView1.Columns.AddRange(ColumnFMFreq);
- DataGridView1.Font = null;
- DataGridView1.Name = "DataGridView1";
- gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle3.BackColor = SystemColors.Control;
- gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle3.ForeColor = SystemColors.WindowText;
- gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
- DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
- DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
- DataGridView1.RowTemplate.Height = 23;
- TabPage2.AccessibleDescription = null;
- TabPage2.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage2, "TabPage2");
- TabPage2.BackgroundImage = null;
- TabPage2.Controls.Add(ComboBoxAM信道号);
- TabPage2.Controls.Add(Label3);
- TabPage2.Controls.Add(ComboBoxAM工作模式);
- TabPage2.Controls.Add(Label4);
- TabPage2.Controls.Add(GroupBox2);
- TabPage2.Font = null;
- TabPage2.Name = "TabPage2";
- TabPage2.UseVisualStyleBackColor = true;
- ComboBoxAM信道号.AccessibleDescription = null;
- ComboBoxAM信道号.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxAM信道号, "ComboBoxAM信道号");
- ComboBoxAM信道号.BackgroundImage = null;
- ComboBoxAM信道号.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxAM信道号.Font = null;
- ComboBoxAM信道号.FormattingEnabled = true;
- ComboBoxAM信道号.Items.AddRange(new object[64]
- {
- componentResourceManager.GetString("ComboBoxAM信道号.Items"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items1"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items2"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items3"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items4"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items5"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items6"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items7"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items8"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items9"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items10"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items11"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items12"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items13"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items14"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items15"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items16"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items17"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items18"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items19"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items20"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items21"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items22"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items23"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items24"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items25"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items26"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items27"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items28"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items29"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items30"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items31"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items32"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items33"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items34"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items35"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items36"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items37"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items38"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items39"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items40"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items41"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items42"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items43"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items44"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items45"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items46"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items47"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items48"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items49"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items50"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items51"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items52"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items53"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items54"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items55"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items56"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items57"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items58"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items59"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items60"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items61"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items62"),
- componentResourceManager.GetString("ComboBoxAM信道号.Items63")
- });
- ComboBoxAM信道号.Name = "ComboBoxAM信道号";
- Label3.AccessibleDescription = null;
- Label3.AccessibleName = null;
- componentResourceManager.ApplyResources(Label3, "Label3");
- Label3.Font = null;
- Label3.Name = "Label3";
- ComboBoxAM工作模式.AccessibleDescription = null;
- ComboBoxAM工作模式.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxAM工作模式, "ComboBoxAM工作模式");
- ComboBoxAM工作模式.BackgroundImage = null;
- ComboBoxAM工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxAM工作模式.Font = null;
- ComboBoxAM工作模式.FormattingEnabled = true;
- ComboBoxAM工作模式.Items.AddRange(new object[2]
- {
- componentResourceManager.GetString("ComboBoxAM工作模式.Items"),
- componentResourceManager.GetString("ComboBoxAM工作模式.Items1")
- });
- ComboBoxAM工作模式.Name = "ComboBoxAM工作模式";
- Label4.AccessibleDescription = null;
- Label4.AccessibleName = null;
- componentResourceManager.ApplyResources(Label4, "Label4");
- Label4.Font = null;
- Label4.Name = "Label4";
- GroupBox2.AccessibleDescription = null;
- GroupBox2.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
- GroupBox2.BackgroundImage = null;
- GroupBox2.Controls.Add(DataGridView2);
- GroupBox2.Font = null;
- GroupBox2.Name = "GroupBox2";
- GroupBox2.TabStop = false;
- DataGridView2.AccessibleDescription = null;
- DataGridView2.AccessibleName = null;
- DataGridView2.AllowUserToAddRows = false;
- DataGridView2.AllowUserToDeleteRows = false;
- DataGridView2.AllowUserToResizeColumns = false;
- DataGridView2.AllowUserToResizeRows = false;
- gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView2.AlternatingRowsDefaultCellStyle = gridViewCellStyle5;
- componentResourceManager.ApplyResources(DataGridView2, "DataGridView2");
- DataGridView2.BackgroundImage = null;
- gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle6.BackColor = SystemColors.Control;
- gridViewCellStyle6.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle6.ForeColor = SystemColors.WindowText;
- gridViewCellStyle6.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle6.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle6.WrapMode = DataGridViewTriState.True;
- DataGridView2.ColumnHeadersDefaultCellStyle = gridViewCellStyle6;
- DataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView2.Columns.AddRange(ColumnAMFreq);
- DataGridView2.Font = null;
- DataGridView2.Name = "DataGridView2";
- gridViewCellStyle7.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle7.BackColor = SystemColors.Control;
- gridViewCellStyle7.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle7.ForeColor = SystemColors.WindowText;
- gridViewCellStyle7.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle7.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle7.WrapMode = DataGridViewTriState.True;
- DataGridView2.RowHeadersDefaultCellStyle = gridViewCellStyle7;
- DataGridView2.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle8.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView2.RowsDefaultCellStyle = gridViewCellStyle8;
- DataGridView2.RowTemplate.Height = 23;
- TabPage3.AccessibleDescription = null;
- TabPage3.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage3, "TabPage3");
- TabPage3.BackgroundImage = null;
- TabPage3.Controls.Add(ComboBoxAIR信道号);
- TabPage3.Controls.Add(Label5);
- TabPage3.Controls.Add(ComboBoxAIR工作模式);
- TabPage3.Controls.Add(Label6);
- TabPage3.Controls.Add(GroupBox3);
- TabPage3.Font = null;
- TabPage3.Name = "TabPage3";
- TabPage3.UseVisualStyleBackColor = true;
- ComboBoxAIR信道号.AccessibleDescription = null;
- ComboBoxAIR信道号.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxAIR信道号, "ComboBoxAIR信道号");
- ComboBoxAIR信道号.BackgroundImage = null;
- ComboBoxAIR信道号.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxAIR信道号.Font = null;
- ComboBoxAIR信道号.FormattingEnabled = true;
- ComboBoxAIR信道号.Items.AddRange(new object[64]
- {
- componentResourceManager.GetString("ComboBoxAIR信道号.Items"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items1"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items2"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items3"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items4"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items5"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items6"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items7"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items8"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items9"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items10"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items11"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items12"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items13"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items14"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items15"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items16"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items17"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items18"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items19"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items20"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items21"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items22"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items23"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items24"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items25"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items26"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items27"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items28"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items29"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items30"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items31"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items32"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items33"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items34"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items35"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items36"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items37"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items38"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items39"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items40"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items41"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items42"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items43"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items44"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items45"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items46"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items47"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items48"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items49"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items50"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items51"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items52"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items53"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items54"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items55"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items56"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items57"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items58"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items59"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items60"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items61"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items62"),
- componentResourceManager.GetString("ComboBoxAIR信道号.Items63")
- });
- ComboBoxAIR信道号.Name = "ComboBoxAIR信道号";
- Label5.AccessibleDescription = null;
- Label5.AccessibleName = null;
- componentResourceManager.ApplyResources(Label5, "Label5");
- Label5.Font = null;
- Label5.Name = "Label5";
- ComboBoxAIR工作模式.AccessibleDescription = null;
- ComboBoxAIR工作模式.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBoxAIR工作模式, "ComboBoxAIR工作模式");
- ComboBoxAIR工作模式.BackgroundImage = null;
- ComboBoxAIR工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBoxAIR工作模式.Font = null;
- ComboBoxAIR工作模式.FormattingEnabled = true;
- ComboBoxAIR工作模式.Items.AddRange(new object[2]
- {
- componentResourceManager.GetString("ComboBoxAIR工作模式.Items"),
- componentResourceManager.GetString("ComboBoxAIR工作模式.Items1")
- });
- ComboBoxAIR工作模式.Name = "ComboBoxAIR工作模式";
- Label6.AccessibleDescription = null;
- Label6.AccessibleName = null;
- componentResourceManager.ApplyResources(Label6, "Label6");
- Label6.Font = null;
- Label6.Name = "Label6";
- GroupBox3.AccessibleDescription = null;
- GroupBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
- GroupBox3.BackgroundImage = null;
- GroupBox3.Controls.Add(DataGridView3);
- GroupBox3.Font = null;
- GroupBox3.Name = "GroupBox3";
- GroupBox3.TabStop = false;
- DataGridView3.AccessibleDescription = null;
- DataGridView3.AccessibleName = null;
- DataGridView3.AllowUserToAddRows = false;
- DataGridView3.AllowUserToDeleteRows = false;
- DataGridView3.AllowUserToResizeColumns = false;
- DataGridView3.AllowUserToResizeRows = false;
- gridViewCellStyle9.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView3.AlternatingRowsDefaultCellStyle = gridViewCellStyle9;
- componentResourceManager.ApplyResources(DataGridView3, "DataGridView3");
- DataGridView3.BackgroundImage = null;
- gridViewCellStyle10.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle10.BackColor = SystemColors.Control;
- gridViewCellStyle10.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle10.ForeColor = SystemColors.WindowText;
- gridViewCellStyle10.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle10.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle10.WrapMode = DataGridViewTriState.True;
- DataGridView3.ColumnHeadersDefaultCellStyle = gridViewCellStyle10;
- DataGridView3.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView3.Columns.AddRange(ColumnAIRFreq);
- DataGridView3.Font = null;
- DataGridView3.Name = "DataGridView3";
- gridViewCellStyle11.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle11.BackColor = SystemColors.Control;
- gridViewCellStyle11.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle11.ForeColor = SystemColors.WindowText;
- gridViewCellStyle11.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle11.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle11.WrapMode = DataGridViewTriState.True;
- DataGridView3.RowHeadersDefaultCellStyle = gridViewCellStyle11;
- DataGridView3.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle12.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView3.RowsDefaultCellStyle = gridViewCellStyle12;
- DataGridView3.RowTemplate.Height = 23;
- Button3.AccessibleDescription = null;
- Button3.AccessibleName = null;
- componentResourceManager.ApplyResources(Button3, "Button3");
- Button3.BackgroundImage = null;
- Button3.Font = null;
- Button3.Name = "Button3";
- Button3.UseVisualStyleBackColor = true;
- Button2.AccessibleDescription = null;
- Button2.AccessibleName = null;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.BackgroundImage = null;
- Button2.Font = null;
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- Button1.AccessibleDescription = null;
- Button1.AccessibleName = null;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.BackgroundImage = null;
- Button1.Font = null;
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- componentResourceManager.ApplyResources(ColumnFMFreq, "ColumnFMFreq");
- ColumnFMFreq.MaxInputLength = 9;
- ColumnFMFreq.Name = "ColumnFMFreq";
- ColumnFMFreq.Resizable = DataGridViewTriState.False;
- ColumnFMFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
- componentResourceManager.ApplyResources(ColumnAMFreq, "ColumnAMFreq");
- ColumnAMFreq.MaxInputLength = 9;
- ColumnAMFreq.Name = "ColumnAMFreq";
- ColumnAMFreq.Resizable = DataGridViewTriState.False;
- ColumnAMFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
- componentResourceManager.ApplyResources(ColumnAIRFreq, "ColumnAIRFreq");
- ColumnAIRFreq.MaxInputLength = 9;
- ColumnAIRFreq.Name = "ColumnAIRFreq";
- ColumnAIRFreq.Resizable = DataGridViewTriState.False;
- ColumnAIRFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- BackgroundImage = null;
- Controls.Add(Button3);
- Controls.Add(Button2);
- Controls.Add(Button1);
- Controls.Add(TabControl1);
- Font = null;
- Name = nameof (RadioMsgForm);
- TabControl1.ResumeLayout(false);
- TabPage1.ResumeLayout(false);
- TabPage1.PerformLayout();
- GroupBox1.ResumeLayout(false);
- ((ISupportInitialize) DataGridView1).EndInit();
- TabPage2.ResumeLayout(false);
- TabPage2.PerformLayout();
- GroupBox2.ResumeLayout(false);
- ((ISupportInitialize) DataGridView2).EndInit();
- TabPage3.ResumeLayout(false);
- TabPage3.PerformLayout();
- GroupBox3.ResumeLayout(false);
- ((ISupportInitialize) DataGridView3).EndInit();
- ResumeLayout(false);
- }
-
- internal virtual TabControl TabControl1
- {
- [DebuggerNonUserCode] get => _TabControl1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabControl1 = value;
- }
- }
-
- internal virtual TabPage TabPage1
- {
- [DebuggerNonUserCode] get => _TabPage1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage1 = value;
- }
- }
-
- internal virtual TabPage TabPage2
- {
- [DebuggerNonUserCode] get => _TabPage2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage2 = value;
- }
- }
-
- internal virtual TabPage TabPage3
- {
- [DebuggerNonUserCode] get => _TabPage3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage3 = value;
- }
- }
-
- internal virtual GroupBox GroupBox1
- {
- [DebuggerNonUserCode] get => _GroupBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox1 = value;
- }
- }
-
- internal virtual DataGridView DataGridView1
- {
- [DebuggerNonUserCode] get => _DataGridView1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView1 != null)
+ [DebuggerNonUserCode]
+ static RadioMsgForm()
{
- _DataGridView1.EditingControlShowing -= DataGridView1_EditingControlShowing;
- _DataGridView1.CellEndEdit -= DataGridView1_CellEndEdit;
- _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
}
- _DataGridView1 = value;
- if (_DataGridView1 == null)
- return;
- _DataGridView1.EditingControlShowing += DataGridView1_EditingControlShowing;
- _DataGridView1.CellEndEdit += DataGridView1_CellEndEdit;
- _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
- }
- }
- internal virtual ComboBox ComboBoxFM工作模式
- {
- [DebuggerNonUserCode] get => _ComboBoxFM工作模式;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBoxFM工作模式 = value;
- }
- }
-
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
-
- internal virtual ComboBox ComboBoxFM信道号
- {
- [DebuggerNonUserCode] get => _ComboBoxFM信道号;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxFM信道号 != null)
- _ComboBoxFM信道号.SelectionChangeCommitted -= ComboBoxFM信道号_SelectionChangeCommitted;
- _ComboBoxFM信道号 = value;
- if (_ComboBoxFM信道号 == null)
- return;
- _ComboBoxFM信道号.SelectionChangeCommitted += ComboBoxFM信道号_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label2
- {
- [DebuggerNonUserCode] get => _Label2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label2 = value;
- }
-
- internal virtual ComboBox ComboBoxAM信道号
- {
- [DebuggerNonUserCode] get => _ComboBoxAM信道号;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxAM信道号 != null)
- _ComboBoxAM信道号.SelectionChangeCommitted -= ComboBoxAM信道号_SelectionChangeCommitted;
- _ComboBoxAM信道号 = value;
- if (_ComboBoxAM信道号 == null)
- return;
- _ComboBoxAM信道号.SelectionChangeCommitted += ComboBoxAM信道号_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label3
- {
- [DebuggerNonUserCode] get => _Label3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label3 = value;
- }
-
- internal virtual ComboBox ComboBoxAM工作模式
- {
- [DebuggerNonUserCode] get => _ComboBoxAM工作模式;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBoxAM工作模式 = value;
- }
- }
-
- internal virtual Label Label4
- {
- [DebuggerNonUserCode] get => _Label4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label4 = value;
- }
-
- internal virtual GroupBox GroupBox2
- {
- [DebuggerNonUserCode] get => _GroupBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox2 = value;
- }
- }
-
- internal virtual DataGridView DataGridView2
- {
- [DebuggerNonUserCode] get => _DataGridView2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView2 != null)
+ [DebuggerNonUserCode]
+ public RadioMsgForm()
{
- _DataGridView2.CellEndEdit -= DataGridView2_CellEndEdit;
- _DataGridView2.RowPostPaint -= DataGridView2_RowPostPaint;
- _DataGridView2.EditingControlShowing -= DataGridView2_EditingControlShowing;
+ Load += RadioMsgForm_Load;
+ Deactivate += RadioMsgForm_Deactivate;
+ FormClosing += RadioMsgForm_FormClosing;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
}
- _DataGridView2 = value;
- if (_DataGridView2 == null)
- return;
- _DataGridView2.CellEndEdit += DataGridView2_CellEndEdit;
- _DataGridView2.RowPostPaint += DataGridView2_RowPostPaint;
- _DataGridView2.EditingControlShowing += DataGridView2_EditingControlShowing;
- }
- }
- internal virtual ComboBox ComboBoxAIR信道号
- {
- [DebuggerNonUserCode] get => _ComboBoxAIR信道号;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBoxAIR信道号 != null)
- _ComboBoxAIR信道号.SelectionChangeCommitted -= ComboBoxAIR信道号_SelectionChangeCommitted;
- _ComboBoxAIR信道号 = value;
- if (_ComboBoxAIR信道号 == null)
- return;
- _ComboBoxAIR信道号.SelectionChangeCommitted += ComboBoxAIR信道号_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label5
- {
- [DebuggerNonUserCode] get => _Label5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label5 = value;
- }
-
- internal virtual ComboBox ComboBoxAIR工作模式
- {
- [DebuggerNonUserCode] get => _ComboBoxAIR工作模式;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBoxAIR工作模式 = value;
- }
- }
-
- internal virtual Label Label6
- {
- [DebuggerNonUserCode] get => _Label6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label6 = value;
- }
-
- internal virtual GroupBox GroupBox3
- {
- [DebuggerNonUserCode] get => _GroupBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox3 = value;
- }
- }
-
- internal virtual DataGridView DataGridView3
- {
- [DebuggerNonUserCode] get => _DataGridView3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView3 != null)
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
{
- _DataGridView3.EditingControlShowing -= DataGridView3_EditingControlShowing;
- _DataGridView3.CellEndEdit -= DataGridView3_CellEndEdit;
- _DataGridView3.RowPostPaint -= DataGridView3_RowPostPaint;
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
}
- _DataGridView3 = value;
- if (_DataGridView3 == null)
- return;
- _DataGridView3.EditingControlShowing += DataGridView3_EditingControlShowing;
- _DataGridView3.CellEndEdit += DataGridView3_CellEndEdit;
- _DataGridView3.RowPostPaint += DataGridView3_RowPostPaint;
- }
- }
- internal virtual Button Button3
- {
- [DebuggerNonUserCode] get => _Button3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button3 = value;
- }
- }
-
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button2 = value;
- }
- }
-
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn ColumnFMFreq
- {
- [DebuggerNonUserCode] get => _ColumnFMFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ColumnFMFreq = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn ColumnAMFreq
- {
- [DebuggerNonUserCode] get => _ColumnAMFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ColumnAMFreq = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn ColumnAIRFreq
- {
- [DebuggerNonUserCode] get => _ColumnAIRFreq;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ColumnAIRFreq = value;
- }
- }
-
- public void RadioMsgForm_Deactivate(object sender, EventArgs e)
- {
- DataGridView1.EndEdit();
- DataGridView2.EndEdit();
- DataGridView3.EndEdit();
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAIR工作模式, checked (3840 + 29), publicva.Bit5, 5);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAIR信道号, checked (3952 + 6), publicva.AllBit, 0);
- var num1 = 7168;
- var rowIndex1 = 1;
- do
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView3["ColumnAIRFreq", rowIndex1].Value, "", false))
+ [DebuggerStepThrough]
+ private void InitializeComponent()
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex1 - 1), "删除", 7856);
+ var componentResourceManager = new ComponentResourceManager(typeof(RadioMsgForm));
+ var gridViewCellStyle1 = new DataGridViewCellStyle();
+ var gridViewCellStyle2 = new DataGridViewCellStyle();
+ var gridViewCellStyle3 = new DataGridViewCellStyle();
+ var gridViewCellStyle4 = new DataGridViewCellStyle();
+ var gridViewCellStyle5 = new DataGridViewCellStyle();
+ var gridViewCellStyle6 = new DataGridViewCellStyle();
+ var gridViewCellStyle7 = new DataGridViewCellStyle();
+ var gridViewCellStyle8 = new DataGridViewCellStyle();
+ var gridViewCellStyle9 = new DataGridViewCellStyle();
+ var gridViewCellStyle10 = new DataGridViewCellStyle();
+ var gridViewCellStyle11 = new DataGridViewCellStyle();
+ var gridViewCellStyle12 = new DataGridViewCellStyle();
+ TabControl1 = new TabControl();
+ TabPage1 = new TabPage();
+ ComboBoxFM信道号 = new ComboBox();
+ Label2 = new Label();
+ ComboBoxFM工作模式 = new ComboBox();
+ Label1 = new Label();
+ GroupBox1 = new GroupBox();
+ DataGridView1 = new DataGridView();
+ TabPage2 = new TabPage();
+ ComboBoxAM信道号 = new ComboBox();
+ Label3 = new Label();
+ ComboBoxAM工作模式 = new ComboBox();
+ Label4 = new Label();
+ GroupBox2 = new GroupBox();
+ DataGridView2 = new DataGridView();
+ TabPage3 = new TabPage();
+ ComboBoxAIR信道号 = new ComboBox();
+ Label5 = new Label();
+ ComboBoxAIR工作模式 = new ComboBox();
+ Label6 = new Label();
+ GroupBox3 = new GroupBox();
+ DataGridView3 = new DataGridView();
+ Button3 = new Button();
+ Button2 = new Button();
+ Button1 = new Button();
+ ColumnFMFreq = new DataGridViewTextBoxColumn();
+ ColumnAMFreq = new DataGridViewTextBoxColumn();
+ ColumnAIRFreq = new DataGridViewTextBoxColumn();
+ TabControl1.SuspendLayout();
+ TabPage1.SuspendLayout();
+ GroupBox1.SuspendLayout();
+ ((ISupportInitialize) DataGridView1).BeginInit();
+ TabPage2.SuspendLayout();
+ GroupBox2.SuspendLayout();
+ ((ISupportInitialize) DataGridView2).BeginInit();
+ TabPage3.SuspendLayout();
+ GroupBox3.SuspendLayout();
+ ((ISupportInitialize) DataGridView3).BeginInit();
+ SuspendLayout();
+ TabControl1.AccessibleDescription = null;
+ TabControl1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabControl1, "TabControl1");
+ TabControl1.BackgroundImage = null;
+ TabControl1.Controls.Add(TabPage1);
+ TabControl1.Controls.Add(TabPage2);
+ TabControl1.Controls.Add(TabPage3);
+ TabControl1.Font = null;
+ TabControl1.Name = "TabControl1";
+ TabControl1.SelectedIndex = 0;
+ TabPage1.AccessibleDescription = null;
+ TabPage1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage1, "TabPage1");
+ TabPage1.BackgroundImage = null;
+ TabPage1.Controls.Add(ComboBoxFM信道号);
+ TabPage1.Controls.Add(Label2);
+ TabPage1.Controls.Add(ComboBoxFM工作模式);
+ TabPage1.Controls.Add(Label1);
+ TabPage1.Controls.Add(GroupBox1);
+ TabPage1.Font = null;
+ TabPage1.Name = "TabPage1";
+ TabPage1.UseVisualStyleBackColor = true;
+ ComboBoxFM信道号.AccessibleDescription = null;
+ ComboBoxFM信道号.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxFM信道号, "ComboBoxFM信道号");
+ ComboBoxFM信道号.BackgroundImage = null;
+ ComboBoxFM信道号.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxFM信道号.Font = null;
+ ComboBoxFM信道号.FormattingEnabled = true;
+ ComboBoxFM信道号.Items.AddRange(new object[32]
+ {
+ componentResourceManager.GetString("ComboBoxFM信道号.Items"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items1"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items2"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items3"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items4"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items5"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items6"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items7"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items8"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items9"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items10"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items11"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items12"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items13"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items14"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items15"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items16"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items17"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items18"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items19"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items20"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items21"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items22"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items23"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items24"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items25"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items26"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items27"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items28"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items29"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items30"),
+ componentResourceManager.GetString("ComboBoxFM信道号.Items31")
+ });
+ ComboBoxFM信道号.Name = "ComboBoxFM信道号";
+ Label2.AccessibleDescription = null;
+ Label2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label2, "Label2");
+ Label2.Font = null;
+ Label2.Name = "Label2";
+ ComboBoxFM工作模式.AccessibleDescription = null;
+ ComboBoxFM工作模式.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxFM工作模式, "ComboBoxFM工作模式");
+ ComboBoxFM工作模式.BackgroundImage = null;
+ ComboBoxFM工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxFM工作模式.Font = null;
+ ComboBoxFM工作模式.FormattingEnabled = true;
+ ComboBoxFM工作模式.Items.AddRange(new object[2]
+ {
+ componentResourceManager.GetString("ComboBoxFM工作模式.Items"),
+ componentResourceManager.GetString("ComboBoxFM工作模式.Items1")
+ });
+ ComboBoxFM工作模式.Name = "ComboBoxFM工作模式";
+ Label1.AccessibleDescription = null;
+ Label1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Font = null;
+ Label1.Name = "Label1";
+ GroupBox1.AccessibleDescription = null;
+ GroupBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
+ GroupBox1.BackgroundImage = null;
+ GroupBox1.Controls.Add(DataGridView1);
+ GroupBox1.Font = null;
+ GroupBox1.Name = "GroupBox1";
+ GroupBox1.TabStop = false;
+ DataGridView1.AccessibleDescription = null;
+ DataGridView1.AccessibleName = null;
+ DataGridView1.AllowUserToAddRows = false;
+ DataGridView1.AllowUserToDeleteRows = false;
+ DataGridView1.AllowUserToResizeColumns = false;
+ DataGridView1.AllowUserToResizeRows = false;
+ gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
+ componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
+ DataGridView1.BackgroundImage = null;
+ gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle2.BackColor = SystemColors.Control;
+ gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle2.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
+ DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
+ DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView1.Columns.AddRange(ColumnFMFreq);
+ DataGridView1.Font = null;
+ DataGridView1.Name = "DataGridView1";
+ gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle3.BackColor = SystemColors.Control;
+ gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle3.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
+ DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
+ DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
+ DataGridView1.RowTemplate.Height = 23;
+ TabPage2.AccessibleDescription = null;
+ TabPage2.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage2, "TabPage2");
+ TabPage2.BackgroundImage = null;
+ TabPage2.Controls.Add(ComboBoxAM信道号);
+ TabPage2.Controls.Add(Label3);
+ TabPage2.Controls.Add(ComboBoxAM工作模式);
+ TabPage2.Controls.Add(Label4);
+ TabPage2.Controls.Add(GroupBox2);
+ TabPage2.Font = null;
+ TabPage2.Name = "TabPage2";
+ TabPage2.UseVisualStyleBackColor = true;
+ ComboBoxAM信道号.AccessibleDescription = null;
+ ComboBoxAM信道号.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxAM信道号, "ComboBoxAM信道号");
+ ComboBoxAM信道号.BackgroundImage = null;
+ ComboBoxAM信道号.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxAM信道号.Font = null;
+ ComboBoxAM信道号.FormattingEnabled = true;
+ ComboBoxAM信道号.Items.AddRange(new object[64]
+ {
+ componentResourceManager.GetString("ComboBoxAM信道号.Items"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items1"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items2"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items3"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items4"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items5"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items6"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items7"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items8"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items9"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items10"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items11"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items12"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items13"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items14"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items15"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items16"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items17"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items18"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items19"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items20"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items21"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items22"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items23"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items24"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items25"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items26"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items27"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items28"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items29"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items30"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items31"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items32"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items33"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items34"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items35"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items36"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items37"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items38"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items39"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items40"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items41"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items42"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items43"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items44"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items45"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items46"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items47"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items48"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items49"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items50"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items51"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items52"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items53"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items54"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items55"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items56"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items57"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items58"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items59"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items60"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items61"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items62"),
+ componentResourceManager.GetString("ComboBoxAM信道号.Items63")
+ });
+ ComboBoxAM信道号.Name = "ComboBoxAM信道号";
+ Label3.AccessibleDescription = null;
+ Label3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label3, "Label3");
+ Label3.Font = null;
+ Label3.Name = "Label3";
+ ComboBoxAM工作模式.AccessibleDescription = null;
+ ComboBoxAM工作模式.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxAM工作模式, "ComboBoxAM工作模式");
+ ComboBoxAM工作模式.BackgroundImage = null;
+ ComboBoxAM工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxAM工作模式.Font = null;
+ ComboBoxAM工作模式.FormattingEnabled = true;
+ ComboBoxAM工作模式.Items.AddRange(new object[2]
+ {
+ componentResourceManager.GetString("ComboBoxAM工作模式.Items"),
+ componentResourceManager.GetString("ComboBoxAM工作模式.Items1")
+ });
+ ComboBoxAM工作模式.Name = "ComboBoxAM工作模式";
+ Label4.AccessibleDescription = null;
+ Label4.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label4, "Label4");
+ Label4.Font = null;
+ Label4.Name = "Label4";
+ GroupBox2.AccessibleDescription = null;
+ GroupBox2.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
+ GroupBox2.BackgroundImage = null;
+ GroupBox2.Controls.Add(DataGridView2);
+ GroupBox2.Font = null;
+ GroupBox2.Name = "GroupBox2";
+ GroupBox2.TabStop = false;
+ DataGridView2.AccessibleDescription = null;
+ DataGridView2.AccessibleName = null;
+ DataGridView2.AllowUserToAddRows = false;
+ DataGridView2.AllowUserToDeleteRows = false;
+ DataGridView2.AllowUserToResizeColumns = false;
+ DataGridView2.AllowUserToResizeRows = false;
+ gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView2.AlternatingRowsDefaultCellStyle = gridViewCellStyle5;
+ componentResourceManager.ApplyResources(DataGridView2, "DataGridView2");
+ DataGridView2.BackgroundImage = null;
+ gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle6.BackColor = SystemColors.Control;
+ gridViewCellStyle6.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle6.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle6.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle6.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle6.WrapMode = DataGridViewTriState.True;
+ DataGridView2.ColumnHeadersDefaultCellStyle = gridViewCellStyle6;
+ DataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView2.Columns.AddRange(ColumnAMFreq);
+ DataGridView2.Font = null;
+ DataGridView2.Name = "DataGridView2";
+ gridViewCellStyle7.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle7.BackColor = SystemColors.Control;
+ gridViewCellStyle7.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle7.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle7.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle7.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle7.WrapMode = DataGridViewTriState.True;
+ DataGridView2.RowHeadersDefaultCellStyle = gridViewCellStyle7;
+ DataGridView2.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle8.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView2.RowsDefaultCellStyle = gridViewCellStyle8;
+ DataGridView2.RowTemplate.Height = 23;
+ TabPage3.AccessibleDescription = null;
+ TabPage3.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage3, "TabPage3");
+ TabPage3.BackgroundImage = null;
+ TabPage3.Controls.Add(ComboBoxAIR信道号);
+ TabPage3.Controls.Add(Label5);
+ TabPage3.Controls.Add(ComboBoxAIR工作模式);
+ TabPage3.Controls.Add(Label6);
+ TabPage3.Controls.Add(GroupBox3);
+ TabPage3.Font = null;
+ TabPage3.Name = "TabPage3";
+ TabPage3.UseVisualStyleBackColor = true;
+ ComboBoxAIR信道号.AccessibleDescription = null;
+ ComboBoxAIR信道号.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxAIR信道号, "ComboBoxAIR信道号");
+ ComboBoxAIR信道号.BackgroundImage = null;
+ ComboBoxAIR信道号.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxAIR信道号.Font = null;
+ ComboBoxAIR信道号.FormattingEnabled = true;
+ ComboBoxAIR信道号.Items.AddRange(new object[64]
+ {
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items1"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items2"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items3"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items4"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items5"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items6"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items7"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items8"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items9"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items10"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items11"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items12"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items13"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items14"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items15"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items16"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items17"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items18"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items19"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items20"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items21"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items22"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items23"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items24"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items25"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items26"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items27"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items28"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items29"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items30"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items31"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items32"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items33"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items34"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items35"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items36"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items37"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items38"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items39"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items40"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items41"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items42"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items43"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items44"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items45"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items46"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items47"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items48"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items49"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items50"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items51"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items52"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items53"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items54"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items55"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items56"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items57"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items58"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items59"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items60"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items61"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items62"),
+ componentResourceManager.GetString("ComboBoxAIR信道号.Items63")
+ });
+ ComboBoxAIR信道号.Name = "ComboBoxAIR信道号";
+ Label5.AccessibleDescription = null;
+ Label5.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label5, "Label5");
+ Label5.Font = null;
+ Label5.Name = "Label5";
+ ComboBoxAIR工作模式.AccessibleDescription = null;
+ ComboBoxAIR工作模式.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBoxAIR工作模式, "ComboBoxAIR工作模式");
+ ComboBoxAIR工作模式.BackgroundImage = null;
+ ComboBoxAIR工作模式.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBoxAIR工作模式.Font = null;
+ ComboBoxAIR工作模式.FormattingEnabled = true;
+ ComboBoxAIR工作模式.Items.AddRange(new object[2]
+ {
+ componentResourceManager.GetString("ComboBoxAIR工作模式.Items"),
+ componentResourceManager.GetString("ComboBoxAIR工作模式.Items1")
+ });
+ ComboBoxAIR工作模式.Name = "ComboBoxAIR工作模式";
+ Label6.AccessibleDescription = null;
+ Label6.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label6, "Label6");
+ Label6.Font = null;
+ Label6.Name = "Label6";
+ GroupBox3.AccessibleDescription = null;
+ GroupBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
+ GroupBox3.BackgroundImage = null;
+ GroupBox3.Controls.Add(DataGridView3);
+ GroupBox3.Font = null;
+ GroupBox3.Name = "GroupBox3";
+ GroupBox3.TabStop = false;
+ DataGridView3.AccessibleDescription = null;
+ DataGridView3.AccessibleName = null;
+ DataGridView3.AllowUserToAddRows = false;
+ DataGridView3.AllowUserToDeleteRows = false;
+ DataGridView3.AllowUserToResizeColumns = false;
+ DataGridView3.AllowUserToResizeRows = false;
+ gridViewCellStyle9.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView3.AlternatingRowsDefaultCellStyle = gridViewCellStyle9;
+ componentResourceManager.ApplyResources(DataGridView3, "DataGridView3");
+ DataGridView3.BackgroundImage = null;
+ gridViewCellStyle10.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle10.BackColor = SystemColors.Control;
+ gridViewCellStyle10.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle10.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle10.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle10.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle10.WrapMode = DataGridViewTriState.True;
+ DataGridView3.ColumnHeadersDefaultCellStyle = gridViewCellStyle10;
+ DataGridView3.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView3.Columns.AddRange(ColumnAIRFreq);
+ DataGridView3.Font = null;
+ DataGridView3.Name = "DataGridView3";
+ gridViewCellStyle11.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle11.BackColor = SystemColors.Control;
+ gridViewCellStyle11.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle11.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle11.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle11.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle11.WrapMode = DataGridViewTriState.True;
+ DataGridView3.RowHeadersDefaultCellStyle = gridViewCellStyle11;
+ DataGridView3.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle12.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView3.RowsDefaultCellStyle = gridViewCellStyle12;
+ DataGridView3.RowTemplate.Height = 23;
+ Button3.AccessibleDescription = null;
+ Button3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button3, "Button3");
+ Button3.BackgroundImage = null;
+ Button3.Font = null;
+ Button3.Name = "Button3";
+ Button3.UseVisualStyleBackColor = true;
+ Button2.AccessibleDescription = null;
+ Button2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.BackgroundImage = null;
+ Button2.Font = null;
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ Button1.AccessibleDescription = null;
+ Button1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.BackgroundImage = null;
+ Button1.Font = null;
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ componentResourceManager.ApplyResources(ColumnFMFreq, "ColumnFMFreq");
+ ColumnFMFreq.MaxInputLength = 9;
+ ColumnFMFreq.Name = "ColumnFMFreq";
+ ColumnFMFreq.Resizable = DataGridViewTriState.False;
+ ColumnFMFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
+ componentResourceManager.ApplyResources(ColumnAMFreq, "ColumnAMFreq");
+ ColumnAMFreq.MaxInputLength = 9;
+ ColumnAMFreq.Name = "ColumnAMFreq";
+ ColumnAMFreq.Resizable = DataGridViewTriState.False;
+ ColumnAMFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
+ componentResourceManager.ApplyResources(ColumnAIRFreq, "ColumnAIRFreq");
+ ColumnAIRFreq.MaxInputLength = 9;
+ ColumnAIRFreq.Name = "ColumnAIRFreq";
+ ColumnAIRFreq.Resizable = DataGridViewTriState.False;
+ ColumnAIRFreq.SortMode = DataGridViewColumnSortMode.NotSortable;
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ BackgroundImage = null;
+ Controls.Add(Button3);
+ Controls.Add(Button2);
+ Controls.Add(Button1);
+ Controls.Add(TabControl1);
+ Font = null;
+ Name = nameof(RadioMsgForm);
+ TabControl1.ResumeLayout(false);
+ TabPage1.ResumeLayout(false);
+ TabPage1.PerformLayout();
+ GroupBox1.ResumeLayout(false);
+ ((ISupportInitialize) DataGridView1).EndInit();
+ TabPage2.ResumeLayout(false);
+ TabPage2.PerformLayout();
+ GroupBox2.ResumeLayout(false);
+ ((ISupportInitialize) DataGridView2).EndInit();
+ TabPage3.ResumeLayout(false);
+ TabPage3.PerformLayout();
+ GroupBox3.ResumeLayout(false);
+ ((ISupportInitialize) DataGridView3).EndInit();
+ ResumeLayout(false);
}
- else
+
+ internal virtual TabControl TabControl1
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex1 - 1), "添加", 7856);
- Set_Freq(checked (rowIndex1 * 4 + num1), Conversions.ToString(DataGridView3["ColumnAIRFreq", rowIndex1].Value));
+ [DebuggerNonUserCode]
+ get => _TabControl1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabControl1 = value; }
}
- checked { ++rowIndex1; }
- }
- while (rowIndex1 <= 64);
- Set_Freq(checked (0 + 7816), Conversions.ToString(DataGridView3["ColumnAIRFreq", 0].Value));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAM工作模式, checked (3840 + 29), publicva.Bit4, 4);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAM信道号, checked (3952 + 8), publicva.AllBit, 0);
- var num2 = 7424;
- var rowIndex2 = 1;
- do
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView2["ColumnAMFreq", rowIndex2].Value, "", false))
+
+ internal virtual TabPage TabPage1
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex2 - 1), "删除", 7824);
+ [DebuggerNonUserCode]
+ get => _TabPage1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage1 = value; }
}
- else
+
+ internal virtual TabPage TabPage2
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex2 - 1), "添加", 7824);
- Set_Freq(checked (rowIndex2 * 4 + num2), Conversions.ToString(DataGridView2["ColumnAMFreq", rowIndex2].Value));
- publicva.EEPROM_Byte[checked (rowIndex2 * 4 + num2 + 3)] = Conversions.ToByte(Get_AMFreqRangID(Conversions.ToDouble(DataGridView2["ColumnAMFreq", rowIndex2].Value)));
+ [DebuggerNonUserCode]
+ get => _TabPage2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage2 = value; }
}
- checked { ++rowIndex2; }
- }
- while (rowIndex2 <= 64);
- var num3 = 7808;
- Set_Freq(checked (0 + num3), Conversions.ToString(DataGridView2["ColumnAMFreq", 0].Value));
- publicva.EEPROM_Byte[checked (0 + num3 + 3)] = Conversions.ToByte(Get_AMFreqRangID(Conversions.ToDouble(DataGridView2["ColumnAMFreq", 0].Value)));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxFM工作模式, checked (3840 + 15), publicva.Bit6, 6);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxFM信道号, checked (3952 + 7), publicva.AllBit, 0);
- var num4 = 7680;
- var rowIndex3 = 1;
- do
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView1["ColumnFMFreq", rowIndex3].Value, "", false))
+
+ internal virtual TabPage TabPage3
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex3 - 1), "删除", 7840);
+ [DebuggerNonUserCode]
+ get => _TabPage3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage3 = value; }
}
- else
+
+ internal virtual GroupBox GroupBox1
{
- MyProject.Forms.ChannelMsg.CHStatusList_Write(checked (rowIndex3 - 1), "添加", 7840);
- Set_Freq(checked (rowIndex3 * 4 + num4), Conversions.ToString(DataGridView1["ColumnFMFreq", rowIndex3].Value));
+ [DebuggerNonUserCode]
+ get => _GroupBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox1 = value; }
}
- checked { ++rowIndex3; }
- }
- while (rowIndex3 <= 32);
- Set_Freq(checked (0 + 7812), Conversions.ToString(DataGridView1["ColumnFMFreq", 0].Value));
- }
- private void RadioMsgForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- MyProject.Forms.MDIParent1.收音机存储信道JToolStripMenuItem.Checked = false;
- }
-
- public void RadioMsgForm_Load(object sender, EventArgs e)
- {
- MyProject.Forms.MDIParent1.收音机存储信道JToolStripMenuItem.Checked = true;
- DataGridView1.RowCount = 33;
- DataGridView2.RowCount = 65;
- DataGridView3.RowCount = 65;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- DataGridView1.TopLeftHeaderCell.Value = "信道";
- DataGridView2.TopLeftHeaderCell.Value = "信道";
- DataGridView3.TopLeftHeaderCell.Value = "信道";
- }
- else
- {
- DataGridView1.TopLeftHeaderCell.Value = "CH";
- DataGridView2.TopLeftHeaderCell.Value = "CH";
- DataGridView3.TopLeftHeaderCell.Value = "CH";
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR工作模式, checked (3840 + 29), publicva.Bit5, 5);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR信道号, checked (3952 + 6), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
- ComboBoxAIR信道号.SelectedIndex = 0;
- var num1 = 7168;
- var rowIndex1 = 1;
- do
- {
- DataGridView3["ColumnAIRFreq", rowIndex1].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked (rowIndex1 - 1), 7856) ? "" : RuntimeHelpers.GetObjectValue(Get_Freq(checked (rowIndex1 * 4 + num1), 11850000, 13400000));
- checked { ++rowIndex1; }
- }
- while (rowIndex1 <= 64);
- DataGridView3["ColumnAIRFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_Freq(checked (0 + 7816), 11850000, 13400000));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM工作模式, checked (3840 + 29), publicva.Bit4, 4);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM信道号, checked (3952 + 8), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
- ComboBoxAM信道号.SelectedIndex = 0;
- var num2 = 7424;
- var rowIndex2 = 1;
- do
- {
- DataGridView2["ColumnAMFreq", rowIndex2].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked (rowIndex2 - 1), 7824) ? "" : RuntimeHelpers.GetObjectValue(Get_AMFreq(checked (rowIndex2 * 4 + num2)));
- checked { ++rowIndex2; }
- }
- while (rowIndex2 <= 64);
- DataGridView2["ColumnAMFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_AMFreq(checked (0 + 7808)));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM工作模式, checked (3840 + 15), publicva.Bit6, 6);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM信道号, checked (3952 + 7), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
- ComboBoxFM信道号.SelectedIndex = 0;
- var num3 = 7680;
- var rowIndex3 = 1;
- do
- {
- DataGridView1["ColumnFMFreq", rowIndex3].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked (rowIndex3 - 1), 7840) ? "" : RuntimeHelpers.GetObjectValue(Get_Freq(checked (rowIndex3 * 4 + num3), 6400000, 10800000));
- checked { ++rowIndex3; }
- }
- while (rowIndex3 <= 32);
- DataGridView1["ColumnFMFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_Freq(checked (0 + 7812), 6400000, 10800000));
- }
-
- private void DataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView1.CurrentCell.RowIndex;
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["ColumnFMFreq", rowIndex].Value, "", false))
- DataGridView1["ColumnFMFreq", rowIndex].Value = RuntimeHelpers.GetObjectValue(JudgeInputFMFreq(Conversions.ToString(DataGridView1["ColumnFMFreq", rowIndex].Value), 6400000, 10800000));
- if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView1["ColumnFMFreq", rowIndex].Value, "", false), rowIndex == 0)))
- DataGridView1["ColumnFMFreq", rowIndex].Value = "100.70000";
- RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- ComboBoxFM信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void DataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView2.CurrentCell.RowIndex;
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView2["ColumnAMFreq", rowIndex].Value, "", false))
- DataGridView2["ColumnAMFreq", rowIndex].Value = RuntimeHelpers.GetObjectValue(JudgeInputAMFreq(Conversions.ToString(DataGridView2["ColumnAMFreq", rowIndex].Value)));
- if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView2["ColumnAMFreq", rowIndex].Value, "", false), rowIndex == 0)))
- DataGridView2["ColumnAMFreq", rowIndex].Value = "21.70000";
- RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- ComboBoxAM信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void DataGridView3_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView3.CurrentCell.RowIndex;
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView3["ColumnAIRFreq", rowIndex].Value, "", false))
- DataGridView3["ColumnAIRFreq", rowIndex].Value = RuntimeHelpers.GetObjectValue(JudgeInputAIRFreq(Conversions.ToString(DataGridView3["ColumnAIRFreq", rowIndex].Value), 11850000, 13400000));
- if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView3["ColumnAIRFreq", rowIndex].Value, "", false), rowIndex == 0)))
- DataGridView3["ColumnAIRFreq", rowIndex].Value = "118.50000";
- RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
- ComboBoxAIR信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
- }
-
- private void DataGridView1_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (DataGridView1.CurrentCell.ColumnIndex != DataGridView1["ColumnFMFreq", 0].ColumnIndex)
- return;
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- e.Control.KeyPress += Cells_KeyPress;
- }
-
- private void DataGridView2_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (DataGridView2.CurrentCell.ColumnIndex != DataGridView2["ColumnAMFreq", 0].ColumnIndex)
- return;
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- e.Control.KeyPress += Cells_KeyPress;
- }
-
- private void DataGridView3_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (DataGridView3.CurrentCell.ColumnIndex != DataGridView3["ColumnAIRFreq", 0].ColumnIndex)
- return;
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- e.Control.KeyPress += Cells_KeyPress;
- }
-
- private void Cells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
- e.Handled = false;
- else
- e.Handled = true;
- }
-
- private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var strArray = new string[1]{ "搜台" };
- var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
- var num = 11;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
- {
- strArray[0] = "VFO";
- num = 7;
- }
- if (e.RowIndex == 0)
- e.Graphics.DrawString(strArray[0].ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView1.RowHeadersWidth - strArray[0].ToString().Length * num) / 2f, checked (e.RowBounds.Location.Y + 5));
- else
- e.Graphics.DrawString(checked (e.RowIndex - 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView1.RowHeadersWidth - (e.RowIndex - 1).ToString().Length * 8) / 2f, checked (e.RowBounds.Location.Y + 5));
- }
-
- private void DataGridView2_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var strArray = new string[1]{ "搜台" };
- var brush = (Brush) new SolidBrush(DataGridView2.RowHeadersDefaultCellStyle.ForeColor);
- var num = 11;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
- {
- strArray[0] = "VFO";
- num = 7;
- }
- if (e.RowIndex == 0)
- e.Graphics.DrawString(strArray[0].ToString(), DataGridView2.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView2.RowHeadersWidth - strArray[0].ToString().Length * num) / 2f, checked (e.RowBounds.Location.Y + 5));
- else
- e.Graphics.DrawString(checked (e.RowIndex - 1).ToString(), DataGridView2.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView2.RowHeadersWidth - (e.RowIndex - 1).ToString().Length * 8) / 2f, checked (e.RowBounds.Location.Y + 5));
- }
-
- private void DataGridView3_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var strArray = new string[1]{ "搜台" };
- var brush = (Brush) new SolidBrush(DataGridView3.RowHeadersDefaultCellStyle.ForeColor);
- var num = 11;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
- {
- strArray[0] = "VFO";
- num = 7;
- }
- if (e.RowIndex == 0)
- e.Graphics.DrawString(strArray[0].ToString(), DataGridView3.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView3.RowHeadersWidth - strArray[0].ToString().Length * num) / 2f, checked (e.RowBounds.Location.Y + 5));
- else
- e.Graphics.DrawString(checked (e.RowIndex - 1).ToString(), DataGridView3.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView3.RowHeadersWidth - (e.RowIndex - 1).ToString().Length * 8) / 2f, checked (e.RowBounds.Location.Y + 5));
- }
-
- public object JudgeInputFMFreq(string StrFreq, int Min, int Max)
- {
- string str;
- try
- {
- var num1 = checked ((uint) Math.Round(unchecked (Conversions.ToDouble(StrFreq) * 100000.0)));
- if (Max >= num1 & num1 >= Min)
+ internal virtual DataGridView DataGridView1
{
- if (num1 % 5000L != 0L)
- {
- var num2 = checked ((int) unchecked (num1 / 5000L));
- if (num1 % 5000L > 10000L)
- checked { ++num2; }
- num1 = checked ((uint) (num2 * 5000));
- }
- str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ [DebuggerNonUserCode]
+ get => _DataGridView1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView1 != null)
+ {
+ _DataGridView1.EditingControlShowing -= DataGridView1_EditingControlShowing;
+ _DataGridView1.CellEndEdit -= DataGridView1_CellEndEdit;
+ _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
+ }
+
+ _DataGridView1 = value;
+ if (_DataGridView1 == null)
+ return;
+ _DataGridView1.EditingControlShowing += DataGridView1_EditingControlShowing;
+ _DataGridView1.CellEndEdit += DataGridView1_CellEndEdit;
+ _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
+ }
}
- else
+
+ internal virtual ComboBox ComboBoxFM工作模式
{
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
+ [DebuggerNonUserCode]
+ get => _ComboBoxFM工作模式;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBoxFM工作模式 = value; }
}
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- ProjectData.ClearProjectError();
- }
- return str;
- }
- public object JudgeInputAIRFreq(string StrFreq, int Min, int Max)
- {
- string str;
- try
- {
- var num1 = checked ((int) Math.Round(unchecked (Conversions.ToDouble(StrFreq) * 100000.0)));
- if (Max >= num1 & num1 >= Min)
+ internal virtual Label Label1
{
- if (num1 % 500 != 0 && num1 % 625 != 0)
- {
- var num2 = num1;
- var num3 = num2 / 625;
- if (num2 % 625 > 1250)
- checked { ++num3; }
- var num4 = checked (num3 * 625);
- var num5 = num1;
- var num6 = num5 / 500;
- if (num5 % 500 > 1000)
- checked { ++num6; }
- var num7 = checked (num6 * 500);
- num1 = Math.Abs(checked (num4 - num1)) <= Math.Abs(checked (num7 - num1)) ? num4 : num7;
- }
- str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
}
- else
+
+ internal virtual ComboBox ComboBoxFM信道号
{
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
+ [DebuggerNonUserCode]
+ get => _ComboBoxFM信道号;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxFM信道号 != null)
+ _ComboBoxFM信道号.SelectionChangeCommitted -= ComboBoxFM信道号_SelectionChangeCommitted;
+ _ComboBoxFM信道号 = value;
+ if (_ComboBoxFM信道号 == null)
+ return;
+ _ComboBoxFM信道号.SelectionChangeCommitted += ComboBoxFM信道号_SelectionChangeCommitted;
+ }
}
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- ProjectData.ClearProjectError();
- }
- return str;
- }
- public object Get_AMFreqRangID(double Freq)
- {
- var num1 = checked ((uint) Math.Round(unchecked (Freq * 100000.0)));
- var num2 = checked ((uint) Information.UBound(publicva.AMFreqRang));
- uint amFreqRangId = 0;
- while (amFreqRangId <= num2)
- {
- if (publicva.AMFreqRang[checked ((int) amFreqRangId), 1] >= num1 & num1 >= publicva.AMFreqRang[checked ((int) amFreqRangId), 0])
- return amFreqRangId;
- checked { ++amFreqRangId; }
- }
- return -1;
- }
-
- public object JudgeInputAMFreq(string StrFreq)
- {
- string str;
- try
- {
- var Freq = Conversions.ToDouble(StrFreq);
- if (Conversions.ToInteger(Get_AMFreqRangID(Freq)) != -1)
+ internal virtual Label Label2
{
- var num1 = checked ((uint) Math.Round(unchecked (Freq * 100000.0)));
- if (num1 % 100L != 0L)
- {
- var num2 = checked ((int) unchecked (num1 / 100L));
- if (num1 % 100L > 200L)
- checked { ++num2; }
- num1 = checked ((uint) (num2 * 100));
- }
- str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ [DebuggerNonUserCode]
+ get => _Label2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label2 = value;
}
- else
+
+ internal virtual ComboBox ComboBoxAM信道号
{
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
+ [DebuggerNonUserCode]
+ get => _ComboBoxAM信道号;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxAM信道号 != null)
+ _ComboBoxAM信道号.SelectionChangeCommitted -= ComboBoxAM信道号_SelectionChangeCommitted;
+ _ComboBoxAM信道号 = value;
+ if (_ComboBoxAM信道号 == null)
+ return;
+ _ComboBoxAM信道号.SelectionChangeCommitted += ComboBoxAM信道号_SelectionChangeCommitted;
+ }
}
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- ProjectData.ClearProjectError();
- }
- return str;
- }
- public object Get_Freq(int Address, int Min, int Max)
- {
- var num = checked ((publicva.EEPROM_Byte[Address + 0] & 240) >> 4 * 10000000) + (double) checked (publicva.EEPROM_Byte[Address + 0] & 15 * 1000000) + checked ((publicva.EEPROM_Byte[Address + 1] & 240) >> 4 * 100000) + checked (publicva.EEPROM_Byte[Address + 1] & 15 * 10000) + checked ((publicva.EEPROM_Byte[Address + 2] & 240) >> 4 * 1000) + checked (publicva.EEPROM_Byte[Address + 2] & 15 * 100) + checked ((publicva.EEPROM_Byte[Address + 3] & 240) >> 4 * 10) + checked (publicva.EEPROM_Byte[Address + 3] & 15 * 1);
- return !(Max >= num & num >= Min) ? "" : (object) string.Format("{0:##0.00000}", num / 100000.0);
- }
+ internal virtual Label Label3
+ {
+ [DebuggerNonUserCode]
+ get => _Label3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label3 = value;
+ }
- public object Get_AMFreq(int Address)
- {
- var num = checked ((publicva.EEPROM_Byte[Address + 0] & 240) >> 4 * 10000000) + (double) checked (publicva.EEPROM_Byte[Address + 0] & 15 * 1000000) + checked ((publicva.EEPROM_Byte[Address + 1] & 240) >> 4 * 100000) + checked (publicva.EEPROM_Byte[Address + 1] & 15 * 10000) + checked ((publicva.EEPROM_Byte[Address + 2] & 240) >> 4 * 1000) + checked (publicva.EEPROM_Byte[Address + 2] & 15 * 100) + 0.0 + 0.0;
- return !(publicva.AMFreqRang[publicva.EEPROM_Byte[checked (Address + 3)], 1] >= num & num >= publicva.AMFreqRang[publicva.EEPROM_Byte[checked (Address + 3)], 0]) ? "" : (object) string.Format("{0:##0.00000}", num / 100000.0);
- }
+ internal virtual ComboBox ComboBoxAM工作模式
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxAM工作模式;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBoxAM工作模式 = value; }
+ }
- public void Set_Freq(int Address, string Temp_Value)
- {
- uint num;
- try
- {
- num = checked ((uint) Math.Round(unchecked (Convert.ToDouble(Temp_Value) * 1000000.0)));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- num = 0U;
- ProjectData.ClearProjectError();
- }
- publicva.EEPROM_Byte[checked (Address + 0)] = Conversions.ToByte("&h" + Conversions.ToString(num / 10000000L));
- publicva.EEPROM_Byte[checked (Address + 1)] = Conversions.ToByte("&h" + Conversions.ToString(num / 100000L % 100L));
- publicva.EEPROM_Byte[checked (Address + 2)] = Conversions.ToByte("&h" + Conversions.ToString(num / 1000L % 100L));
- publicva.EEPROM_Byte[checked (Address + 3)] = Conversions.ToByte("&h" + Conversions.ToString(num % 1000L / 10L));
- }
+ internal virtual Label Label4
+ {
+ [DebuggerNonUserCode]
+ get => _Label4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label4 = value;
+ }
- private void Button1_Click(object sender, EventArgs e) => Close();
+ internal virtual GroupBox GroupBox2
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox2 = value; }
+ }
- private void ComboBoxAM信道号_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
- return;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM信道号, checked (3952 + 8), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
- ComboBoxAM信道号.SelectedIndex = 0;
- }
+ internal virtual DataGridView DataGridView2
+ {
+ [DebuggerNonUserCode]
+ get => _DataGridView2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView2 != null)
+ {
+ _DataGridView2.CellEndEdit -= DataGridView2_CellEndEdit;
+ _DataGridView2.RowPostPaint -= DataGridView2_RowPostPaint;
+ _DataGridView2.EditingControlShowing -= DataGridView2_EditingControlShowing;
+ }
- private void ComboBoxFM信道号_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
- return;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM信道号, checked (3952 + 7), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
- ComboBoxFM信道号.SelectedIndex = 0;
- }
+ _DataGridView2 = value;
+ if (_DataGridView2 == null)
+ return;
+ _DataGridView2.CellEndEdit += DataGridView2_CellEndEdit;
+ _DataGridView2.RowPostPaint += DataGridView2_RowPostPaint;
+ _DataGridView2.EditingControlShowing += DataGridView2_EditingControlShowing;
+ }
+ }
- private void ComboBoxAIR信道号_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
- return;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR信道号, checked (3952 + 6), publicva.AllBit, 0);
- if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
- ComboBoxAIR信道号.SelectedIndex = 0;
+ internal virtual ComboBox ComboBoxAIR信道号
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxAIR信道号;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBoxAIR信道号 != null)
+ _ComboBoxAIR信道号.SelectionChangeCommitted -= ComboBoxAIR信道号_SelectionChangeCommitted;
+ _ComboBoxAIR信道号 = value;
+ if (_ComboBoxAIR信道号 == null)
+ return;
+ _ComboBoxAIR信道号.SelectionChangeCommitted += ComboBoxAIR信道号_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label5
+ {
+ [DebuggerNonUserCode]
+ get => _Label5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label5 = value;
+ }
+
+ internal virtual ComboBox ComboBoxAIR工作模式
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBoxAIR工作模式;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBoxAIR工作模式 = value; }
+ }
+
+ internal virtual Label Label6
+ {
+ [DebuggerNonUserCode]
+ get => _Label6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label6 = value;
+ }
+
+ internal virtual GroupBox GroupBox3
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox3 = value; }
+ }
+
+ internal virtual DataGridView DataGridView3
+ {
+ [DebuggerNonUserCode]
+ get => _DataGridView3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView3 != null)
+ {
+ _DataGridView3.EditingControlShowing -= DataGridView3_EditingControlShowing;
+ _DataGridView3.CellEndEdit -= DataGridView3_CellEndEdit;
+ _DataGridView3.RowPostPaint -= DataGridView3_RowPostPaint;
+ }
+
+ _DataGridView3 = value;
+ if (_DataGridView3 == null)
+ return;
+ _DataGridView3.EditingControlShowing += DataGridView3_EditingControlShowing;
+ _DataGridView3.CellEndEdit += DataGridView3_CellEndEdit;
+ _DataGridView3.RowPostPaint += DataGridView3_RowPostPaint;
+ }
+ }
+
+ internal virtual Button Button3
+ {
+ [DebuggerNonUserCode]
+ get => _Button3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button3 = value; }
+ }
+
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button2 = value; }
+ }
+
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
+
+ internal virtual DataGridViewTextBoxColumn ColumnFMFreq
+ {
+ [DebuggerNonUserCode]
+ get => _ColumnFMFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ColumnFMFreq = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn ColumnAMFreq
+ {
+ [DebuggerNonUserCode]
+ get => _ColumnAMFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ColumnAMFreq = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn ColumnAIRFreq
+ {
+ [DebuggerNonUserCode]
+ get => _ColumnAIRFreq;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ColumnAIRFreq = value; }
+ }
+
+ public void RadioMsgForm_Deactivate(object sender, EventArgs e)
+ {
+ DataGridView1.EndEdit();
+ DataGridView2.EndEdit();
+ DataGridView3.EndEdit();
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAIR工作模式, checked(3840 + 29), publicva.Bit5, 5);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAIR信道号, checked(3952 + 6), publicva.AllBit, 0);
+ var num1 = 7168;
+ var rowIndex1 = 1;
+ do
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView3["ColumnAIRFreq", rowIndex1].Value, "", false))
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex1 - 1), "删除", 7856);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex1 - 1), "添加", 7856);
+ Set_Freq(checked(rowIndex1 * 4 + num1), Conversions.ToString(DataGridView3["ColumnAIRFreq", rowIndex1].Value));
+ }
+
+ checked
+ {
+ ++rowIndex1;
+ }
+ }
+ while (rowIndex1 <= 64);
+
+ Set_Freq(checked(0 + 7816), Conversions.ToString(DataGridView3["ColumnAIRFreq", 0].Value));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAM工作模式, checked(3840 + 29), publicva.Bit4, 4);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxAM信道号, checked(3952 + 8), publicva.AllBit, 0);
+ var num2 = 7424;
+ var rowIndex2 = 1;
+ do
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView2["ColumnAMFreq", rowIndex2].Value, "", false))
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex2 - 1), "删除", 7824);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex2 - 1), "添加", 7824);
+ Set_Freq(checked(rowIndex2 * 4 + num2), Conversions.ToString(DataGridView2["ColumnAMFreq", rowIndex2].Value));
+ publicva.EEPROM_Byte[checked(rowIndex2 * 4 + num2 + 3)] =
+ Conversions.ToByte(Get_AMFreqRangID(Conversions.ToDouble(DataGridView2["ColumnAMFreq", rowIndex2].Value)));
+ }
+
+ checked
+ {
+ ++rowIndex2;
+ }
+ }
+ while (rowIndex2 <= 64);
+
+ var num3 = 7808;
+ Set_Freq(checked(0 + num3), Conversions.ToString(DataGridView2["ColumnAMFreq", 0].Value));
+ publicva.EEPROM_Byte[checked(0 + num3 + 3)] =
+ Conversions.ToByte(Get_AMFreqRangID(Conversions.ToDouble(DataGridView2["ColumnAMFreq", 0].Value)));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxFM工作模式, checked(3840 + 15), publicva.Bit6, 6);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBoxFM信道号, checked(3952 + 7), publicva.AllBit, 0);
+ var num4 = 7680;
+ var rowIndex3 = 1;
+ do
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView1["ColumnFMFreq", rowIndex3].Value, "", false))
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex3 - 1), "删除", 7840);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.CHStatusList_Write(checked(rowIndex3 - 1), "添加", 7840);
+ Set_Freq(checked(rowIndex3 * 4 + num4), Conversions.ToString(DataGridView1["ColumnFMFreq", rowIndex3].Value));
+ }
+
+ checked
+ {
+ ++rowIndex3;
+ }
+ }
+ while (rowIndex3 <= 32);
+
+ Set_Freq(checked(0 + 7812), Conversions.ToString(DataGridView1["ColumnFMFreq", 0].Value));
+ }
+
+ private void RadioMsgForm_FormClosing(object sender, FormClosingEventArgs e)
+ {
+ MyProject.Forms.MDIParent1.收音机存储信道JToolStripMenuItem.Checked = false;
+ }
+
+ public void RadioMsgForm_Load(object sender, EventArgs e)
+ {
+ MyProject.Forms.MDIParent1.收音机存储信道JToolStripMenuItem.Checked = true;
+ DataGridView1.RowCount = 33;
+ DataGridView2.RowCount = 65;
+ DataGridView3.RowCount = 65;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ {
+ DataGridView1.TopLeftHeaderCell.Value = "信道";
+ DataGridView2.TopLeftHeaderCell.Value = "信道";
+ DataGridView3.TopLeftHeaderCell.Value = "信道";
+ }
+ else
+ {
+ DataGridView1.TopLeftHeaderCell.Value = "CH";
+ DataGridView2.TopLeftHeaderCell.Value = "CH";
+ DataGridView3.TopLeftHeaderCell.Value = "CH";
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR工作模式, checked(3840 + 29), publicva.Bit5, 5);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR信道号, checked(3952 + 6), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
+ ComboBoxAIR信道号.SelectedIndex = 0;
+ var num1 = 7168;
+ var rowIndex1 = 1;
+ do
+ {
+ DataGridView3["ColumnAIRFreq", rowIndex1].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked(rowIndex1 - 1), 7856)
+ ? ""
+ : RuntimeHelpers.GetObjectValue(Get_Freq(checked(rowIndex1 * 4 + num1), 11850000, 13400000));
+ checked
+ {
+ ++rowIndex1;
+ }
+ }
+ while (rowIndex1 <= 64);
+
+ DataGridView3["ColumnAIRFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_Freq(checked(0 + 7816), 11850000, 13400000));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM工作模式, checked(3840 + 29), publicva.Bit4, 4);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM信道号, checked(3952 + 8), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
+ ComboBoxAM信道号.SelectedIndex = 0;
+ var num2 = 7424;
+ var rowIndex2 = 1;
+ do
+ {
+ DataGridView2["ColumnAMFreq", rowIndex2].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked(rowIndex2 - 1), 7824)
+ ? ""
+ : RuntimeHelpers.GetObjectValue(Get_AMFreq(checked(rowIndex2 * 4 + num2)));
+ checked
+ {
+ ++rowIndex2;
+ }
+ }
+ while (rowIndex2 <= 64);
+
+ DataGridView2["ColumnAMFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_AMFreq(checked(0 + 7808)));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM工作模式, checked(3840 + 15), publicva.Bit6, 6);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM信道号, checked(3952 + 7), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
+ ComboBoxFM信道号.SelectedIndex = 0;
+ var num3 = 7680;
+ var rowIndex3 = 1;
+ do
+ {
+ DataGridView1["ColumnFMFreq", rowIndex3].Value = !MyProject.Forms.ChannelMsg.CHStatus_Read(checked(rowIndex3 - 1), 7840)
+ ? ""
+ : RuntimeHelpers.GetObjectValue(Get_Freq(checked(rowIndex3 * 4 + num3), 6400000, 10800000));
+ checked
+ {
+ ++rowIndex3;
+ }
+ }
+ while (rowIndex3 <= 32);
+
+ DataGridView1["ColumnFMFreq", 0].Value = RuntimeHelpers.GetObjectValue(Get_Freq(checked(0 + 7812), 6400000, 10800000));
+ }
+
+ private void DataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = DataGridView1.CurrentCell.RowIndex;
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["ColumnFMFreq", rowIndex].Value, "", false))
+ DataGridView1["ColumnFMFreq", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(JudgeInputFMFreq(Conversions.ToString(DataGridView1["ColumnFMFreq", rowIndex].Value), 6400000,
+ 10800000));
+ if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView1["ColumnFMFreq", rowIndex].Value, "", false),
+ rowIndex == 0)))
+ DataGridView1["ColumnFMFreq", rowIndex].Value = "100.70000";
+ RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ ComboBoxFM信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void DataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = DataGridView2.CurrentCell.RowIndex;
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView2["ColumnAMFreq", rowIndex].Value, "", false))
+ DataGridView2["ColumnAMFreq", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(JudgeInputAMFreq(Conversions.ToString(DataGridView2["ColumnAMFreq", rowIndex].Value)));
+ if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView2["ColumnAMFreq", rowIndex].Value, "", false),
+ rowIndex == 0)))
+ DataGridView2["ColumnAMFreq", rowIndex].Value = "21.70000";
+ RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ ComboBoxAM信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void DataGridView3_CellEndEdit(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = DataGridView3.CurrentCell.RowIndex;
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView3["ColumnAIRFreq", rowIndex].Value, "", false))
+ DataGridView3["ColumnAIRFreq", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(JudgeInputAIRFreq(Conversions.ToString(DataGridView3["ColumnAIRFreq", rowIndex].Value), 11850000,
+ 13400000));
+ if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectEqual(DataGridView3["ColumnAIRFreq", rowIndex].Value, "", false),
+ rowIndex == 0)))
+ DataGridView3["ColumnAIRFreq", rowIndex].Value = "118.50000";
+ RadioMsgForm_Deactivate(RuntimeHelpers.GetObjectValue(sender), e);
+ ComboBoxAIR信道号_SelectionChangeCommitted(RuntimeHelpers.GetObjectValue(sender), e);
+ }
+
+ private void DataGridView1_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
+ {
+ if (DataGridView1.CurrentCell.ColumnIndex != DataGridView1["ColumnFMFreq", 0].ColumnIndex)
+ return;
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ e.Control.KeyPress += Cells_KeyPress;
+ }
+
+ private void DataGridView2_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
+ {
+ if (DataGridView2.CurrentCell.ColumnIndex != DataGridView2["ColumnAMFreq", 0].ColumnIndex)
+ return;
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ e.Control.KeyPress += Cells_KeyPress;
+ }
+
+ private void DataGridView3_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
+ {
+ if (DataGridView3.CurrentCell.ColumnIndex != DataGridView3["ColumnAIRFreq", 0].ColumnIndex)
+ return;
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ e.Control.KeyPress += Cells_KeyPress;
+ }
+
+ private void Cells_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ e.Handled = false;
+ else
+ e.Handled = true;
+ }
+
+ private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var strArray = new string[1] {"搜台"};
+ var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
+ var num = 11;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
+ {
+ strArray[0] = "VFO";
+ num = 7;
+ }
+
+ if (e.RowIndex == 0)
+ e.Graphics.DrawString(strArray[0], DataGridView1.DefaultCellStyle.Font, brush,
+ e.RowBounds.Location.X + checked(DataGridView1.RowHeadersWidth - strArray[0].Length * num) / 2f,
+ checked(e.RowBounds.Location.Y + 5));
+ else
+ e.Graphics.DrawString(checked(e.RowIndex - 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X +
+ checked(DataGridView1.RowHeadersWidth - (e.RowIndex - 1).ToString()
+ .Length * 8) / 2f, checked(e.RowBounds.Location.Y + 5));
+ }
+
+ private void DataGridView2_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var strArray = new string[1] {"搜台"};
+ var brush = (Brush) new SolidBrush(DataGridView2.RowHeadersDefaultCellStyle.ForeColor);
+ var num = 11;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
+ {
+ strArray[0] = "VFO";
+ num = 7;
+ }
+
+ if (e.RowIndex == 0)
+ e.Graphics.DrawString(strArray[0], DataGridView2.DefaultCellStyle.Font, brush,
+ e.RowBounds.Location.X + checked(DataGridView2.RowHeadersWidth - strArray[0].Length * num) / 2f,
+ checked(e.RowBounds.Location.Y + 5));
+ else
+ e.Graphics.DrawString(checked(e.RowIndex - 1).ToString(), DataGridView2.DefaultCellStyle.Font, brush, e.RowBounds.Location.X +
+ checked(DataGridView2.RowHeadersWidth - (e.RowIndex - 1).ToString()
+ .Length * 8) / 2f, checked(e.RowBounds.Location.Y + 5));
+ }
+
+ private void DataGridView3_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var strArray = new string[1] {"搜台"};
+ var brush = (Brush) new SolidBrush(DataGridView3.RowHeadersDefaultCellStyle.ForeColor);
+ var num = 11;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) != 0)
+ {
+ strArray[0] = "VFO";
+ num = 7;
+ }
+
+ if (e.RowIndex == 0)
+ e.Graphics.DrawString(strArray[0], DataGridView3.DefaultCellStyle.Font, brush,
+ e.RowBounds.Location.X + checked(DataGridView3.RowHeadersWidth - strArray[0].Length * num) / 2f,
+ checked(e.RowBounds.Location.Y + 5));
+ else
+ e.Graphics.DrawString(checked(e.RowIndex - 1).ToString(), DataGridView3.DefaultCellStyle.Font, brush, e.RowBounds.Location.X +
+ checked(DataGridView3.RowHeadersWidth - (e.RowIndex - 1).ToString()
+ .Length * 8) / 2f, checked(e.RowBounds.Location.Y + 5));
+ }
+
+ public object JudgeInputFMFreq(string StrFreq, int Min, int Max)
+ {
+ string str;
+ try
+ {
+ var num1 = checked((uint) Math.Round(unchecked(Conversions.ToDouble(StrFreq) * 100000.0)));
+ if (Max >= num1 & num1 >= Min)
+ {
+ if (num1 % 5000L != 0L)
+ {
+ var num2 = checked((int) unchecked(num1 / 5000L));
+ if (num1 % 5000L > 10000L)
+ checked
+ {
+ ++num2;
+ }
+
+ num1 = checked((uint) (num2 * 5000));
+ }
+
+ str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range,out of range");
+ str = "";
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range,out of range");
+ str = "";
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
+ }
+
+ public object JudgeInputAIRFreq(string StrFreq, int Min, int Max)
+ {
+ string str;
+ try
+ {
+ var num1 = checked((int) Math.Round(unchecked(Conversions.ToDouble(StrFreq) * 100000.0)));
+ if (Max >= num1 & num1 >= Min)
+ {
+ if (num1 % 500 != 0 && num1 % 625 != 0)
+ {
+ var num2 = num1;
+ var num3 = num2 / 625;
+ if (num2 % 625 > 1250)
+ checked
+ {
+ ++num3;
+ }
+
+ var num4 = checked(num3 * 625);
+ var num5 = num1;
+ var num6 = num5 / 500;
+ if (num5 % 500 > 1000)
+ checked
+ {
+ ++num6;
+ }
+
+ var num7 = checked(num6 * 500);
+ num1 = Math.Abs(checked(num4 - num1)) <= Math.Abs(checked(num7 - num1)) ? num4 : num7;
+ }
+
+ str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range");
+ str = "";
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range");
+ str = "";
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
+ }
+
+ public object Get_AMFreqRangID(double Freq)
+ {
+ var num1 = checked((uint) Math.Round(unchecked(Freq * 100000.0)));
+ var num2 = checked((uint) Information.UBound(publicva.AMFreqRang));
+ uint amFreqRangId = 0;
+ while (amFreqRangId <= num2)
+ {
+ if (publicva.AMFreqRang[checked((int) amFreqRangId), 1] >= num1 & num1 >= publicva.AMFreqRang[checked((int) amFreqRangId), 0])
+ return amFreqRangId;
+ checked
+ {
+ ++amFreqRangId;
+ }
+ }
+
+ return -1;
+ }
+
+ public object JudgeInputAMFreq(string StrFreq)
+ {
+ string str;
+ try
+ {
+ var Freq = Conversions.ToDouble(StrFreq);
+ if (Conversions.ToInteger(Get_AMFreqRangID(Freq)) != -1)
+ {
+ var num1 = checked((uint) Math.Round(unchecked(Freq * 100000.0)));
+ if (num1 % 100L != 0L)
+ {
+ var num2 = checked((int) unchecked(num1 / 100L));
+ if (num1 % 100L > 200L)
+ checked
+ {
+ ++num2;
+ }
+
+ num1 = checked((uint) (num2 * 100));
+ }
+
+ str = string.Format("{0:##0.00000}", num1 / 100000.0);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range");
+ str = "";
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range");
+ str = "";
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
+ }
+
+ public object Get_Freq(int Address, int Min, int Max)
+ {
+ var num = checked((publicva.EEPROM_Byte[Address + 0] & 240) >> 4 * 10000000) +
+ (double) checked(publicva.EEPROM_Byte[Address + 0] & 15 * 1000000) +
+ checked((publicva.EEPROM_Byte[Address + 1] & 240) >> 4 * 100000) + checked(publicva.EEPROM_Byte[Address + 1] & 15 * 10000) +
+ checked((publicva.EEPROM_Byte[Address + 2] & 240) >> 4 * 1000) + checked(publicva.EEPROM_Byte[Address + 2] & 15 * 100) +
+ checked((publicva.EEPROM_Byte[Address + 3] & 240) >> 4 * 10) + checked(publicva.EEPROM_Byte[Address + 3] & 15 * 1);
+ return !(Max >= num & num >= Min) ? "" : (object) string.Format("{0:##0.00000}", num / 100000.0);
+ }
+
+ public object Get_AMFreq(int Address)
+ {
+ var num = checked((publicva.EEPROM_Byte[Address + 0] & 240) >> 4 * 10000000) +
+ (double) checked(publicva.EEPROM_Byte[Address + 0] & 15 * 1000000) +
+ checked((publicva.EEPROM_Byte[Address + 1] & 240) >> 4 * 100000) + checked(publicva.EEPROM_Byte[Address + 1] & 15 * 10000) +
+ checked((publicva.EEPROM_Byte[Address + 2] & 240) >> 4 * 1000) + checked(publicva.EEPROM_Byte[Address + 2] & 15 * 100) + 0.0 +
+ 0.0;
+ return !(publicva.AMFreqRang[publicva.EEPROM_Byte[checked(Address + 3)], 1] >= num &
+ num >= publicva.AMFreqRang[publicva.EEPROM_Byte[checked(Address + 3)], 0])
+ ? ""
+ : (object) string.Format("{0:##0.00000}", num / 100000.0);
+ }
+
+ public void Set_Freq(int Address, string Temp_Value)
+ {
+ uint num;
+ try
+ {
+ num = checked((uint) Math.Round(unchecked(Convert.ToDouble(Temp_Value) * 1000000.0)));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ num = 0U;
+ ProjectData.ClearProjectError();
+ }
+
+ publicva.EEPROM_Byte[checked(Address + 0)] = Conversions.ToByte("&h" + Conversions.ToString(num / 10000000L));
+ publicva.EEPROM_Byte[checked(Address + 1)] = Conversions.ToByte("&h" + Conversions.ToString(num / 100000L % 100L));
+ publicva.EEPROM_Byte[checked(Address + 2)] = Conversions.ToByte("&h" + Conversions.ToString(num / 1000L % 100L));
+ publicva.EEPROM_Byte[checked(Address + 3)] = Conversions.ToByte("&h" + Conversions.ToString(num % 1000L / 10L));
+ }
+
+ private void Button1_Click(object sender, EventArgs e) => Close();
+
+ private void ComboBoxAM信道号_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
+ return;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAM信道号, checked(3952 + 8), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAM信道号.SelectedIndex, 7824))
+ ComboBoxAM信道号.SelectedIndex = 0;
+ }
+
+ private void ComboBoxFM信道号_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
+ return;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxFM信道号, checked(3952 + 7), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxFM信道号.SelectedIndex, 7840))
+ ComboBoxFM信道号.SelectedIndex = 0;
+ }
+
+ private void ComboBoxAIR信道号_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
+ return;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBoxAIR信道号, checked(3952 + 6), publicva.AllBit, 0);
+ if (!MyProject.Forms.ChannelMsg.CHStatus_Read(ComboBoxAIR信道号.SelectedIndex, 7856))
+ ComboBoxAIR信道号.SelectedIndex = 0;
+ }
}
- }
-}
+}
\ No newline at end of file
diff --git a/HPG-68D/SOSMsgForm.cs b/HPG-68D/SOSMsgForm.cs
index 2963e03..f79b875 100644
--- a/HPG-68D/SOSMsgForm.cs
+++ b/HPG-68D/SOSMsgForm.cs
@@ -10,7 +10,6 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
diff --git a/HPG-68D/ScanFuncMsgForm.cs b/HPG-68D/ScanFuncMsgForm.cs
index fb0fa7b..2996fe5 100644
--- a/HPG-68D/ScanFuncMsgForm.cs
+++ b/HPG-68D/ScanFuncMsgForm.cs
@@ -10,7 +10,6 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
diff --git a/HPG-68D/TypeFuncMsgForm.cs b/HPG-68D/TypeFuncMsgForm.cs
index 06aeb43..714c6fb 100644
--- a/HPG-68D/TypeFuncMsgForm.cs
+++ b/HPG-68D/TypeFuncMsgForm.cs
@@ -10,7 +10,6 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
diff --git a/HPG-68D/TypeMsgForm.cs b/HPG-68D/TypeMsgForm.cs
index 3bed0e9..75e5dc7 100644
--- a/HPG-68D/TypeMsgForm.cs
+++ b/HPG-68D/TypeMsgForm.cs
@@ -9,7 +9,6 @@ using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
-using System.Drawing;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
diff --git a/HPG-68D/_2ToneForm.cs b/HPG-68D/_2ToneForm.cs
index 8d6ddd1..35383e8 100644
--- a/HPG-68D/_2ToneForm.cs
+++ b/HPG-68D/_2ToneForm.cs
@@ -16,9446 +16,9276 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class _2ToneForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("TabControl1")]
- private TabControl _TabControl1;
- [AccessedThroughProperty("TabPage1")]
- private TabPage _TabPage1;
- [AccessedThroughProperty("DataGridView1")]
- private DataGridView _DataGridView1;
- [AccessedThroughProperty("TabPage2")]
- private TabPage _TabPage2;
- [AccessedThroughProperty("TabControl2")]
- private TabControl _TabControl2;
- [AccessedThroughProperty("TabPage3")]
- private TabPage _TabPage3;
- [AccessedThroughProperty("GroupBox1")]
- private GroupBox _GroupBox1;
- [AccessedThroughProperty("ComboBox两音的组合方式1_1")]
- private ComboBox _ComboBox两音的组合方式1_1;
- [AccessedThroughProperty("Label2")]
- private Label _Label2;
- [AccessedThroughProperty("TabPage4")]
- private TabPage _TabPage4;
- [AccessedThroughProperty("TabPage5")]
- private TabPage _TabPage5;
- [AccessedThroughProperty("TabPage6")]
- private TabPage _TabPage6;
- [AccessedThroughProperty("TabPage7")]
- private TabPage _TabPage7;
- [AccessedThroughProperty("TabPage8")]
- private TabPage _TabPage8;
- [AccessedThroughProperty("TabPage9")]
- private TabPage _TabPage9;
- [AccessedThroughProperty("TabPage10")]
- private TabPage _TabPage10;
- [AccessedThroughProperty("ComboBox提示音1_1")]
- private ComboBox _ComboBox提示音1_1;
- [AccessedThroughProperty("Label4")]
- private Label _Label4;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式1_1")]
- private ComboBox _ComboBox解开两音后的响应方式1_1;
- [AccessedThroughProperty("Label3")]
- private Label _Label3;
- [AccessedThroughProperty("GroupBox4")]
- private GroupBox _GroupBox4;
- [AccessedThroughProperty("ComboBox提示音1_4")]
- private ComboBox _ComboBox提示音1_4;
- [AccessedThroughProperty("Label11")]
- private Label _Label11;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式1_4")]
- private ComboBox _ComboBox解开两音后的响应方式1_4;
- [AccessedThroughProperty("Label12")]
- private Label _Label12;
- [AccessedThroughProperty("ComboBox两音的组合方式1_4")]
- private ComboBox _ComboBox两音的组合方式1_4;
- [AccessedThroughProperty("Label13")]
- private Label _Label13;
- [AccessedThroughProperty("GroupBox3")]
- private GroupBox _GroupBox3;
- [AccessedThroughProperty("ComboBox提示音1_3")]
- private ComboBox _ComboBox提示音1_3;
- [AccessedThroughProperty("Label8")]
- private Label _Label8;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式1_3")]
- private ComboBox _ComboBox解开两音后的响应方式1_3;
- [AccessedThroughProperty("Label9")]
- private Label _Label9;
- [AccessedThroughProperty("ComboBox两音的组合方式1_3")]
- private ComboBox _ComboBox两音的组合方式1_3;
- [AccessedThroughProperty("Label10")]
- private Label _Label10;
- [AccessedThroughProperty("GroupBox2")]
- private GroupBox _GroupBox2;
- [AccessedThroughProperty("ComboBox提示音1_2")]
- private ComboBox _ComboBox提示音1_2;
- [AccessedThroughProperty("Label5")]
- private Label _Label5;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式1_2")]
- private ComboBox _ComboBox解开两音后的响应方式1_2;
- [AccessedThroughProperty("Label6")]
- private Label _Label6;
- [AccessedThroughProperty("ComboBox两音的组合方式1_2")]
- private ComboBox _ComboBox两音的组合方式1_2;
- [AccessedThroughProperty("Label7")]
- private Label _Label7;
- [AccessedThroughProperty("NumericUpDown1_D")]
- private NumericUpDown _NumericUpDown1_D;
- [AccessedThroughProperty("NumericUpDown1_C")]
- private NumericUpDown _NumericUpDown1_C;
- [AccessedThroughProperty("NumericUpDown1_B")]
- private NumericUpDown _NumericUpDown1_B;
- [AccessedThroughProperty("Label18")]
- private Label _Label18;
- [AccessedThroughProperty("NumericUpDown1_A")]
- private NumericUpDown _NumericUpDown1_A;
- [AccessedThroughProperty("Label17")]
- private Label _Label17;
- [AccessedThroughProperty("Label16")]
- private Label _Label16;
- [AccessedThroughProperty("Label15")]
- private Label _Label15;
- [AccessedThroughProperty("TabPage11")]
- private TabPage _TabPage11;
- [AccessedThroughProperty("CheckBox空闲自动应答")]
- private CheckBox _CheckBox空闲自动应答;
- [AccessedThroughProperty("Label14")]
- private Label _Label14;
- [AccessedThroughProperty("CheckBox短哔音")]
- private CheckBox _CheckBox短哔音;
- [AccessedThroughProperty("CheckBox侧音")]
- private CheckBox _CheckBox侧音;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- [AccessedThroughProperty("Button3")]
- private Button _Button3;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("GroupBox5")]
- private GroupBox _GroupBox5;
- [AccessedThroughProperty("ComboBox提示音2_4")]
- private ComboBox _ComboBox提示音2_4;
- [AccessedThroughProperty("Label19")]
- private Label _Label19;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式2_4")]
- private ComboBox _ComboBox解开两音后的响应方式2_4;
- [AccessedThroughProperty("Label20")]
- private Label _Label20;
- [AccessedThroughProperty("ComboBox两音的组合方式2_4")]
- private ComboBox _ComboBox两音的组合方式2_4;
- [AccessedThroughProperty("Label21")]
- private Label _Label21;
- [AccessedThroughProperty("NumericUpDown2_D")]
- private NumericUpDown _NumericUpDown2_D;
- [AccessedThroughProperty("NumericUpDown2_C")]
- private NumericUpDown _NumericUpDown2_C;
- [AccessedThroughProperty("NumericUpDown2_B")]
- private NumericUpDown _NumericUpDown2_B;
- [AccessedThroughProperty("Label22")]
- private Label _Label22;
- [AccessedThroughProperty("NumericUpDown2_A")]
- private NumericUpDown _NumericUpDown2_A;
- [AccessedThroughProperty("Label23")]
- private Label _Label23;
- [AccessedThroughProperty("Label24")]
- private Label _Label24;
- [AccessedThroughProperty("Label25")]
- private Label _Label25;
- [AccessedThroughProperty("GroupBox6")]
- private GroupBox _GroupBox6;
- [AccessedThroughProperty("ComboBox提示音2_3")]
- private ComboBox _ComboBox提示音2_3;
- [AccessedThroughProperty("Label26")]
- private Label _Label26;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式2_3")]
- private ComboBox _ComboBox解开两音后的响应方式2_3;
- [AccessedThroughProperty("Label27")]
- private Label _Label27;
- [AccessedThroughProperty("ComboBox两音的组合方式2_3")]
- private ComboBox _ComboBox两音的组合方式2_3;
- [AccessedThroughProperty("Label28")]
- private Label _Label28;
- [AccessedThroughProperty("GroupBox7")]
- private GroupBox _GroupBox7;
- [AccessedThroughProperty("ComboBox提示音2_2")]
- private ComboBox _ComboBox提示音2_2;
- [AccessedThroughProperty("Label29")]
- private Label _Label29;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式2_2")]
- private ComboBox _ComboBox解开两音后的响应方式2_2;
- [AccessedThroughProperty("Label30")]
- private Label _Label30;
- [AccessedThroughProperty("ComboBox两音的组合方式2_2")]
- private ComboBox _ComboBox两音的组合方式2_2;
- [AccessedThroughProperty("Label31")]
- private Label _Label31;
- [AccessedThroughProperty("GroupBox8")]
- private GroupBox _GroupBox8;
- [AccessedThroughProperty("ComboBox提示音2_1")]
- private ComboBox _ComboBox提示音2_1;
- [AccessedThroughProperty("Label32")]
- private Label _Label32;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式2_1")]
- private ComboBox _ComboBox解开两音后的响应方式2_1;
- [AccessedThroughProperty("Label33")]
- private Label _Label33;
- [AccessedThroughProperty("ComboBox两音的组合方式2_1")]
- private ComboBox _ComboBox两音的组合方式2_1;
- [AccessedThroughProperty("Label34")]
- private Label _Label34;
- [AccessedThroughProperty("GroupBox9")]
- private GroupBox _GroupBox9;
- [AccessedThroughProperty("ComboBox提示音3_4")]
- private ComboBox _ComboBox提示音3_4;
- [AccessedThroughProperty("Label35")]
- private Label _Label35;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式3_4")]
- private ComboBox _ComboBox解开两音后的响应方式3_4;
- [AccessedThroughProperty("Label36")]
- private Label _Label36;
- [AccessedThroughProperty("ComboBox两音的组合方式3_4")]
- private ComboBox _ComboBox两音的组合方式3_4;
- [AccessedThroughProperty("Label37")]
- private Label _Label37;
- [AccessedThroughProperty("NumericUpDown3_D")]
- private NumericUpDown _NumericUpDown3_D;
- [AccessedThroughProperty("NumericUpDown3_C")]
- private NumericUpDown _NumericUpDown3_C;
- [AccessedThroughProperty("NumericUpDown3_B")]
- private NumericUpDown _NumericUpDown3_B;
- [AccessedThroughProperty("Label38")]
- private Label _Label38;
- [AccessedThroughProperty("NumericUpDown3_A")]
- private NumericUpDown _NumericUpDown3_A;
- [AccessedThroughProperty("Label39")]
- private Label _Label39;
- [AccessedThroughProperty("Label40")]
- private Label _Label40;
- [AccessedThroughProperty("Label41")]
- private Label _Label41;
- [AccessedThroughProperty("GroupBox10")]
- private GroupBox _GroupBox10;
- [AccessedThroughProperty("ComboBox提示音3_3")]
- private ComboBox _ComboBox提示音3_3;
- [AccessedThroughProperty("Label42")]
- private Label _Label42;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式3_3")]
- private ComboBox _ComboBox解开两音后的响应方式3_3;
- [AccessedThroughProperty("Label43")]
- private Label _Label43;
- [AccessedThroughProperty("ComboBox两音的组合方式3_3")]
- private ComboBox _ComboBox两音的组合方式3_3;
- [AccessedThroughProperty("Label44")]
- private Label _Label44;
- [AccessedThroughProperty("GroupBox11")]
- private GroupBox _GroupBox11;
- [AccessedThroughProperty("ComboBox提示音3_2")]
- private ComboBox _ComboBox提示音3_2;
- [AccessedThroughProperty("Label45")]
- private Label _Label45;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式3_2")]
- private ComboBox _ComboBox解开两音后的响应方式3_2;
- [AccessedThroughProperty("Label46")]
- private Label _Label46;
- [AccessedThroughProperty("ComboBox两音的组合方式3_2")]
- private ComboBox _ComboBox两音的组合方式3_2;
- [AccessedThroughProperty("Label47")]
- private Label _Label47;
- [AccessedThroughProperty("GroupBox12")]
- private GroupBox _GroupBox12;
- [AccessedThroughProperty("ComboBox提示音3_1")]
- private ComboBox _ComboBox提示音3_1;
- [AccessedThroughProperty("Label48")]
- private Label _Label48;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式3_1")]
- private ComboBox _ComboBox解开两音后的响应方式3_1;
- [AccessedThroughProperty("Label49")]
- private Label _Label49;
- [AccessedThroughProperty("ComboBox两音的组合方式3_1")]
- private ComboBox _ComboBox两音的组合方式3_1;
- [AccessedThroughProperty("Label50")]
- private Label _Label50;
- [AccessedThroughProperty("GroupBox13")]
- private GroupBox _GroupBox13;
- [AccessedThroughProperty("ComboBox提示音4_4")]
- private ComboBox _ComboBox提示音4_4;
- [AccessedThroughProperty("Label51")]
- private Label _Label51;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式4_4")]
- private ComboBox _ComboBox解开两音后的响应方式4_4;
- [AccessedThroughProperty("Label52")]
- private Label _Label52;
- [AccessedThroughProperty("ComboBox两音的组合方式4_4")]
- private ComboBox _ComboBox两音的组合方式4_4;
- [AccessedThroughProperty("Label53")]
- private Label _Label53;
- [AccessedThroughProperty("NumericUpDown4_D")]
- private NumericUpDown _NumericUpDown4_D;
- [AccessedThroughProperty("NumericUpDown4_C")]
- private NumericUpDown _NumericUpDown4_C;
- [AccessedThroughProperty("NumericUpDown4_B")]
- private NumericUpDown _NumericUpDown4_B;
- [AccessedThroughProperty("Label54")]
- private Label _Label54;
- [AccessedThroughProperty("NumericUpDown4_A")]
- private NumericUpDown _NumericUpDown4_A;
- [AccessedThroughProperty("Label55")]
- private Label _Label55;
- [AccessedThroughProperty("Label56")]
- private Label _Label56;
- [AccessedThroughProperty("Label57")]
- private Label _Label57;
- [AccessedThroughProperty("GroupBox14")]
- private GroupBox _GroupBox14;
- [AccessedThroughProperty("ComboBox提示音4_3")]
- private ComboBox _ComboBox提示音4_3;
- [AccessedThroughProperty("Label58")]
- private Label _Label58;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式4_3")]
- private ComboBox _ComboBox解开两音后的响应方式4_3;
- [AccessedThroughProperty("Label59")]
- private Label _Label59;
- [AccessedThroughProperty("ComboBox两音的组合方式4_3")]
- private ComboBox _ComboBox两音的组合方式4_3;
- [AccessedThroughProperty("Label60")]
- private Label _Label60;
- [AccessedThroughProperty("GroupBox15")]
- private GroupBox _GroupBox15;
- [AccessedThroughProperty("ComboBox提示音4_2")]
- private ComboBox _ComboBox提示音4_2;
- [AccessedThroughProperty("Label61")]
- private Label _Label61;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式4_2")]
- private ComboBox _ComboBox解开两音后的响应方式4_2;
- [AccessedThroughProperty("Label62")]
- private Label _Label62;
- [AccessedThroughProperty("ComboBox两音的组合方式4_2")]
- private ComboBox _ComboBox两音的组合方式4_2;
- [AccessedThroughProperty("Label63")]
- private Label _Label63;
- [AccessedThroughProperty("GroupBox16")]
- private GroupBox _GroupBox16;
- [AccessedThroughProperty("ComboBox提示音4_1")]
- private ComboBox _ComboBox提示音4_1;
- [AccessedThroughProperty("Label64")]
- private Label _Label64;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式4_1")]
- private ComboBox _ComboBox解开两音后的响应方式4_1;
- [AccessedThroughProperty("Label65")]
- private Label _Label65;
- [AccessedThroughProperty("ComboBox两音的组合方式4_1")]
- private ComboBox _ComboBox两音的组合方式4_1;
- [AccessedThroughProperty("Label66")]
- private Label _Label66;
- [AccessedThroughProperty("GroupBox17")]
- private GroupBox _GroupBox17;
- [AccessedThroughProperty("ComboBox提示音5_4")]
- private ComboBox _ComboBox提示音5_4;
- [AccessedThroughProperty("Label70")]
- private Label _Label70;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式5_4")]
- private ComboBox _ComboBox解开两音后的响应方式5_4;
- [AccessedThroughProperty("Label71")]
- private Label _Label71;
- [AccessedThroughProperty("ComboBox两音的组合方式5_4")]
- private ComboBox _ComboBox两音的组合方式5_4;
- [AccessedThroughProperty("Label72")]
- private Label _Label72;
- [AccessedThroughProperty("NumericUpDown5_D")]
- private NumericUpDown _NumericUpDown5_D;
- [AccessedThroughProperty("NumericUpDown5_C")]
- private NumericUpDown _NumericUpDown5_C;
- [AccessedThroughProperty("NumericUpDown5_B")]
- private NumericUpDown _NumericUpDown5_B;
- [AccessedThroughProperty("Label73")]
- private Label _Label73;
- [AccessedThroughProperty("NumericUpDown5_A")]
- private NumericUpDown _NumericUpDown5_A;
- [AccessedThroughProperty("Label83")]
- private Label _Label83;
- [AccessedThroughProperty("Label84")]
- private Label _Label84;
- [AccessedThroughProperty("Label85")]
- private Label _Label85;
- [AccessedThroughProperty("GroupBox18")]
- private GroupBox _GroupBox18;
- [AccessedThroughProperty("ComboBox提示音5_3")]
- private ComboBox _ComboBox提示音5_3;
- [AccessedThroughProperty("Label86")]
- private Label _Label86;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式5_3")]
- private ComboBox _ComboBox解开两音后的响应方式5_3;
- [AccessedThroughProperty("Label87")]
- private Label _Label87;
- [AccessedThroughProperty("ComboBox两音的组合方式5_3")]
- private ComboBox _ComboBox两音的组合方式5_3;
- [AccessedThroughProperty("Label88")]
- private Label _Label88;
- [AccessedThroughProperty("GroupBox19")]
- private GroupBox _GroupBox19;
- [AccessedThroughProperty("ComboBox提示音5_2")]
- private ComboBox _ComboBox提示音5_2;
- [AccessedThroughProperty("Label89")]
- private Label _Label89;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式5_2")]
- private ComboBox _ComboBox解开两音后的响应方式5_2;
- [AccessedThroughProperty("Label90")]
- private Label _Label90;
- [AccessedThroughProperty("ComboBox两音的组合方式5_2")]
- private ComboBox _ComboBox两音的组合方式5_2;
- [AccessedThroughProperty("Label91")]
- private Label _Label91;
- [AccessedThroughProperty("GroupBox20")]
- private GroupBox _GroupBox20;
- [AccessedThroughProperty("ComboBox提示音5_1")]
- private ComboBox _ComboBox提示音5_1;
- [AccessedThroughProperty("Label92")]
- private Label _Label92;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式5_1")]
- private ComboBox _ComboBox解开两音后的响应方式5_1;
- [AccessedThroughProperty("Label93")]
- private Label _Label93;
- [AccessedThroughProperty("ComboBox两音的组合方式5_1")]
- private ComboBox _ComboBox两音的组合方式5_1;
- [AccessedThroughProperty("Label94")]
- private Label _Label94;
- [AccessedThroughProperty("GroupBox21")]
- private GroupBox _GroupBox21;
- [AccessedThroughProperty("ComboBox提示音6_4")]
- private ComboBox _ComboBox提示音6_4;
- [AccessedThroughProperty("Label95")]
- private Label _Label95;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式6_4")]
- private ComboBox _ComboBox解开两音后的响应方式6_4;
- [AccessedThroughProperty("Label96")]
- private Label _Label96;
- [AccessedThroughProperty("ComboBox两音的组合方式6_4")]
- private ComboBox _ComboBox两音的组合方式6_4;
- [AccessedThroughProperty("Label97")]
- private Label _Label97;
- [AccessedThroughProperty("NumericUpDown6_D")]
- private NumericUpDown _NumericUpDown6_D;
- [AccessedThroughProperty("NumericUpDown6_C")]
- private NumericUpDown _NumericUpDown6_C;
- [AccessedThroughProperty("NumericUpDown6_B")]
- private NumericUpDown _NumericUpDown6_B;
- [AccessedThroughProperty("Label98")]
- private Label _Label98;
- [AccessedThroughProperty("NumericUpDown6_A")]
- private NumericUpDown _NumericUpDown6_A;
- [AccessedThroughProperty("Label99")]
- private Label _Label99;
- [AccessedThroughProperty("Label100")]
- private Label _Label100;
- [AccessedThroughProperty("Label101")]
- private Label _Label101;
- [AccessedThroughProperty("GroupBox22")]
- private GroupBox _GroupBox22;
- [AccessedThroughProperty("ComboBox提示音6_3")]
- private ComboBox _ComboBox提示音6_3;
- [AccessedThroughProperty("Label102")]
- private Label _Label102;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式6_3")]
- private ComboBox _ComboBox解开两音后的响应方式6_3;
- [AccessedThroughProperty("Label103")]
- private Label _Label103;
- [AccessedThroughProperty("ComboBox两音的组合方式6_3")]
- private ComboBox _ComboBox两音的组合方式6_3;
- [AccessedThroughProperty("Label104")]
- private Label _Label104;
- [AccessedThroughProperty("GroupBox23")]
- private GroupBox _GroupBox23;
- [AccessedThroughProperty("ComboBox提示音6_2")]
- private ComboBox _ComboBox提示音6_2;
- [AccessedThroughProperty("Label105")]
- private Label _Label105;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式6_2")]
- private ComboBox _ComboBox解开两音后的响应方式6_2;
- [AccessedThroughProperty("Label106")]
- private Label _Label106;
- [AccessedThroughProperty("ComboBox两音的组合方式6_2")]
- private ComboBox _ComboBox两音的组合方式6_2;
- [AccessedThroughProperty("Label107")]
- private Label _Label107;
- [AccessedThroughProperty("GroupBox24")]
- private GroupBox _GroupBox24;
- [AccessedThroughProperty("ComboBox提示音6_1")]
- private ComboBox _ComboBox提示音6_1;
- [AccessedThroughProperty("Label108")]
- private Label _Label108;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式6_1")]
- private ComboBox _ComboBox解开两音后的响应方式6_1;
- [AccessedThroughProperty("Label109")]
- private Label _Label109;
- [AccessedThroughProperty("ComboBox两音的组合方式6_1")]
- private ComboBox _ComboBox两音的组合方式6_1;
- [AccessedThroughProperty("Label110")]
- private Label _Label110;
- [AccessedThroughProperty("GroupBox25")]
- private GroupBox _GroupBox25;
- [AccessedThroughProperty("ComboBox提示音7_4")]
- private ComboBox _ComboBox提示音7_4;
- [AccessedThroughProperty("Label111")]
- private Label _Label111;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式7_4")]
- private ComboBox _ComboBox解开两音后的响应方式7_4;
- [AccessedThroughProperty("Label112")]
- private Label _Label112;
- [AccessedThroughProperty("ComboBox两音的组合方式7_4")]
- private ComboBox _ComboBox两音的组合方式7_4;
- [AccessedThroughProperty("Label113")]
- private Label _Label113;
- [AccessedThroughProperty("NumericUpDown7_D")]
- private NumericUpDown _NumericUpDown7_D;
- [AccessedThroughProperty("NumericUpDown7_C")]
- private NumericUpDown _NumericUpDown7_C;
- [AccessedThroughProperty("NumericUpDown7_B")]
- private NumericUpDown _NumericUpDown7_B;
- [AccessedThroughProperty("Label114")]
- private Label _Label114;
- [AccessedThroughProperty("NumericUpDown7_A")]
- private NumericUpDown _NumericUpDown7_A;
- [AccessedThroughProperty("Label115")]
- private Label _Label115;
- [AccessedThroughProperty("Label116")]
- private Label _Label116;
- [AccessedThroughProperty("Label117")]
- private Label _Label117;
- [AccessedThroughProperty("GroupBox26")]
- private GroupBox _GroupBox26;
- [AccessedThroughProperty("ComboBox提示音7_3")]
- private ComboBox _ComboBox提示音7_3;
- [AccessedThroughProperty("Label118")]
- private Label _Label118;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式7_3")]
- private ComboBox _ComboBox解开两音后的响应方式7_3;
- [AccessedThroughProperty("Label119")]
- private Label _Label119;
- [AccessedThroughProperty("ComboBox两音的组合方式7_3")]
- private ComboBox _ComboBox两音的组合方式7_3;
- [AccessedThroughProperty("Label120")]
- private Label _Label120;
- [AccessedThroughProperty("GroupBox27")]
- private GroupBox _GroupBox27;
- [AccessedThroughProperty("ComboBox提示音7_2")]
- private ComboBox _ComboBox提示音7_2;
- [AccessedThroughProperty("Label121")]
- private Label _Label121;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式7_2")]
- private ComboBox _ComboBox解开两音后的响应方式7_2;
- [AccessedThroughProperty("Label122")]
- private Label _Label122;
- [AccessedThroughProperty("ComboBox两音的组合方式7_2")]
- private ComboBox _ComboBox两音的组合方式7_2;
- [AccessedThroughProperty("Label123")]
- private Label _Label123;
- [AccessedThroughProperty("GroupBox28")]
- private GroupBox _GroupBox28;
- [AccessedThroughProperty("ComboBox提示音7_1")]
- private ComboBox _ComboBox提示音7_1;
- [AccessedThroughProperty("Label124")]
- private Label _Label124;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式7_1")]
- private ComboBox _ComboBox解开两音后的响应方式7_1;
- [AccessedThroughProperty("Label125")]
- private Label _Label125;
- [AccessedThroughProperty("ComboBox两音的组合方式7_1")]
- private ComboBox _ComboBox两音的组合方式7_1;
- [AccessedThroughProperty("Label126")]
- private Label _Label126;
- [AccessedThroughProperty("GroupBox29")]
- private GroupBox _GroupBox29;
- [AccessedThroughProperty("ComboBox提示音8_4")]
- private ComboBox _ComboBox提示音8_4;
- [AccessedThroughProperty("Label127")]
- private Label _Label127;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式8_4")]
- private ComboBox _ComboBox解开两音后的响应方式8_4;
- [AccessedThroughProperty("Label128")]
- private Label _Label128;
- [AccessedThroughProperty("ComboBox两音的组合方式8_4")]
- private ComboBox _ComboBox两音的组合方式8_4;
- [AccessedThroughProperty("Label129")]
- private Label _Label129;
- [AccessedThroughProperty("NumericUpDown8_D")]
- private NumericUpDown _NumericUpDown8_D;
- [AccessedThroughProperty("NumericUpDown8_C")]
- private NumericUpDown _NumericUpDown8_C;
- [AccessedThroughProperty("NumericUpDown8_B")]
- private NumericUpDown _NumericUpDown8_B;
- [AccessedThroughProperty("Label130")]
- private Label _Label130;
- [AccessedThroughProperty("NumericUpDown8_A")]
- private NumericUpDown _NumericUpDown8_A;
- [AccessedThroughProperty("Label131")]
- private Label _Label131;
- [AccessedThroughProperty("Label132")]
- private Label _Label132;
- [AccessedThroughProperty("Label133")]
- private Label _Label133;
- [AccessedThroughProperty("GroupBox30")]
- private GroupBox _GroupBox30;
- [AccessedThroughProperty("ComboBox提示音8_3")]
- private ComboBox _ComboBox提示音8_3;
- [AccessedThroughProperty("Label134")]
- private Label _Label134;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式8_3")]
- private ComboBox _ComboBox解开两音后的响应方式8_3;
- [AccessedThroughProperty("Label135")]
- private Label _Label135;
- [AccessedThroughProperty("ComboBox两音的组合方式8_3")]
- private ComboBox _ComboBox两音的组合方式8_3;
- [AccessedThroughProperty("Label136")]
- private Label _Label136;
- [AccessedThroughProperty("GroupBox31")]
- private GroupBox _GroupBox31;
- [AccessedThroughProperty("ComboBox提示音8_2")]
- private ComboBox _ComboBox提示音8_2;
- [AccessedThroughProperty("Label137")]
- private Label _Label137;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式8_2")]
- private ComboBox _ComboBox解开两音后的响应方式8_2;
- [AccessedThroughProperty("Label138")]
- private Label _Label138;
- [AccessedThroughProperty("ComboBox两音的组合方式8_2")]
- private ComboBox _ComboBox两音的组合方式8_2;
- [AccessedThroughProperty("Label139")]
- private Label _Label139;
- [AccessedThroughProperty("GroupBox32")]
- private GroupBox _GroupBox32;
- [AccessedThroughProperty("ComboBox提示音8_1")]
- private ComboBox _ComboBox提示音8_1;
- [AccessedThroughProperty("Label140")]
- private Label _Label140;
- [AccessedThroughProperty("ComboBox解开两音后的响应方式8_1")]
- private ComboBox _ComboBox解开两音后的响应方式8_1;
- [AccessedThroughProperty("Label141")]
- private Label _Label141;
- [AccessedThroughProperty("ComboBox两音的组合方式8_1")]
- private ComboBox _ComboBox两音的组合方式8_1;
- [AccessedThroughProperty("Label142")]
- private Label _Label142;
- [AccessedThroughProperty("ComboBox37")]
- private ComboBox _ComboBox37;
- [AccessedThroughProperty("Label67")]
- private Label _Label67;
- [AccessedThroughProperty("ComboBox38")]
- private ComboBox _ComboBox38;
- [AccessedThroughProperty("Label68")]
- private Label _Label68;
- [AccessedThroughProperty("ComboBox39")]
- private ComboBox _ComboBox39;
- [AccessedThroughProperty("Label69")]
- private Label _Label69;
- [AccessedThroughProperty("ComboBox40")]
- private ComboBox _ComboBox40;
- [AccessedThroughProperty("Label74")]
- private Label _Label74;
- [AccessedThroughProperty("ComboBox41")]
- private ComboBox _ComboBox41;
- [AccessedThroughProperty("Label75")]
- private Label _Label75;
- [AccessedThroughProperty("ComboBox42")]
- private ComboBox _ComboBox42;
- [AccessedThroughProperty("Label76")]
- private Label _Label76;
- [AccessedThroughProperty("ComboBox43")]
- private ComboBox _ComboBox43;
- [AccessedThroughProperty("Label77")]
- private Label _Label77;
- [AccessedThroughProperty("ComboBox44")]
- private ComboBox _ComboBox44;
- [AccessedThroughProperty("Label78")]
- private Label _Label78;
- [AccessedThroughProperty("ComboBox45")]
- private ComboBox _ComboBox45;
- [AccessedThroughProperty("Label79")]
- private Label _Label79;
- [AccessedThroughProperty("ComboBox46")]
- private ComboBox _ComboBox46;
- [AccessedThroughProperty("Label80")]
- private Label _Label80;
- [AccessedThroughProperty("ComboBox47")]
- private ComboBox _ComboBox47;
- [AccessedThroughProperty("Label81")]
- private Label _Label81;
- [AccessedThroughProperty("ComboBox48")]
- private ComboBox _ComboBox48;
- [AccessedThroughProperty("Label82")]
- private Label _Label82;
- [AccessedThroughProperty("ComboBox自动复位时间")]
- private ComboBox _ComboBox自动复位时间;
- [AccessedThroughProperty("ComboBox预载波时间")]
- private ComboBox _ComboBox预载波时间;
- [AccessedThroughProperty("Column第一个音频率")]
- private DataGridViewTextBoxColumn _Column第一个音频率;
- [AccessedThroughProperty("Column第二个音频率")]
- private DataGridViewTextBoxColumn _Column第二个音频率;
- [AccessedThroughProperty("Column第一个音持续时间")]
- private DataGridViewComboBoxColumn _Column第一个音持续时间;
- [AccessedThroughProperty("Column第二个音持续时间")]
- private DataGridViewComboBoxColumn _Column第二个音持续时间;
- [AccessedThroughProperty("Column音频间隔时间")]
- private DataGridViewComboBoxColumn _Column音频间隔时间;
- [AccessedThroughProperty("Column长音持续时间")]
- private DataGridViewComboBoxColumn _Column长音持续时间;
- [AccessedThroughProperty("Column别名")]
- private DataGridViewTextBoxColumn _Column别名;
-
- [DebuggerNonUserCode]
- static _2ToneForm()
+ [DesignerGenerated]
+ public class _2ToneForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("TabControl1")]
+ private TabControl _TabControl1;
+ [AccessedThroughProperty("TabPage1")]
+ private TabPage _TabPage1;
+ [AccessedThroughProperty("DataGridView1")]
+ private DataGridView _DataGridView1;
+ [AccessedThroughProperty("TabPage2")]
+ private TabPage _TabPage2;
+ [AccessedThroughProperty("TabControl2")]
+ private TabControl _TabControl2;
+ [AccessedThroughProperty("TabPage3")]
+ private TabPage _TabPage3;
+ [AccessedThroughProperty("GroupBox1")]
+ private GroupBox _GroupBox1;
+ [AccessedThroughProperty("ComboBox两音的组合方式1_1")]
+ private ComboBox _ComboBox两音的组合方式1_1;
+ [AccessedThroughProperty("Label2")]
+ private Label _Label2;
+ [AccessedThroughProperty("TabPage4")]
+ private TabPage _TabPage4;
+ [AccessedThroughProperty("TabPage5")]
+ private TabPage _TabPage5;
+ [AccessedThroughProperty("TabPage6")]
+ private TabPage _TabPage6;
+ [AccessedThroughProperty("TabPage7")]
+ private TabPage _TabPage7;
+ [AccessedThroughProperty("TabPage8")]
+ private TabPage _TabPage8;
+ [AccessedThroughProperty("TabPage9")]
+ private TabPage _TabPage9;
+ [AccessedThroughProperty("TabPage10")]
+ private TabPage _TabPage10;
+ [AccessedThroughProperty("ComboBox提示音1_1")]
+ private ComboBox _ComboBox提示音1_1;
+ [AccessedThroughProperty("Label4")]
+ private Label _Label4;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式1_1")]
+ private ComboBox _ComboBox解开两音后的响应方式1_1;
+ [AccessedThroughProperty("Label3")]
+ private Label _Label3;
+ [AccessedThroughProperty("GroupBox4")]
+ private GroupBox _GroupBox4;
+ [AccessedThroughProperty("ComboBox提示音1_4")]
+ private ComboBox _ComboBox提示音1_4;
+ [AccessedThroughProperty("Label11")]
+ private Label _Label11;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式1_4")]
+ private ComboBox _ComboBox解开两音后的响应方式1_4;
+ [AccessedThroughProperty("Label12")]
+ private Label _Label12;
+ [AccessedThroughProperty("ComboBox两音的组合方式1_4")]
+ private ComboBox _ComboBox两音的组合方式1_4;
+ [AccessedThroughProperty("Label13")]
+ private Label _Label13;
+ [AccessedThroughProperty("GroupBox3")]
+ private GroupBox _GroupBox3;
+ [AccessedThroughProperty("ComboBox提示音1_3")]
+ private ComboBox _ComboBox提示音1_3;
+ [AccessedThroughProperty("Label8")]
+ private Label _Label8;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式1_3")]
+ private ComboBox _ComboBox解开两音后的响应方式1_3;
+ [AccessedThroughProperty("Label9")]
+ private Label _Label9;
+ [AccessedThroughProperty("ComboBox两音的组合方式1_3")]
+ private ComboBox _ComboBox两音的组合方式1_3;
+ [AccessedThroughProperty("Label10")]
+ private Label _Label10;
+ [AccessedThroughProperty("GroupBox2")]
+ private GroupBox _GroupBox2;
+ [AccessedThroughProperty("ComboBox提示音1_2")]
+ private ComboBox _ComboBox提示音1_2;
+ [AccessedThroughProperty("Label5")]
+ private Label _Label5;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式1_2")]
+ private ComboBox _ComboBox解开两音后的响应方式1_2;
+ [AccessedThroughProperty("Label6")]
+ private Label _Label6;
+ [AccessedThroughProperty("ComboBox两音的组合方式1_2")]
+ private ComboBox _ComboBox两音的组合方式1_2;
+ [AccessedThroughProperty("Label7")]
+ private Label _Label7;
+ [AccessedThroughProperty("NumericUpDown1_D")]
+ private NumericUpDown _NumericUpDown1_D;
+ [AccessedThroughProperty("NumericUpDown1_C")]
+ private NumericUpDown _NumericUpDown1_C;
+ [AccessedThroughProperty("NumericUpDown1_B")]
+ private NumericUpDown _NumericUpDown1_B;
+ [AccessedThroughProperty("Label18")]
+ private Label _Label18;
+ [AccessedThroughProperty("NumericUpDown1_A")]
+ private NumericUpDown _NumericUpDown1_A;
+ [AccessedThroughProperty("Label17")]
+ private Label _Label17;
+ [AccessedThroughProperty("Label16")]
+ private Label _Label16;
+ [AccessedThroughProperty("Label15")]
+ private Label _Label15;
+ [AccessedThroughProperty("TabPage11")]
+ private TabPage _TabPage11;
+ [AccessedThroughProperty("CheckBox空闲自动应答")]
+ private CheckBox _CheckBox空闲自动应答;
+ [AccessedThroughProperty("Label14")]
+ private Label _Label14;
+ [AccessedThroughProperty("CheckBox短哔音")]
+ private CheckBox _CheckBox短哔音;
+ [AccessedThroughProperty("CheckBox侧音")]
+ private CheckBox _CheckBox侧音;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
+ [AccessedThroughProperty("Button3")]
+ private Button _Button3;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("GroupBox5")]
+ private GroupBox _GroupBox5;
+ [AccessedThroughProperty("ComboBox提示音2_4")]
+ private ComboBox _ComboBox提示音2_4;
+ [AccessedThroughProperty("Label19")]
+ private Label _Label19;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式2_4")]
+ private ComboBox _ComboBox解开两音后的响应方式2_4;
+ [AccessedThroughProperty("Label20")]
+ private Label _Label20;
+ [AccessedThroughProperty("ComboBox两音的组合方式2_4")]
+ private ComboBox _ComboBox两音的组合方式2_4;
+ [AccessedThroughProperty("Label21")]
+ private Label _Label21;
+ [AccessedThroughProperty("NumericUpDown2_D")]
+ private NumericUpDown _NumericUpDown2_D;
+ [AccessedThroughProperty("NumericUpDown2_C")]
+ private NumericUpDown _NumericUpDown2_C;
+ [AccessedThroughProperty("NumericUpDown2_B")]
+ private NumericUpDown _NumericUpDown2_B;
+ [AccessedThroughProperty("Label22")]
+ private Label _Label22;
+ [AccessedThroughProperty("NumericUpDown2_A")]
+ private NumericUpDown _NumericUpDown2_A;
+ [AccessedThroughProperty("Label23")]
+ private Label _Label23;
+ [AccessedThroughProperty("Label24")]
+ private Label _Label24;
+ [AccessedThroughProperty("Label25")]
+ private Label _Label25;
+ [AccessedThroughProperty("GroupBox6")]
+ private GroupBox _GroupBox6;
+ [AccessedThroughProperty("ComboBox提示音2_3")]
+ private ComboBox _ComboBox提示音2_3;
+ [AccessedThroughProperty("Label26")]
+ private Label _Label26;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式2_3")]
+ private ComboBox _ComboBox解开两音后的响应方式2_3;
+ [AccessedThroughProperty("Label27")]
+ private Label _Label27;
+ [AccessedThroughProperty("ComboBox两音的组合方式2_3")]
+ private ComboBox _ComboBox两音的组合方式2_3;
+ [AccessedThroughProperty("Label28")]
+ private Label _Label28;
+ [AccessedThroughProperty("GroupBox7")]
+ private GroupBox _GroupBox7;
+ [AccessedThroughProperty("ComboBox提示音2_2")]
+ private ComboBox _ComboBox提示音2_2;
+ [AccessedThroughProperty("Label29")]
+ private Label _Label29;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式2_2")]
+ private ComboBox _ComboBox解开两音后的响应方式2_2;
+ [AccessedThroughProperty("Label30")]
+ private Label _Label30;
+ [AccessedThroughProperty("ComboBox两音的组合方式2_2")]
+ private ComboBox _ComboBox两音的组合方式2_2;
+ [AccessedThroughProperty("Label31")]
+ private Label _Label31;
+ [AccessedThroughProperty("GroupBox8")]
+ private GroupBox _GroupBox8;
+ [AccessedThroughProperty("ComboBox提示音2_1")]
+ private ComboBox _ComboBox提示音2_1;
+ [AccessedThroughProperty("Label32")]
+ private Label _Label32;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式2_1")]
+ private ComboBox _ComboBox解开两音后的响应方式2_1;
+ [AccessedThroughProperty("Label33")]
+ private Label _Label33;
+ [AccessedThroughProperty("ComboBox两音的组合方式2_1")]
+ private ComboBox _ComboBox两音的组合方式2_1;
+ [AccessedThroughProperty("Label34")]
+ private Label _Label34;
+ [AccessedThroughProperty("GroupBox9")]
+ private GroupBox _GroupBox9;
+ [AccessedThroughProperty("ComboBox提示音3_4")]
+ private ComboBox _ComboBox提示音3_4;
+ [AccessedThroughProperty("Label35")]
+ private Label _Label35;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式3_4")]
+ private ComboBox _ComboBox解开两音后的响应方式3_4;
+ [AccessedThroughProperty("Label36")]
+ private Label _Label36;
+ [AccessedThroughProperty("ComboBox两音的组合方式3_4")]
+ private ComboBox _ComboBox两音的组合方式3_4;
+ [AccessedThroughProperty("Label37")]
+ private Label _Label37;
+ [AccessedThroughProperty("NumericUpDown3_D")]
+ private NumericUpDown _NumericUpDown3_D;
+ [AccessedThroughProperty("NumericUpDown3_C")]
+ private NumericUpDown _NumericUpDown3_C;
+ [AccessedThroughProperty("NumericUpDown3_B")]
+ private NumericUpDown _NumericUpDown3_B;
+ [AccessedThroughProperty("Label38")]
+ private Label _Label38;
+ [AccessedThroughProperty("NumericUpDown3_A")]
+ private NumericUpDown _NumericUpDown3_A;
+ [AccessedThroughProperty("Label39")]
+ private Label _Label39;
+ [AccessedThroughProperty("Label40")]
+ private Label _Label40;
+ [AccessedThroughProperty("Label41")]
+ private Label _Label41;
+ [AccessedThroughProperty("GroupBox10")]
+ private GroupBox _GroupBox10;
+ [AccessedThroughProperty("ComboBox提示音3_3")]
+ private ComboBox _ComboBox提示音3_3;
+ [AccessedThroughProperty("Label42")]
+ private Label _Label42;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式3_3")]
+ private ComboBox _ComboBox解开两音后的响应方式3_3;
+ [AccessedThroughProperty("Label43")]
+ private Label _Label43;
+ [AccessedThroughProperty("ComboBox两音的组合方式3_3")]
+ private ComboBox _ComboBox两音的组合方式3_3;
+ [AccessedThroughProperty("Label44")]
+ private Label _Label44;
+ [AccessedThroughProperty("GroupBox11")]
+ private GroupBox _GroupBox11;
+ [AccessedThroughProperty("ComboBox提示音3_2")]
+ private ComboBox _ComboBox提示音3_2;
+ [AccessedThroughProperty("Label45")]
+ private Label _Label45;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式3_2")]
+ private ComboBox _ComboBox解开两音后的响应方式3_2;
+ [AccessedThroughProperty("Label46")]
+ private Label _Label46;
+ [AccessedThroughProperty("ComboBox两音的组合方式3_2")]
+ private ComboBox _ComboBox两音的组合方式3_2;
+ [AccessedThroughProperty("Label47")]
+ private Label _Label47;
+ [AccessedThroughProperty("GroupBox12")]
+ private GroupBox _GroupBox12;
+ [AccessedThroughProperty("ComboBox提示音3_1")]
+ private ComboBox _ComboBox提示音3_1;
+ [AccessedThroughProperty("Label48")]
+ private Label _Label48;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式3_1")]
+ private ComboBox _ComboBox解开两音后的响应方式3_1;
+ [AccessedThroughProperty("Label49")]
+ private Label _Label49;
+ [AccessedThroughProperty("ComboBox两音的组合方式3_1")]
+ private ComboBox _ComboBox两音的组合方式3_1;
+ [AccessedThroughProperty("Label50")]
+ private Label _Label50;
+ [AccessedThroughProperty("GroupBox13")]
+ private GroupBox _GroupBox13;
+ [AccessedThroughProperty("ComboBox提示音4_4")]
+ private ComboBox _ComboBox提示音4_4;
+ [AccessedThroughProperty("Label51")]
+ private Label _Label51;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式4_4")]
+ private ComboBox _ComboBox解开两音后的响应方式4_4;
+ [AccessedThroughProperty("Label52")]
+ private Label _Label52;
+ [AccessedThroughProperty("ComboBox两音的组合方式4_4")]
+ private ComboBox _ComboBox两音的组合方式4_4;
+ [AccessedThroughProperty("Label53")]
+ private Label _Label53;
+ [AccessedThroughProperty("NumericUpDown4_D")]
+ private NumericUpDown _NumericUpDown4_D;
+ [AccessedThroughProperty("NumericUpDown4_C")]
+ private NumericUpDown _NumericUpDown4_C;
+ [AccessedThroughProperty("NumericUpDown4_B")]
+ private NumericUpDown _NumericUpDown4_B;
+ [AccessedThroughProperty("Label54")]
+ private Label _Label54;
+ [AccessedThroughProperty("NumericUpDown4_A")]
+ private NumericUpDown _NumericUpDown4_A;
+ [AccessedThroughProperty("Label55")]
+ private Label _Label55;
+ [AccessedThroughProperty("Label56")]
+ private Label _Label56;
+ [AccessedThroughProperty("Label57")]
+ private Label _Label57;
+ [AccessedThroughProperty("GroupBox14")]
+ private GroupBox _GroupBox14;
+ [AccessedThroughProperty("ComboBox提示音4_3")]
+ private ComboBox _ComboBox提示音4_3;
+ [AccessedThroughProperty("Label58")]
+ private Label _Label58;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式4_3")]
+ private ComboBox _ComboBox解开两音后的响应方式4_3;
+ [AccessedThroughProperty("Label59")]
+ private Label _Label59;
+ [AccessedThroughProperty("ComboBox两音的组合方式4_3")]
+ private ComboBox _ComboBox两音的组合方式4_3;
+ [AccessedThroughProperty("Label60")]
+ private Label _Label60;
+ [AccessedThroughProperty("GroupBox15")]
+ private GroupBox _GroupBox15;
+ [AccessedThroughProperty("ComboBox提示音4_2")]
+ private ComboBox _ComboBox提示音4_2;
+ [AccessedThroughProperty("Label61")]
+ private Label _Label61;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式4_2")]
+ private ComboBox _ComboBox解开两音后的响应方式4_2;
+ [AccessedThroughProperty("Label62")]
+ private Label _Label62;
+ [AccessedThroughProperty("ComboBox两音的组合方式4_2")]
+ private ComboBox _ComboBox两音的组合方式4_2;
+ [AccessedThroughProperty("Label63")]
+ private Label _Label63;
+ [AccessedThroughProperty("GroupBox16")]
+ private GroupBox _GroupBox16;
+ [AccessedThroughProperty("ComboBox提示音4_1")]
+ private ComboBox _ComboBox提示音4_1;
+ [AccessedThroughProperty("Label64")]
+ private Label _Label64;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式4_1")]
+ private ComboBox _ComboBox解开两音后的响应方式4_1;
+ [AccessedThroughProperty("Label65")]
+ private Label _Label65;
+ [AccessedThroughProperty("ComboBox两音的组合方式4_1")]
+ private ComboBox _ComboBox两音的组合方式4_1;
+ [AccessedThroughProperty("Label66")]
+ private Label _Label66;
+ [AccessedThroughProperty("GroupBox17")]
+ private GroupBox _GroupBox17;
+ [AccessedThroughProperty("ComboBox提示音5_4")]
+ private ComboBox _ComboBox提示音5_4;
+ [AccessedThroughProperty("Label70")]
+ private Label _Label70;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式5_4")]
+ private ComboBox _ComboBox解开两音后的响应方式5_4;
+ [AccessedThroughProperty("Label71")]
+ private Label _Label71;
+ [AccessedThroughProperty("ComboBox两音的组合方式5_4")]
+ private ComboBox _ComboBox两音的组合方式5_4;
+ [AccessedThroughProperty("Label72")]
+ private Label _Label72;
+ [AccessedThroughProperty("NumericUpDown5_D")]
+ private NumericUpDown _NumericUpDown5_D;
+ [AccessedThroughProperty("NumericUpDown5_C")]
+ private NumericUpDown _NumericUpDown5_C;
+ [AccessedThroughProperty("NumericUpDown5_B")]
+ private NumericUpDown _NumericUpDown5_B;
+ [AccessedThroughProperty("Label73")]
+ private Label _Label73;
+ [AccessedThroughProperty("NumericUpDown5_A")]
+ private NumericUpDown _NumericUpDown5_A;
+ [AccessedThroughProperty("Label83")]
+ private Label _Label83;
+ [AccessedThroughProperty("Label84")]
+ private Label _Label84;
+ [AccessedThroughProperty("Label85")]
+ private Label _Label85;
+ [AccessedThroughProperty("GroupBox18")]
+ private GroupBox _GroupBox18;
+ [AccessedThroughProperty("ComboBox提示音5_3")]
+ private ComboBox _ComboBox提示音5_3;
+ [AccessedThroughProperty("Label86")]
+ private Label _Label86;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式5_3")]
+ private ComboBox _ComboBox解开两音后的响应方式5_3;
+ [AccessedThroughProperty("Label87")]
+ private Label _Label87;
+ [AccessedThroughProperty("ComboBox两音的组合方式5_3")]
+ private ComboBox _ComboBox两音的组合方式5_3;
+ [AccessedThroughProperty("Label88")]
+ private Label _Label88;
+ [AccessedThroughProperty("GroupBox19")]
+ private GroupBox _GroupBox19;
+ [AccessedThroughProperty("ComboBox提示音5_2")]
+ private ComboBox _ComboBox提示音5_2;
+ [AccessedThroughProperty("Label89")]
+ private Label _Label89;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式5_2")]
+ private ComboBox _ComboBox解开两音后的响应方式5_2;
+ [AccessedThroughProperty("Label90")]
+ private Label _Label90;
+ [AccessedThroughProperty("ComboBox两音的组合方式5_2")]
+ private ComboBox _ComboBox两音的组合方式5_2;
+ [AccessedThroughProperty("Label91")]
+ private Label _Label91;
+ [AccessedThroughProperty("GroupBox20")]
+ private GroupBox _GroupBox20;
+ [AccessedThroughProperty("ComboBox提示音5_1")]
+ private ComboBox _ComboBox提示音5_1;
+ [AccessedThroughProperty("Label92")]
+ private Label _Label92;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式5_1")]
+ private ComboBox _ComboBox解开两音后的响应方式5_1;
+ [AccessedThroughProperty("Label93")]
+ private Label _Label93;
+ [AccessedThroughProperty("ComboBox两音的组合方式5_1")]
+ private ComboBox _ComboBox两音的组合方式5_1;
+ [AccessedThroughProperty("Label94")]
+ private Label _Label94;
+ [AccessedThroughProperty("GroupBox21")]
+ private GroupBox _GroupBox21;
+ [AccessedThroughProperty("ComboBox提示音6_4")]
+ private ComboBox _ComboBox提示音6_4;
+ [AccessedThroughProperty("Label95")]
+ private Label _Label95;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式6_4")]
+ private ComboBox _ComboBox解开两音后的响应方式6_4;
+ [AccessedThroughProperty("Label96")]
+ private Label _Label96;
+ [AccessedThroughProperty("ComboBox两音的组合方式6_4")]
+ private ComboBox _ComboBox两音的组合方式6_4;
+ [AccessedThroughProperty("Label97")]
+ private Label _Label97;
+ [AccessedThroughProperty("NumericUpDown6_D")]
+ private NumericUpDown _NumericUpDown6_D;
+ [AccessedThroughProperty("NumericUpDown6_C")]
+ private NumericUpDown _NumericUpDown6_C;
+ [AccessedThroughProperty("NumericUpDown6_B")]
+ private NumericUpDown _NumericUpDown6_B;
+ [AccessedThroughProperty("Label98")]
+ private Label _Label98;
+ [AccessedThroughProperty("NumericUpDown6_A")]
+ private NumericUpDown _NumericUpDown6_A;
+ [AccessedThroughProperty("Label99")]
+ private Label _Label99;
+ [AccessedThroughProperty("Label100")]
+ private Label _Label100;
+ [AccessedThroughProperty("Label101")]
+ private Label _Label101;
+ [AccessedThroughProperty("GroupBox22")]
+ private GroupBox _GroupBox22;
+ [AccessedThroughProperty("ComboBox提示音6_3")]
+ private ComboBox _ComboBox提示音6_3;
+ [AccessedThroughProperty("Label102")]
+ private Label _Label102;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式6_3")]
+ private ComboBox _ComboBox解开两音后的响应方式6_3;
+ [AccessedThroughProperty("Label103")]
+ private Label _Label103;
+ [AccessedThroughProperty("ComboBox两音的组合方式6_3")]
+ private ComboBox _ComboBox两音的组合方式6_3;
+ [AccessedThroughProperty("Label104")]
+ private Label _Label104;
+ [AccessedThroughProperty("GroupBox23")]
+ private GroupBox _GroupBox23;
+ [AccessedThroughProperty("ComboBox提示音6_2")]
+ private ComboBox _ComboBox提示音6_2;
+ [AccessedThroughProperty("Label105")]
+ private Label _Label105;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式6_2")]
+ private ComboBox _ComboBox解开两音后的响应方式6_2;
+ [AccessedThroughProperty("Label106")]
+ private Label _Label106;
+ [AccessedThroughProperty("ComboBox两音的组合方式6_2")]
+ private ComboBox _ComboBox两音的组合方式6_2;
+ [AccessedThroughProperty("Label107")]
+ private Label _Label107;
+ [AccessedThroughProperty("GroupBox24")]
+ private GroupBox _GroupBox24;
+ [AccessedThroughProperty("ComboBox提示音6_1")]
+ private ComboBox _ComboBox提示音6_1;
+ [AccessedThroughProperty("Label108")]
+ private Label _Label108;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式6_1")]
+ private ComboBox _ComboBox解开两音后的响应方式6_1;
+ [AccessedThroughProperty("Label109")]
+ private Label _Label109;
+ [AccessedThroughProperty("ComboBox两音的组合方式6_1")]
+ private ComboBox _ComboBox两音的组合方式6_1;
+ [AccessedThroughProperty("Label110")]
+ private Label _Label110;
+ [AccessedThroughProperty("GroupBox25")]
+ private GroupBox _GroupBox25;
+ [AccessedThroughProperty("ComboBox提示音7_4")]
+ private ComboBox _ComboBox提示音7_4;
+ [AccessedThroughProperty("Label111")]
+ private Label _Label111;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式7_4")]
+ private ComboBox _ComboBox解开两音后的响应方式7_4;
+ [AccessedThroughProperty("Label112")]
+ private Label _Label112;
+ [AccessedThroughProperty("ComboBox两音的组合方式7_4")]
+ private ComboBox _ComboBox两音的组合方式7_4;
+ [AccessedThroughProperty("Label113")]
+ private Label _Label113;
+ [AccessedThroughProperty("NumericUpDown7_D")]
+ private NumericUpDown _NumericUpDown7_D;
+ [AccessedThroughProperty("NumericUpDown7_C")]
+ private NumericUpDown _NumericUpDown7_C;
+ [AccessedThroughProperty("NumericUpDown7_B")]
+ private NumericUpDown _NumericUpDown7_B;
+ [AccessedThroughProperty("Label114")]
+ private Label _Label114;
+ [AccessedThroughProperty("NumericUpDown7_A")]
+ private NumericUpDown _NumericUpDown7_A;
+ [AccessedThroughProperty("Label115")]
+ private Label _Label115;
+ [AccessedThroughProperty("Label116")]
+ private Label _Label116;
+ [AccessedThroughProperty("Label117")]
+ private Label _Label117;
+ [AccessedThroughProperty("GroupBox26")]
+ private GroupBox _GroupBox26;
+ [AccessedThroughProperty("ComboBox提示音7_3")]
+ private ComboBox _ComboBox提示音7_3;
+ [AccessedThroughProperty("Label118")]
+ private Label _Label118;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式7_3")]
+ private ComboBox _ComboBox解开两音后的响应方式7_3;
+ [AccessedThroughProperty("Label119")]
+ private Label _Label119;
+ [AccessedThroughProperty("ComboBox两音的组合方式7_3")]
+ private ComboBox _ComboBox两音的组合方式7_3;
+ [AccessedThroughProperty("Label120")]
+ private Label _Label120;
+ [AccessedThroughProperty("GroupBox27")]
+ private GroupBox _GroupBox27;
+ [AccessedThroughProperty("ComboBox提示音7_2")]
+ private ComboBox _ComboBox提示音7_2;
+ [AccessedThroughProperty("Label121")]
+ private Label _Label121;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式7_2")]
+ private ComboBox _ComboBox解开两音后的响应方式7_2;
+ [AccessedThroughProperty("Label122")]
+ private Label _Label122;
+ [AccessedThroughProperty("ComboBox两音的组合方式7_2")]
+ private ComboBox _ComboBox两音的组合方式7_2;
+ [AccessedThroughProperty("Label123")]
+ private Label _Label123;
+ [AccessedThroughProperty("GroupBox28")]
+ private GroupBox _GroupBox28;
+ [AccessedThroughProperty("ComboBox提示音7_1")]
+ private ComboBox _ComboBox提示音7_1;
+ [AccessedThroughProperty("Label124")]
+ private Label _Label124;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式7_1")]
+ private ComboBox _ComboBox解开两音后的响应方式7_1;
+ [AccessedThroughProperty("Label125")]
+ private Label _Label125;
+ [AccessedThroughProperty("ComboBox两音的组合方式7_1")]
+ private ComboBox _ComboBox两音的组合方式7_1;
+ [AccessedThroughProperty("Label126")]
+ private Label _Label126;
+ [AccessedThroughProperty("GroupBox29")]
+ private GroupBox _GroupBox29;
+ [AccessedThroughProperty("ComboBox提示音8_4")]
+ private ComboBox _ComboBox提示音8_4;
+ [AccessedThroughProperty("Label127")]
+ private Label _Label127;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式8_4")]
+ private ComboBox _ComboBox解开两音后的响应方式8_4;
+ [AccessedThroughProperty("Label128")]
+ private Label _Label128;
+ [AccessedThroughProperty("ComboBox两音的组合方式8_4")]
+ private ComboBox _ComboBox两音的组合方式8_4;
+ [AccessedThroughProperty("Label129")]
+ private Label _Label129;
+ [AccessedThroughProperty("NumericUpDown8_D")]
+ private NumericUpDown _NumericUpDown8_D;
+ [AccessedThroughProperty("NumericUpDown8_C")]
+ private NumericUpDown _NumericUpDown8_C;
+ [AccessedThroughProperty("NumericUpDown8_B")]
+ private NumericUpDown _NumericUpDown8_B;
+ [AccessedThroughProperty("Label130")]
+ private Label _Label130;
+ [AccessedThroughProperty("NumericUpDown8_A")]
+ private NumericUpDown _NumericUpDown8_A;
+ [AccessedThroughProperty("Label131")]
+ private Label _Label131;
+ [AccessedThroughProperty("Label132")]
+ private Label _Label132;
+ [AccessedThroughProperty("Label133")]
+ private Label _Label133;
+ [AccessedThroughProperty("GroupBox30")]
+ private GroupBox _GroupBox30;
+ [AccessedThroughProperty("ComboBox提示音8_3")]
+ private ComboBox _ComboBox提示音8_3;
+ [AccessedThroughProperty("Label134")]
+ private Label _Label134;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式8_3")]
+ private ComboBox _ComboBox解开两音后的响应方式8_3;
+ [AccessedThroughProperty("Label135")]
+ private Label _Label135;
+ [AccessedThroughProperty("ComboBox两音的组合方式8_3")]
+ private ComboBox _ComboBox两音的组合方式8_3;
+ [AccessedThroughProperty("Label136")]
+ private Label _Label136;
+ [AccessedThroughProperty("GroupBox31")]
+ private GroupBox _GroupBox31;
+ [AccessedThroughProperty("ComboBox提示音8_2")]
+ private ComboBox _ComboBox提示音8_2;
+ [AccessedThroughProperty("Label137")]
+ private Label _Label137;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式8_2")]
+ private ComboBox _ComboBox解开两音后的响应方式8_2;
+ [AccessedThroughProperty("Label138")]
+ private Label _Label138;
+ [AccessedThroughProperty("ComboBox两音的组合方式8_2")]
+ private ComboBox _ComboBox两音的组合方式8_2;
+ [AccessedThroughProperty("Label139")]
+ private Label _Label139;
+ [AccessedThroughProperty("GroupBox32")]
+ private GroupBox _GroupBox32;
+ [AccessedThroughProperty("ComboBox提示音8_1")]
+ private ComboBox _ComboBox提示音8_1;
+ [AccessedThroughProperty("Label140")]
+ private Label _Label140;
+ [AccessedThroughProperty("ComboBox解开两音后的响应方式8_1")]
+ private ComboBox _ComboBox解开两音后的响应方式8_1;
+ [AccessedThroughProperty("Label141")]
+ private Label _Label141;
+ [AccessedThroughProperty("ComboBox两音的组合方式8_1")]
+ private ComboBox _ComboBox两音的组合方式8_1;
+ [AccessedThroughProperty("Label142")]
+ private Label _Label142;
+ [AccessedThroughProperty("ComboBox37")]
+ private ComboBox _ComboBox37;
+ [AccessedThroughProperty("Label67")]
+ private Label _Label67;
+ [AccessedThroughProperty("ComboBox38")]
+ private ComboBox _ComboBox38;
+ [AccessedThroughProperty("Label68")]
+ private Label _Label68;
+ [AccessedThroughProperty("ComboBox39")]
+ private ComboBox _ComboBox39;
+ [AccessedThroughProperty("Label69")]
+ private Label _Label69;
+ [AccessedThroughProperty("ComboBox40")]
+ private ComboBox _ComboBox40;
+ [AccessedThroughProperty("Label74")]
+ private Label _Label74;
+ [AccessedThroughProperty("ComboBox41")]
+ private ComboBox _ComboBox41;
+ [AccessedThroughProperty("Label75")]
+ private Label _Label75;
+ [AccessedThroughProperty("ComboBox42")]
+ private ComboBox _ComboBox42;
+ [AccessedThroughProperty("Label76")]
+ private Label _Label76;
+ [AccessedThroughProperty("ComboBox43")]
+ private ComboBox _ComboBox43;
+ [AccessedThroughProperty("Label77")]
+ private Label _Label77;
+ [AccessedThroughProperty("ComboBox44")]
+ private ComboBox _ComboBox44;
+ [AccessedThroughProperty("Label78")]
+ private Label _Label78;
+ [AccessedThroughProperty("ComboBox45")]
+ private ComboBox _ComboBox45;
+ [AccessedThroughProperty("Label79")]
+ private Label _Label79;
+ [AccessedThroughProperty("ComboBox46")]
+ private ComboBox _ComboBox46;
+ [AccessedThroughProperty("Label80")]
+ private Label _Label80;
+ [AccessedThroughProperty("ComboBox47")]
+ private ComboBox _ComboBox47;
+ [AccessedThroughProperty("Label81")]
+ private Label _Label81;
+ [AccessedThroughProperty("ComboBox48")]
+ private ComboBox _ComboBox48;
+ [AccessedThroughProperty("Label82")]
+ private Label _Label82;
+ [AccessedThroughProperty("ComboBox自动复位时间")]
+ private ComboBox _ComboBox自动复位时间;
+ [AccessedThroughProperty("ComboBox预载波时间")]
+ private ComboBox _ComboBox预载波时间;
+ [AccessedThroughProperty("Column第一个音频率")]
+ private DataGridViewTextBoxColumn _Column第一个音频率;
+ [AccessedThroughProperty("Column第二个音频率")]
+ private DataGridViewTextBoxColumn _Column第二个音频率;
+ [AccessedThroughProperty("Column第一个音持续时间")]
+ private DataGridViewComboBoxColumn _Column第一个音持续时间;
+ [AccessedThroughProperty("Column第二个音持续时间")]
+ private DataGridViewComboBoxColumn _Column第二个音持续时间;
+ [AccessedThroughProperty("Column音频间隔时间")]
+ private DataGridViewComboBoxColumn _Column音频间隔时间;
+ [AccessedThroughProperty("Column长音持续时间")]
+ private DataGridViewComboBoxColumn _Column长音持续时间;
+ [AccessedThroughProperty("Column别名")]
+ private DataGridViewTextBoxColumn _Column别名;
- [DebuggerNonUserCode]
- public _2ToneForm()
- {
- FormClosing += _2ToneForm_FormClosing;
- Load += _2ToneForm_Load;
- Deactivate += _2ToneForm_Deactivate;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (_2ToneForm));
- var gridViewCellStyle1 = new DataGridViewCellStyle();
- var gridViewCellStyle2 = new DataGridViewCellStyle();
- var gridViewCellStyle3 = new DataGridViewCellStyle();
- var gridViewCellStyle4 = new DataGridViewCellStyle();
- TabControl1 = new TabControl();
- TabPage1 = new TabPage();
- DataGridView1 = new DataGridView();
- Column第一个音频率 = new DataGridViewTextBoxColumn();
- Column第二个音频率 = new DataGridViewTextBoxColumn();
- Column第一个音持续时间 = new DataGridViewComboBoxColumn();
- Column第二个音持续时间 = new DataGridViewComboBoxColumn();
- Column音频间隔时间 = new DataGridViewComboBoxColumn();
- Column长音持续时间 = new DataGridViewComboBoxColumn();
- Column别名 = new DataGridViewTextBoxColumn();
- TabPage2 = new TabPage();
- TabControl2 = new TabControl();
- TabPage3 = new TabPage();
- GroupBox4 = new GroupBox();
- ComboBox提示音1_4 = new ComboBox();
- Label11 = new Label();
- ComboBox解开两音后的响应方式1_4 = new ComboBox();
- Label12 = new Label();
- ComboBox两音的组合方式1_4 = new ComboBox();
- Label13 = new Label();
- NumericUpDown1_D = new NumericUpDown();
- NumericUpDown1_C = new NumericUpDown();
- NumericUpDown1_B = new NumericUpDown();
- Label18 = new Label();
- NumericUpDown1_A = new NumericUpDown();
- Label17 = new Label();
- Label16 = new Label();
- Label15 = new Label();
- GroupBox3 = new GroupBox();
- ComboBox提示音1_3 = new ComboBox();
- Label8 = new Label();
- ComboBox解开两音后的响应方式1_3 = new ComboBox();
- Label9 = new Label();
- ComboBox两音的组合方式1_3 = new ComboBox();
- Label10 = new Label();
- GroupBox2 = new GroupBox();
- ComboBox提示音1_2 = new ComboBox();
- Label5 = new Label();
- ComboBox解开两音后的响应方式1_2 = new ComboBox();
- Label6 = new Label();
- ComboBox两音的组合方式1_2 = new ComboBox();
- Label7 = new Label();
- GroupBox1 = new GroupBox();
- ComboBox提示音1_1 = new ComboBox();
- Label4 = new Label();
- ComboBox解开两音后的响应方式1_1 = new ComboBox();
- Label3 = new Label();
- ComboBox两音的组合方式1_1 = new ComboBox();
- Label2 = new Label();
- TabPage4 = new TabPage();
- GroupBox5 = new GroupBox();
- ComboBox提示音2_4 = new ComboBox();
- Label19 = new Label();
- ComboBox解开两音后的响应方式2_4 = new ComboBox();
- Label20 = new Label();
- ComboBox两音的组合方式2_4 = new ComboBox();
- Label21 = new Label();
- NumericUpDown2_D = new NumericUpDown();
- NumericUpDown2_C = new NumericUpDown();
- NumericUpDown2_B = new NumericUpDown();
- Label22 = new Label();
- NumericUpDown2_A = new NumericUpDown();
- Label23 = new Label();
- Label24 = new Label();
- Label25 = new Label();
- GroupBox6 = new GroupBox();
- ComboBox提示音2_3 = new ComboBox();
- Label26 = new Label();
- ComboBox解开两音后的响应方式2_3 = new ComboBox();
- Label27 = new Label();
- ComboBox两音的组合方式2_3 = new ComboBox();
- Label28 = new Label();
- GroupBox7 = new GroupBox();
- ComboBox提示音2_2 = new ComboBox();
- Label29 = new Label();
- ComboBox解开两音后的响应方式2_2 = new ComboBox();
- Label30 = new Label();
- ComboBox两音的组合方式2_2 = new ComboBox();
- Label31 = new Label();
- GroupBox8 = new GroupBox();
- ComboBox提示音2_1 = new ComboBox();
- Label32 = new Label();
- ComboBox解开两音后的响应方式2_1 = new ComboBox();
- Label33 = new Label();
- ComboBox两音的组合方式2_1 = new ComboBox();
- Label34 = new Label();
- TabPage5 = new TabPage();
- GroupBox9 = new GroupBox();
- ComboBox提示音3_4 = new ComboBox();
- Label35 = new Label();
- ComboBox解开两音后的响应方式3_4 = new ComboBox();
- Label36 = new Label();
- ComboBox两音的组合方式3_4 = new ComboBox();
- Label37 = new Label();
- NumericUpDown3_D = new NumericUpDown();
- NumericUpDown3_C = new NumericUpDown();
- NumericUpDown3_B = new NumericUpDown();
- Label38 = new Label();
- NumericUpDown3_A = new NumericUpDown();
- Label39 = new Label();
- Label40 = new Label();
- Label41 = new Label();
- GroupBox10 = new GroupBox();
- ComboBox提示音3_3 = new ComboBox();
- Label42 = new Label();
- ComboBox解开两音后的响应方式3_3 = new ComboBox();
- Label43 = new Label();
- ComboBox两音的组合方式3_3 = new ComboBox();
- Label44 = new Label();
- GroupBox11 = new GroupBox();
- ComboBox提示音3_2 = new ComboBox();
- Label45 = new Label();
- ComboBox解开两音后的响应方式3_2 = new ComboBox();
- Label46 = new Label();
- ComboBox两音的组合方式3_2 = new ComboBox();
- Label47 = new Label();
- GroupBox12 = new GroupBox();
- ComboBox提示音3_1 = new ComboBox();
- Label48 = new Label();
- ComboBox解开两音后的响应方式3_1 = new ComboBox();
- Label49 = new Label();
- ComboBox两音的组合方式3_1 = new ComboBox();
- Label50 = new Label();
- TabPage6 = new TabPage();
- GroupBox13 = new GroupBox();
- ComboBox提示音4_4 = new ComboBox();
- Label51 = new Label();
- ComboBox解开两音后的响应方式4_4 = new ComboBox();
- Label52 = new Label();
- ComboBox两音的组合方式4_4 = new ComboBox();
- Label53 = new Label();
- NumericUpDown4_D = new NumericUpDown();
- NumericUpDown4_C = new NumericUpDown();
- NumericUpDown4_B = new NumericUpDown();
- Label54 = new Label();
- NumericUpDown4_A = new NumericUpDown();
- Label55 = new Label();
- Label56 = new Label();
- Label57 = new Label();
- GroupBox14 = new GroupBox();
- ComboBox提示音4_3 = new ComboBox();
- Label58 = new Label();
- ComboBox解开两音后的响应方式4_3 = new ComboBox();
- Label59 = new Label();
- ComboBox两音的组合方式4_3 = new ComboBox();
- Label60 = new Label();
- GroupBox15 = new GroupBox();
- ComboBox提示音4_2 = new ComboBox();
- Label61 = new Label();
- ComboBox解开两音后的响应方式4_2 = new ComboBox();
- Label62 = new Label();
- ComboBox两音的组合方式4_2 = new ComboBox();
- Label63 = new Label();
- GroupBox16 = new GroupBox();
- ComboBox提示音4_1 = new ComboBox();
- Label64 = new Label();
- ComboBox解开两音后的响应方式4_1 = new ComboBox();
- Label65 = new Label();
- ComboBox两音的组合方式4_1 = new ComboBox();
- Label66 = new Label();
- TabPage7 = new TabPage();
- GroupBox17 = new GroupBox();
- ComboBox提示音5_4 = new ComboBox();
- Label70 = new Label();
- ComboBox解开两音后的响应方式5_4 = new ComboBox();
- Label71 = new Label();
- ComboBox两音的组合方式5_4 = new ComboBox();
- Label72 = new Label();
- NumericUpDown5_D = new NumericUpDown();
- NumericUpDown5_C = new NumericUpDown();
- NumericUpDown5_B = new NumericUpDown();
- Label73 = new Label();
- NumericUpDown5_A = new NumericUpDown();
- Label83 = new Label();
- Label84 = new Label();
- Label85 = new Label();
- GroupBox18 = new GroupBox();
- ComboBox提示音5_3 = new ComboBox();
- Label86 = new Label();
- ComboBox解开两音后的响应方式5_3 = new ComboBox();
- Label87 = new Label();
- ComboBox两音的组合方式5_3 = new ComboBox();
- Label88 = new Label();
- GroupBox19 = new GroupBox();
- ComboBox提示音5_2 = new ComboBox();
- Label89 = new Label();
- ComboBox解开两音后的响应方式5_2 = new ComboBox();
- Label90 = new Label();
- ComboBox两音的组合方式5_2 = new ComboBox();
- Label91 = new Label();
- GroupBox20 = new GroupBox();
- ComboBox提示音5_1 = new ComboBox();
- Label92 = new Label();
- ComboBox解开两音后的响应方式5_1 = new ComboBox();
- Label93 = new Label();
- ComboBox两音的组合方式5_1 = new ComboBox();
- Label94 = new Label();
- TabPage8 = new TabPage();
- GroupBox21 = new GroupBox();
- ComboBox提示音6_4 = new ComboBox();
- Label95 = new Label();
- ComboBox解开两音后的响应方式6_4 = new ComboBox();
- Label96 = new Label();
- ComboBox两音的组合方式6_4 = new ComboBox();
- Label97 = new Label();
- NumericUpDown6_D = new NumericUpDown();
- NumericUpDown6_C = new NumericUpDown();
- NumericUpDown6_B = new NumericUpDown();
- Label98 = new Label();
- NumericUpDown6_A = new NumericUpDown();
- Label99 = new Label();
- Label100 = new Label();
- Label101 = new Label();
- GroupBox22 = new GroupBox();
- ComboBox提示音6_3 = new ComboBox();
- Label102 = new Label();
- ComboBox解开两音后的响应方式6_3 = new ComboBox();
- Label103 = new Label();
- ComboBox两音的组合方式6_3 = new ComboBox();
- Label104 = new Label();
- GroupBox23 = new GroupBox();
- ComboBox提示音6_2 = new ComboBox();
- Label105 = new Label();
- ComboBox解开两音后的响应方式6_2 = new ComboBox();
- Label106 = new Label();
- ComboBox两音的组合方式6_2 = new ComboBox();
- Label107 = new Label();
- GroupBox24 = new GroupBox();
- ComboBox提示音6_1 = new ComboBox();
- Label108 = new Label();
- ComboBox解开两音后的响应方式6_1 = new ComboBox();
- Label109 = new Label();
- ComboBox两音的组合方式6_1 = new ComboBox();
- Label110 = new Label();
- TabPage9 = new TabPage();
- GroupBox25 = new GroupBox();
- ComboBox提示音7_4 = new ComboBox();
- Label111 = new Label();
- ComboBox解开两音后的响应方式7_4 = new ComboBox();
- Label112 = new Label();
- ComboBox两音的组合方式7_4 = new ComboBox();
- Label113 = new Label();
- NumericUpDown7_D = new NumericUpDown();
- NumericUpDown7_C = new NumericUpDown();
- NumericUpDown7_B = new NumericUpDown();
- Label114 = new Label();
- NumericUpDown7_A = new NumericUpDown();
- Label115 = new Label();
- Label116 = new Label();
- Label117 = new Label();
- GroupBox26 = new GroupBox();
- ComboBox提示音7_3 = new ComboBox();
- Label118 = new Label();
- ComboBox解开两音后的响应方式7_3 = new ComboBox();
- Label119 = new Label();
- ComboBox两音的组合方式7_3 = new ComboBox();
- Label120 = new Label();
- GroupBox27 = new GroupBox();
- ComboBox提示音7_2 = new ComboBox();
- Label121 = new Label();
- ComboBox解开两音后的响应方式7_2 = new ComboBox();
- Label122 = new Label();
- ComboBox两音的组合方式7_2 = new ComboBox();
- Label123 = new Label();
- GroupBox28 = new GroupBox();
- ComboBox提示音7_1 = new ComboBox();
- Label124 = new Label();
- ComboBox解开两音后的响应方式7_1 = new ComboBox();
- Label125 = new Label();
- ComboBox两音的组合方式7_1 = new ComboBox();
- Label126 = new Label();
- TabPage10 = new TabPage();
- GroupBox29 = new GroupBox();
- ComboBox提示音8_4 = new ComboBox();
- Label127 = new Label();
- ComboBox解开两音后的响应方式8_4 = new ComboBox();
- Label128 = new Label();
- ComboBox两音的组合方式8_4 = new ComboBox();
- Label129 = new Label();
- NumericUpDown8_D = new NumericUpDown();
- NumericUpDown8_C = new NumericUpDown();
- NumericUpDown8_B = new NumericUpDown();
- Label130 = new Label();
- NumericUpDown8_A = new NumericUpDown();
- Label131 = new Label();
- Label132 = new Label();
- Label133 = new Label();
- GroupBox30 = new GroupBox();
- ComboBox提示音8_3 = new ComboBox();
- Label134 = new Label();
- ComboBox解开两音后的响应方式8_3 = new ComboBox();
- Label135 = new Label();
- ComboBox两音的组合方式8_3 = new ComboBox();
- Label136 = new Label();
- GroupBox31 = new GroupBox();
- ComboBox提示音8_2 = new ComboBox();
- Label137 = new Label();
- ComboBox解开两音后的响应方式8_2 = new ComboBox();
- Label138 = new Label();
- ComboBox两音的组合方式8_2 = new ComboBox();
- Label139 = new Label();
- GroupBox32 = new GroupBox();
- ComboBox提示音8_1 = new ComboBox();
- Label140 = new Label();
- ComboBox解开两音后的响应方式8_1 = new ComboBox();
- Label141 = new Label();
- ComboBox两音的组合方式8_1 = new ComboBox();
- Label142 = new Label();
- TabPage11 = new TabPage();
- ComboBox自动复位时间 = new ComboBox();
- ComboBox预载波时间 = new ComboBox();
- CheckBox空闲自动应答 = new CheckBox();
- Label14 = new Label();
- CheckBox短哔音 = new CheckBox();
- CheckBox侧音 = new CheckBox();
- Label1 = new Label();
- Button3 = new Button();
- Button2 = new Button();
- Button1 = new Button();
- ComboBox37 = new ComboBox();
- Label67 = new Label();
- ComboBox38 = new ComboBox();
- Label68 = new Label();
- ComboBox39 = new ComboBox();
- Label69 = new Label();
- ComboBox40 = new ComboBox();
- Label74 = new Label();
- ComboBox41 = new ComboBox();
- Label75 = new Label();
- ComboBox42 = new ComboBox();
- Label76 = new Label();
- ComboBox43 = new ComboBox();
- Label77 = new Label();
- ComboBox44 = new ComboBox();
- Label78 = new Label();
- ComboBox45 = new ComboBox();
- Label79 = new Label();
- ComboBox46 = new ComboBox();
- Label80 = new Label();
- ComboBox47 = new ComboBox();
- Label81 = new Label();
- ComboBox48 = new ComboBox();
- Label82 = new Label();
- TabControl1.SuspendLayout();
- TabPage1.SuspendLayout();
- ((ISupportInitialize) DataGridView1).BeginInit();
- TabPage2.SuspendLayout();
- TabControl2.SuspendLayout();
- TabPage3.SuspendLayout();
- GroupBox4.SuspendLayout();
- NumericUpDown1_D.BeginInit();
- NumericUpDown1_C.BeginInit();
- NumericUpDown1_B.BeginInit();
- NumericUpDown1_A.BeginInit();
- GroupBox3.SuspendLayout();
- GroupBox2.SuspendLayout();
- GroupBox1.SuspendLayout();
- TabPage4.SuspendLayout();
- GroupBox5.SuspendLayout();
- NumericUpDown2_D.BeginInit();
- NumericUpDown2_C.BeginInit();
- NumericUpDown2_B.BeginInit();
- NumericUpDown2_A.BeginInit();
- GroupBox6.SuspendLayout();
- GroupBox7.SuspendLayout();
- GroupBox8.SuspendLayout();
- TabPage5.SuspendLayout();
- GroupBox9.SuspendLayout();
- NumericUpDown3_D.BeginInit();
- NumericUpDown3_C.BeginInit();
- NumericUpDown3_B.BeginInit();
- NumericUpDown3_A.BeginInit();
- GroupBox10.SuspendLayout();
- GroupBox11.SuspendLayout();
- GroupBox12.SuspendLayout();
- TabPage6.SuspendLayout();
- GroupBox13.SuspendLayout();
- NumericUpDown4_D.BeginInit();
- NumericUpDown4_C.BeginInit();
- NumericUpDown4_B.BeginInit();
- NumericUpDown4_A.BeginInit();
- GroupBox14.SuspendLayout();
- GroupBox15.SuspendLayout();
- GroupBox16.SuspendLayout();
- TabPage7.SuspendLayout();
- GroupBox17.SuspendLayout();
- NumericUpDown5_D.BeginInit();
- NumericUpDown5_C.BeginInit();
- NumericUpDown5_B.BeginInit();
- NumericUpDown5_A.BeginInit();
- GroupBox18.SuspendLayout();
- GroupBox19.SuspendLayout();
- GroupBox20.SuspendLayout();
- TabPage8.SuspendLayout();
- GroupBox21.SuspendLayout();
- NumericUpDown6_D.BeginInit();
- NumericUpDown6_C.BeginInit();
- NumericUpDown6_B.BeginInit();
- NumericUpDown6_A.BeginInit();
- GroupBox22.SuspendLayout();
- GroupBox23.SuspendLayout();
- GroupBox24.SuspendLayout();
- TabPage9.SuspendLayout();
- GroupBox25.SuspendLayout();
- NumericUpDown7_D.BeginInit();
- NumericUpDown7_C.BeginInit();
- NumericUpDown7_B.BeginInit();
- NumericUpDown7_A.BeginInit();
- GroupBox26.SuspendLayout();
- GroupBox27.SuspendLayout();
- GroupBox28.SuspendLayout();
- TabPage10.SuspendLayout();
- GroupBox29.SuspendLayout();
- NumericUpDown8_D.BeginInit();
- NumericUpDown8_C.BeginInit();
- NumericUpDown8_B.BeginInit();
- NumericUpDown8_A.BeginInit();
- GroupBox30.SuspendLayout();
- GroupBox31.SuspendLayout();
- GroupBox32.SuspendLayout();
- TabPage11.SuspendLayout();
- SuspendLayout();
- TabControl1.AccessibleDescription = null;
- TabControl1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabControl1, "TabControl1");
- TabControl1.BackgroundImage = null;
- TabControl1.Controls.Add(TabPage1);
- TabControl1.Controls.Add(TabPage2);
- TabControl1.Controls.Add(TabPage11);
- TabControl1.Font = null;
- TabControl1.Name = "TabControl1";
- TabControl1.SelectedIndex = 0;
- TabPage1.AccessibleDescription = null;
- TabPage1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage1, "TabPage1");
- TabPage1.BackgroundImage = null;
- TabPage1.Controls.Add(DataGridView1);
- TabPage1.Font = null;
- TabPage1.Name = "TabPage1";
- TabPage1.UseVisualStyleBackColor = true;
- DataGridView1.AccessibleDescription = null;
- DataGridView1.AccessibleName = null;
- DataGridView1.AllowUserToAddRows = false;
- DataGridView1.AllowUserToDeleteRows = false;
- DataGridView1.AllowUserToResizeColumns = false;
- DataGridView1.AllowUserToResizeRows = false;
- gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
- componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
- DataGridView1.BackgroundImage = null;
- gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle2.BackColor = SystemColors.Control;
- gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle2.ForeColor = SystemColors.WindowText;
- gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
- DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
- DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView1.Columns.AddRange(Column第一个音频率, Column第二个音频率, Column第一个音持续时间, Column第二个音持续时间, Column音频间隔时间, Column长音持续时间, Column别名);
- DataGridView1.Font = null;
- DataGridView1.Name = "DataGridView1";
- gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle3.BackColor = SystemColors.Control;
- gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle3.ForeColor = SystemColors.WindowText;
- gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
- DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
- DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
- DataGridView1.RowTemplate.Height = 23;
- Column第一个音频率.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
- componentResourceManager.ApplyResources(Column第一个音频率, "Column第一个音频率");
- Column第一个音频率.MaxInputLength = 6;
- Column第一个音频率.Name = "Column第一个音频率";
- Column第一个音频率.SortMode = DataGridViewColumnSortMode.NotSortable;
- componentResourceManager.ApplyResources(Column第二个音频率, "Column第二个音频率");
- Column第二个音频率.MaxInputLength = 6;
- Column第二个音频率.Name = "Column第二个音频率";
- Column第二个音频率.SortMode = DataGridViewColumnSortMode.NotSortable;
- Column第一个音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column第一个音持续时间, "Column第一个音持续时间");
- Column第一个音持续时间.Items.AddRange("0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ", "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ", "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ", "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ", "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ", "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ", "9.8 ", "9.9 ", "10.0 ");
- Column第一个音持续时间.Name = "Column第一个音持续时间";
- Column第二个音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column第二个音持续时间, "Column第二个音持续时间");
- Column第二个音持续时间.Items.AddRange("0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ", "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ", "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ", "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ", "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ", "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ", "9.8 ", "9.9 ", "10.0 ");
- Column第二个音持续时间.Name = "Column第二个音持续时间";
- Column音频间隔时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column音频间隔时间, "Column音频间隔时间");
- Column音频间隔时间.Items.AddRange("0.0 ", "0.1 ", "0.2 ", "0.3 ", "0.4 ", "0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ", "1.8 ", "1.9 ", "2.0");
- Column音频间隔时间.Name = "Column音频间隔时间";
- Column长音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column长音持续时间, "Column长音持续时间");
- Column长音持续时间.Items.AddRange("OFF", "0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ", "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ", "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ", "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ", "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ", "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ", "9.8 ", "9.9 ", "10.0 ");
- Column长音持续时间.Name = "Column长音持续时间";
- Column长音持续时间.Resizable = DataGridViewTriState.False;
- componentResourceManager.ApplyResources(Column别名, "Column别名");
- Column别名.MaxInputLength = 8;
- Column别名.Name = "Column别名";
- Column别名.Resizable = DataGridViewTriState.False;
- Column别名.SortMode = DataGridViewColumnSortMode.NotSortable;
- TabPage2.AccessibleDescription = null;
- TabPage2.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage2, "TabPage2");
- TabPage2.BackgroundImage = null;
- TabPage2.Controls.Add(TabControl2);
- TabPage2.Font = null;
- TabPage2.Name = "TabPage2";
- TabPage2.UseVisualStyleBackColor = true;
- TabControl2.AccessibleDescription = null;
- TabControl2.AccessibleName = null;
- componentResourceManager.ApplyResources(TabControl2, "TabControl2");
- TabControl2.BackgroundImage = null;
- TabControl2.Controls.Add(TabPage3);
- TabControl2.Controls.Add(TabPage4);
- TabControl2.Controls.Add(TabPage5);
- TabControl2.Controls.Add(TabPage6);
- TabControl2.Controls.Add(TabPage7);
- TabControl2.Controls.Add(TabPage8);
- TabControl2.Controls.Add(TabPage9);
- TabControl2.Controls.Add(TabPage10);
- TabControl2.Font = null;
- TabControl2.Name = "TabControl2";
- TabControl2.SelectedIndex = 0;
- TabPage3.AccessibleDescription = null;
- TabPage3.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage3, "TabPage3");
- TabPage3.BackgroundImage = null;
- TabPage3.Controls.Add(GroupBox4);
- TabPage3.Controls.Add(NumericUpDown1_D);
- TabPage3.Controls.Add(NumericUpDown1_C);
- TabPage3.Controls.Add(NumericUpDown1_B);
- TabPage3.Controls.Add(Label18);
- TabPage3.Controls.Add(NumericUpDown1_A);
- TabPage3.Controls.Add(Label17);
- TabPage3.Controls.Add(Label16);
- TabPage3.Controls.Add(Label15);
- TabPage3.Controls.Add(GroupBox3);
- TabPage3.Controls.Add(GroupBox2);
- TabPage3.Controls.Add(GroupBox1);
- TabPage3.Font = null;
- TabPage3.Name = "TabPage3";
- TabPage3.UseVisualStyleBackColor = true;
- GroupBox4.AccessibleDescription = null;
- GroupBox4.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox4, "GroupBox4");
- GroupBox4.BackgroundImage = null;
- GroupBox4.Controls.Add(ComboBox提示音1_4);
- GroupBox4.Controls.Add(Label11);
- GroupBox4.Controls.Add(ComboBox解开两音后的响应方式1_4);
- GroupBox4.Controls.Add(Label12);
- GroupBox4.Controls.Add(ComboBox两音的组合方式1_4);
- GroupBox4.Controls.Add(Label13);
- GroupBox4.Font = null;
- GroupBox4.Name = "GroupBox4";
- GroupBox4.TabStop = false;
- ComboBox提示音1_4.AccessibleDescription = null;
- ComboBox提示音1_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音1_4, "ComboBox提示音1_4");
- ComboBox提示音1_4.BackgroundImage = null;
- ComboBox提示音1_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音1_4.Font = null;
- ComboBox提示音1_4.FormattingEnabled = true;
- ComboBox提示音1_4.Name = "ComboBox提示音1_4";
- Label11.AccessibleDescription = null;
- Label11.AccessibleName = null;
- componentResourceManager.ApplyResources(Label11, "Label11");
- Label11.Font = null;
- Label11.Name = "Label11";
- ComboBox解开两音后的响应方式1_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式1_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_4, "ComboBox解开两音后的响应方式1_4");
- ComboBox解开两音后的响应方式1_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式1_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式1_4.Font = null;
- ComboBox解开两音后的响应方式1_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式1_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items3")
- });
- ComboBox解开两音后的响应方式1_4.Name = "ComboBox解开两音后的响应方式1_4";
- Label12.AccessibleDescription = null;
- Label12.AccessibleName = null;
- componentResourceManager.ApplyResources(Label12, "Label12");
- Label12.Font = null;
- Label12.Name = "Label12";
- ComboBox两音的组合方式1_4.AccessibleDescription = null;
- ComboBox两音的组合方式1_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式1_4, "ComboBox两音的组合方式1_4");
- ComboBox两音的组合方式1_4.BackgroundImage = null;
- ComboBox两音的组合方式1_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式1_4.Font = null;
- ComboBox两音的组合方式1_4.FormattingEnabled = true;
- ComboBox两音的组合方式1_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items15")
- });
- ComboBox两音的组合方式1_4.Name = "ComboBox两音的组合方式1_4";
- Label13.AccessibleDescription = null;
- Label13.AccessibleName = null;
- componentResourceManager.ApplyResources(Label13, "Label13");
- Label13.Font = null;
- Label13.Name = "Label13";
- NumericUpDown1_D.AccessibleDescription = null;
- NumericUpDown1_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown1_D, "NumericUpDown1_D");
- NumericUpDown1_D.DecimalPlaces = 1;
- NumericUpDown1_D.Font = null;
- var numericUpDown1D1 = NumericUpDown1_D;
- var num1 = new Decimal(new int[4]
- {
- 1,
- 0,
- 0,
- 65536
- });
- var num2 = num1;
- numericUpDown1D1.Increment = num2;
- var numericUpDown1D2 = NumericUpDown1_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num3 = num1;
- numericUpDown1D2.Maximum = num3;
- var numericUpDown1D3 = NumericUpDown1_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num4 = num1;
- numericUpDown1D3.Minimum = num4;
- NumericUpDown1_D.Name = "NumericUpDown1_D";
- var numericUpDown1D4 = NumericUpDown1_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num5 = num1;
- numericUpDown1D4.Value = num5;
- NumericUpDown1_C.AccessibleDescription = null;
- NumericUpDown1_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown1_C, "NumericUpDown1_C");
- NumericUpDown1_C.DecimalPlaces = 1;
- NumericUpDown1_C.Font = null;
- var numericUpDown1C1 = NumericUpDown1_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num6 = num1;
- numericUpDown1C1.Increment = num6;
- var numericUpDown1C2 = NumericUpDown1_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num7 = num1;
- numericUpDown1C2.Maximum = num7;
- var numericUpDown1C3 = NumericUpDown1_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num8 = num1;
- numericUpDown1C3.Minimum = num8;
- NumericUpDown1_C.Name = "NumericUpDown1_C";
- var numericUpDown1C4 = NumericUpDown1_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num9 = num1;
- numericUpDown1C4.Value = num9;
- NumericUpDown1_B.AccessibleDescription = null;
- NumericUpDown1_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown1_B, "NumericUpDown1_B");
- NumericUpDown1_B.DecimalPlaces = 1;
- NumericUpDown1_B.Font = null;
- var numericUpDown1B1 = NumericUpDown1_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num10 = num1;
- numericUpDown1B1.Increment = num10;
- var numericUpDown1B2 = NumericUpDown1_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num11 = num1;
- numericUpDown1B2.Maximum = num11;
- var numericUpDown1B3 = NumericUpDown1_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num12 = num1;
- numericUpDown1B3.Minimum = num12;
- NumericUpDown1_B.Name = "NumericUpDown1_B";
- var numericUpDown1B4 = NumericUpDown1_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num13 = num1;
- numericUpDown1B4.Value = num13;
- Label18.AccessibleDescription = null;
- Label18.AccessibleName = null;
- componentResourceManager.ApplyResources(Label18, "Label18");
- Label18.Font = null;
- Label18.Name = "Label18";
- NumericUpDown1_A.AccessibleDescription = null;
- NumericUpDown1_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown1_A, "NumericUpDown1_A");
- NumericUpDown1_A.DecimalPlaces = 1;
- NumericUpDown1_A.Font = null;
- var numericUpDown1A1 = NumericUpDown1_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num14 = num1;
- numericUpDown1A1.Increment = num14;
- var numericUpDown1A2 = NumericUpDown1_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num15 = num1;
- numericUpDown1A2.Maximum = num15;
- var numericUpDown1A3 = NumericUpDown1_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num16 = num1;
- numericUpDown1A3.Minimum = num16;
- NumericUpDown1_A.Name = "NumericUpDown1_A";
- var numericUpDown1A4 = NumericUpDown1_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num17 = num1;
- numericUpDown1A4.Value = num17;
- Label17.AccessibleDescription = null;
- Label17.AccessibleName = null;
- componentResourceManager.ApplyResources(Label17, "Label17");
- Label17.Font = null;
- Label17.Name = "Label17";
- Label16.AccessibleDescription = null;
- Label16.AccessibleName = null;
- componentResourceManager.ApplyResources(Label16, "Label16");
- Label16.Font = null;
- Label16.Name = "Label16";
- Label15.AccessibleDescription = null;
- Label15.AccessibleName = null;
- componentResourceManager.ApplyResources(Label15, "Label15");
- Label15.Font = null;
- Label15.Name = "Label15";
- GroupBox3.AccessibleDescription = null;
- GroupBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
- GroupBox3.BackgroundImage = null;
- GroupBox3.Controls.Add(ComboBox提示音1_3);
- GroupBox3.Controls.Add(Label8);
- GroupBox3.Controls.Add(ComboBox解开两音后的响应方式1_3);
- GroupBox3.Controls.Add(Label9);
- GroupBox3.Controls.Add(ComboBox两音的组合方式1_3);
- GroupBox3.Controls.Add(Label10);
- GroupBox3.Font = null;
- GroupBox3.Name = "GroupBox3";
- GroupBox3.TabStop = false;
- ComboBox提示音1_3.AccessibleDescription = null;
- ComboBox提示音1_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音1_3, "ComboBox提示音1_3");
- ComboBox提示音1_3.BackgroundImage = null;
- ComboBox提示音1_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音1_3.Font = null;
- ComboBox提示音1_3.FormattingEnabled = true;
- ComboBox提示音1_3.Name = "ComboBox提示音1_3";
- Label8.AccessibleDescription = null;
- Label8.AccessibleName = null;
- componentResourceManager.ApplyResources(Label8, "Label8");
- Label8.Font = null;
- Label8.Name = "Label8";
- ComboBox解开两音后的响应方式1_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式1_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_3, "ComboBox解开两音后的响应方式1_3");
- ComboBox解开两音后的响应方式1_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式1_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式1_3.Font = null;
- ComboBox解开两音后的响应方式1_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式1_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items3")
- });
- ComboBox解开两音后的响应方式1_3.Name = "ComboBox解开两音后的响应方式1_3";
- Label9.AccessibleDescription = null;
- Label9.AccessibleName = null;
- componentResourceManager.ApplyResources(Label9, "Label9");
- Label9.Font = null;
- Label9.Name = "Label9";
- ComboBox两音的组合方式1_3.AccessibleDescription = null;
- ComboBox两音的组合方式1_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式1_3, "ComboBox两音的组合方式1_3");
- ComboBox两音的组合方式1_3.BackgroundImage = null;
- ComboBox两音的组合方式1_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式1_3.Font = null;
- ComboBox两音的组合方式1_3.FormattingEnabled = true;
- ComboBox两音的组合方式1_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items15")
- });
- ComboBox两音的组合方式1_3.Name = "ComboBox两音的组合方式1_3";
- Label10.AccessibleDescription = null;
- Label10.AccessibleName = null;
- componentResourceManager.ApplyResources(Label10, "Label10");
- Label10.Font = null;
- Label10.Name = "Label10";
- GroupBox2.AccessibleDescription = null;
- GroupBox2.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
- GroupBox2.BackgroundImage = null;
- GroupBox2.Controls.Add(ComboBox提示音1_2);
- GroupBox2.Controls.Add(Label5);
- GroupBox2.Controls.Add(ComboBox解开两音后的响应方式1_2);
- GroupBox2.Controls.Add(Label6);
- GroupBox2.Controls.Add(ComboBox两音的组合方式1_2);
- GroupBox2.Controls.Add(Label7);
- GroupBox2.Font = null;
- GroupBox2.Name = "GroupBox2";
- GroupBox2.TabStop = false;
- ComboBox提示音1_2.AccessibleDescription = null;
- ComboBox提示音1_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音1_2, "ComboBox提示音1_2");
- ComboBox提示音1_2.BackgroundImage = null;
- ComboBox提示音1_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音1_2.Font = null;
- ComboBox提示音1_2.FormattingEnabled = true;
- ComboBox提示音1_2.Name = "ComboBox提示音1_2";
- Label5.AccessibleDescription = null;
- Label5.AccessibleName = null;
- componentResourceManager.ApplyResources(Label5, "Label5");
- Label5.Font = null;
- Label5.Name = "Label5";
- ComboBox解开两音后的响应方式1_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式1_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_2, "ComboBox解开两音后的响应方式1_2");
- ComboBox解开两音后的响应方式1_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式1_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式1_2.Font = null;
- ComboBox解开两音后的响应方式1_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式1_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items3")
- });
- ComboBox解开两音后的响应方式1_2.Name = "ComboBox解开两音后的响应方式1_2";
- Label6.AccessibleDescription = null;
- Label6.AccessibleName = null;
- componentResourceManager.ApplyResources(Label6, "Label6");
- Label6.Font = null;
- Label6.Name = "Label6";
- ComboBox两音的组合方式1_2.AccessibleDescription = null;
- ComboBox两音的组合方式1_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式1_2, "ComboBox两音的组合方式1_2");
- ComboBox两音的组合方式1_2.BackgroundImage = null;
- ComboBox两音的组合方式1_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式1_2.Font = null;
- ComboBox两音的组合方式1_2.FormattingEnabled = true;
- ComboBox两音的组合方式1_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items15")
- });
- ComboBox两音的组合方式1_2.Name = "ComboBox两音的组合方式1_2";
- Label7.AccessibleDescription = null;
- Label7.AccessibleName = null;
- componentResourceManager.ApplyResources(Label7, "Label7");
- Label7.Font = null;
- Label7.Name = "Label7";
- GroupBox1.AccessibleDescription = null;
- GroupBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
- GroupBox1.BackgroundImage = null;
- GroupBox1.Controls.Add(ComboBox提示音1_1);
- GroupBox1.Controls.Add(Label4);
- GroupBox1.Controls.Add(ComboBox解开两音后的响应方式1_1);
- GroupBox1.Controls.Add(Label3);
- GroupBox1.Controls.Add(ComboBox两音的组合方式1_1);
- GroupBox1.Controls.Add(Label2);
- GroupBox1.Font = null;
- GroupBox1.Name = "GroupBox1";
- GroupBox1.TabStop = false;
- ComboBox提示音1_1.AccessibleDescription = null;
- ComboBox提示音1_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音1_1, "ComboBox提示音1_1");
- ComboBox提示音1_1.BackgroundImage = null;
- ComboBox提示音1_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音1_1.Font = null;
- ComboBox提示音1_1.FormattingEnabled = true;
- ComboBox提示音1_1.Name = "ComboBox提示音1_1";
- Label4.AccessibleDescription = null;
- Label4.AccessibleName = null;
- componentResourceManager.ApplyResources(Label4, "Label4");
- Label4.Font = null;
- Label4.Name = "Label4";
- ComboBox解开两音后的响应方式1_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式1_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_1, "ComboBox解开两音后的响应方式1_1");
- ComboBox解开两音后的响应方式1_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式1_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式1_1.Font = null;
- ComboBox解开两音后的响应方式1_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式1_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items3")
- });
- ComboBox解开两音后的响应方式1_1.Name = "ComboBox解开两音后的响应方式1_1";
- Label3.AccessibleDescription = null;
- Label3.AccessibleName = null;
- componentResourceManager.ApplyResources(Label3, "Label3");
- Label3.Font = null;
- Label3.Name = "Label3";
- ComboBox两音的组合方式1_1.AccessibleDescription = null;
- ComboBox两音的组合方式1_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式1_1, "ComboBox两音的组合方式1_1");
- ComboBox两音的组合方式1_1.BackgroundImage = null;
- ComboBox两音的组合方式1_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式1_1.Font = null;
- ComboBox两音的组合方式1_1.FormattingEnabled = true;
- ComboBox两音的组合方式1_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items15")
- });
- ComboBox两音的组合方式1_1.Name = "ComboBox两音的组合方式1_1";
- Label2.AccessibleDescription = null;
- Label2.AccessibleName = null;
- componentResourceManager.ApplyResources(Label2, "Label2");
- Label2.Font = null;
- Label2.Name = "Label2";
- TabPage4.AccessibleDescription = null;
- TabPage4.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage4, "TabPage4");
- TabPage4.BackgroundImage = null;
- TabPage4.Controls.Add(GroupBox5);
- TabPage4.Controls.Add(NumericUpDown2_D);
- TabPage4.Controls.Add(NumericUpDown2_C);
- TabPage4.Controls.Add(NumericUpDown2_B);
- TabPage4.Controls.Add(Label22);
- TabPage4.Controls.Add(NumericUpDown2_A);
- TabPage4.Controls.Add(Label23);
- TabPage4.Controls.Add(Label24);
- TabPage4.Controls.Add(Label25);
- TabPage4.Controls.Add(GroupBox6);
- TabPage4.Controls.Add(GroupBox7);
- TabPage4.Controls.Add(GroupBox8);
- TabPage4.Font = null;
- TabPage4.Name = "TabPage4";
- TabPage4.UseVisualStyleBackColor = true;
- GroupBox5.AccessibleDescription = null;
- GroupBox5.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox5, "GroupBox5");
- GroupBox5.BackgroundImage = null;
- GroupBox5.Controls.Add(ComboBox提示音2_4);
- GroupBox5.Controls.Add(Label19);
- GroupBox5.Controls.Add(ComboBox解开两音后的响应方式2_4);
- GroupBox5.Controls.Add(Label20);
- GroupBox5.Controls.Add(ComboBox两音的组合方式2_4);
- GroupBox5.Controls.Add(Label21);
- GroupBox5.Font = null;
- GroupBox5.Name = "GroupBox5";
- GroupBox5.TabStop = false;
- ComboBox提示音2_4.AccessibleDescription = null;
- ComboBox提示音2_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音2_4, "ComboBox提示音2_4");
- ComboBox提示音2_4.BackgroundImage = null;
- ComboBox提示音2_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音2_4.Font = null;
- ComboBox提示音2_4.FormattingEnabled = true;
- ComboBox提示音2_4.Name = "ComboBox提示音2_4";
- Label19.AccessibleDescription = null;
- Label19.AccessibleName = null;
- componentResourceManager.ApplyResources(Label19, "Label19");
- Label19.Font = null;
- Label19.Name = "Label19";
- ComboBox解开两音后的响应方式2_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式2_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_4, "ComboBox解开两音后的响应方式2_4");
- ComboBox解开两音后的响应方式2_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式2_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式2_4.Font = null;
- ComboBox解开两音后的响应方式2_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式2_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items3")
- });
- ComboBox解开两音后的响应方式2_4.Name = "ComboBox解开两音后的响应方式2_4";
- Label20.AccessibleDescription = null;
- Label20.AccessibleName = null;
- componentResourceManager.ApplyResources(Label20, "Label20");
- Label20.Font = null;
- Label20.Name = "Label20";
- ComboBox两音的组合方式2_4.AccessibleDescription = null;
- ComboBox两音的组合方式2_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式2_4, "ComboBox两音的组合方式2_4");
- ComboBox两音的组合方式2_4.BackgroundImage = null;
- ComboBox两音的组合方式2_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式2_4.Font = null;
- ComboBox两音的组合方式2_4.FormattingEnabled = true;
- ComboBox两音的组合方式2_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items15")
- });
- ComboBox两音的组合方式2_4.Name = "ComboBox两音的组合方式2_4";
- Label21.AccessibleDescription = null;
- Label21.AccessibleName = null;
- componentResourceManager.ApplyResources(Label21, "Label21");
- Label21.Font = null;
- Label21.Name = "Label21";
- NumericUpDown2_D.AccessibleDescription = null;
- NumericUpDown2_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown2_D, "NumericUpDown2_D");
- NumericUpDown2_D.DecimalPlaces = 1;
- NumericUpDown2_D.Font = null;
- var numericUpDown2D1 = NumericUpDown2_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num18 = num1;
- numericUpDown2D1.Increment = num18;
- var numericUpDown2D2 = NumericUpDown2_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num19 = num1;
- numericUpDown2D2.Maximum = num19;
- var numericUpDown2D3 = NumericUpDown2_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num20 = num1;
- numericUpDown2D3.Minimum = num20;
- NumericUpDown2_D.Name = "NumericUpDown2_D";
- var numericUpDown2D4 = NumericUpDown2_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num21 = num1;
- numericUpDown2D4.Value = num21;
- NumericUpDown2_C.AccessibleDescription = null;
- NumericUpDown2_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown2_C, "NumericUpDown2_C");
- NumericUpDown2_C.DecimalPlaces = 1;
- NumericUpDown2_C.Font = null;
- var numericUpDown2C1 = NumericUpDown2_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num22 = num1;
- numericUpDown2C1.Increment = num22;
- var numericUpDown2C2 = NumericUpDown2_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num23 = num1;
- numericUpDown2C2.Maximum = num23;
- var numericUpDown2C3 = NumericUpDown2_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num24 = num1;
- numericUpDown2C3.Minimum = num24;
- NumericUpDown2_C.Name = "NumericUpDown2_C";
- var numericUpDown2C4 = NumericUpDown2_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num25 = num1;
- numericUpDown2C4.Value = num25;
- NumericUpDown2_B.AccessibleDescription = null;
- NumericUpDown2_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown2_B, "NumericUpDown2_B");
- NumericUpDown2_B.DecimalPlaces = 1;
- NumericUpDown2_B.Font = null;
- var numericUpDown2B1 = NumericUpDown2_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num26 = num1;
- numericUpDown2B1.Increment = num26;
- var numericUpDown2B2 = NumericUpDown2_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num27 = num1;
- numericUpDown2B2.Maximum = num27;
- var numericUpDown2B3 = NumericUpDown2_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num28 = num1;
- numericUpDown2B3.Minimum = num28;
- NumericUpDown2_B.Name = "NumericUpDown2_B";
- var numericUpDown2B4 = NumericUpDown2_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num29 = num1;
- numericUpDown2B4.Value = num29;
- Label22.AccessibleDescription = null;
- Label22.AccessibleName = null;
- componentResourceManager.ApplyResources(Label22, "Label22");
- Label22.Font = null;
- Label22.Name = "Label22";
- NumericUpDown2_A.AccessibleDescription = null;
- NumericUpDown2_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown2_A, "NumericUpDown2_A");
- NumericUpDown2_A.DecimalPlaces = 1;
- NumericUpDown2_A.Font = null;
- var numericUpDown2A1 = NumericUpDown2_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num30 = num1;
- numericUpDown2A1.Increment = num30;
- var numericUpDown2A2 = NumericUpDown2_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num31 = num1;
- numericUpDown2A2.Maximum = num31;
- var numericUpDown2A3 = NumericUpDown2_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num32 = num1;
- numericUpDown2A3.Minimum = num32;
- NumericUpDown2_A.Name = "NumericUpDown2_A";
- var numericUpDown2A4 = NumericUpDown2_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num33 = num1;
- numericUpDown2A4.Value = num33;
- Label23.AccessibleDescription = null;
- Label23.AccessibleName = null;
- componentResourceManager.ApplyResources(Label23, "Label23");
- Label23.Font = null;
- Label23.Name = "Label23";
- Label24.AccessibleDescription = null;
- Label24.AccessibleName = null;
- componentResourceManager.ApplyResources(Label24, "Label24");
- Label24.Font = null;
- Label24.Name = "Label24";
- Label25.AccessibleDescription = null;
- Label25.AccessibleName = null;
- componentResourceManager.ApplyResources(Label25, "Label25");
- Label25.Font = null;
- Label25.Name = "Label25";
- GroupBox6.AccessibleDescription = null;
- GroupBox6.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox6, "GroupBox6");
- GroupBox6.BackgroundImage = null;
- GroupBox6.Controls.Add(ComboBox提示音2_3);
- GroupBox6.Controls.Add(Label26);
- GroupBox6.Controls.Add(ComboBox解开两音后的响应方式2_3);
- GroupBox6.Controls.Add(Label27);
- GroupBox6.Controls.Add(ComboBox两音的组合方式2_3);
- GroupBox6.Controls.Add(Label28);
- GroupBox6.Font = null;
- GroupBox6.Name = "GroupBox6";
- GroupBox6.TabStop = false;
- ComboBox提示音2_3.AccessibleDescription = null;
- ComboBox提示音2_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音2_3, "ComboBox提示音2_3");
- ComboBox提示音2_3.BackgroundImage = null;
- ComboBox提示音2_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音2_3.Font = null;
- ComboBox提示音2_3.FormattingEnabled = true;
- ComboBox提示音2_3.Name = "ComboBox提示音2_3";
- Label26.AccessibleDescription = null;
- Label26.AccessibleName = null;
- componentResourceManager.ApplyResources(Label26, "Label26");
- Label26.Font = null;
- Label26.Name = "Label26";
- ComboBox解开两音后的响应方式2_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式2_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_3, "ComboBox解开两音后的响应方式2_3");
- ComboBox解开两音后的响应方式2_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式2_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式2_3.Font = null;
- ComboBox解开两音后的响应方式2_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式2_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items3")
- });
- ComboBox解开两音后的响应方式2_3.Name = "ComboBox解开两音后的响应方式2_3";
- Label27.AccessibleDescription = null;
- Label27.AccessibleName = null;
- componentResourceManager.ApplyResources(Label27, "Label27");
- Label27.Font = null;
- Label27.Name = "Label27";
- ComboBox两音的组合方式2_3.AccessibleDescription = null;
- ComboBox两音的组合方式2_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式2_3, "ComboBox两音的组合方式2_3");
- ComboBox两音的组合方式2_3.BackgroundImage = null;
- ComboBox两音的组合方式2_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式2_3.Font = null;
- ComboBox两音的组合方式2_3.FormattingEnabled = true;
- ComboBox两音的组合方式2_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items15")
- });
- ComboBox两音的组合方式2_3.Name = "ComboBox两音的组合方式2_3";
- Label28.AccessibleDescription = null;
- Label28.AccessibleName = null;
- componentResourceManager.ApplyResources(Label28, "Label28");
- Label28.Font = null;
- Label28.Name = "Label28";
- GroupBox7.AccessibleDescription = null;
- GroupBox7.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox7, "GroupBox7");
- GroupBox7.BackgroundImage = null;
- GroupBox7.Controls.Add(ComboBox提示音2_2);
- GroupBox7.Controls.Add(Label29);
- GroupBox7.Controls.Add(ComboBox解开两音后的响应方式2_2);
- GroupBox7.Controls.Add(Label30);
- GroupBox7.Controls.Add(ComboBox两音的组合方式2_2);
- GroupBox7.Controls.Add(Label31);
- GroupBox7.Font = null;
- GroupBox7.Name = "GroupBox7";
- GroupBox7.TabStop = false;
- ComboBox提示音2_2.AccessibleDescription = null;
- ComboBox提示音2_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音2_2, "ComboBox提示音2_2");
- ComboBox提示音2_2.BackgroundImage = null;
- ComboBox提示音2_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音2_2.Font = null;
- ComboBox提示音2_2.FormattingEnabled = true;
- ComboBox提示音2_2.Name = "ComboBox提示音2_2";
- Label29.AccessibleDescription = null;
- Label29.AccessibleName = null;
- componentResourceManager.ApplyResources(Label29, "Label29");
- Label29.Font = null;
- Label29.Name = "Label29";
- ComboBox解开两音后的响应方式2_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式2_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_2, "ComboBox解开两音后的响应方式2_2");
- ComboBox解开两音后的响应方式2_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式2_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式2_2.Font = null;
- ComboBox解开两音后的响应方式2_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式2_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items3")
- });
- ComboBox解开两音后的响应方式2_2.Name = "ComboBox解开两音后的响应方式2_2";
- Label30.AccessibleDescription = null;
- Label30.AccessibleName = null;
- componentResourceManager.ApplyResources(Label30, "Label30");
- Label30.Font = null;
- Label30.Name = "Label30";
- ComboBox两音的组合方式2_2.AccessibleDescription = null;
- ComboBox两音的组合方式2_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式2_2, "ComboBox两音的组合方式2_2");
- ComboBox两音的组合方式2_2.BackgroundImage = null;
- ComboBox两音的组合方式2_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式2_2.Font = null;
- ComboBox两音的组合方式2_2.FormattingEnabled = true;
- ComboBox两音的组合方式2_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items15")
- });
- ComboBox两音的组合方式2_2.Name = "ComboBox两音的组合方式2_2";
- Label31.AccessibleDescription = null;
- Label31.AccessibleName = null;
- componentResourceManager.ApplyResources(Label31, "Label31");
- Label31.Font = null;
- Label31.Name = "Label31";
- GroupBox8.AccessibleDescription = null;
- GroupBox8.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox8, "GroupBox8");
- GroupBox8.BackgroundImage = null;
- GroupBox8.Controls.Add(ComboBox提示音2_1);
- GroupBox8.Controls.Add(Label32);
- GroupBox8.Controls.Add(ComboBox解开两音后的响应方式2_1);
- GroupBox8.Controls.Add(Label33);
- GroupBox8.Controls.Add(ComboBox两音的组合方式2_1);
- GroupBox8.Controls.Add(Label34);
- GroupBox8.Font = null;
- GroupBox8.Name = "GroupBox8";
- GroupBox8.TabStop = false;
- ComboBox提示音2_1.AccessibleDescription = null;
- ComboBox提示音2_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音2_1, "ComboBox提示音2_1");
- ComboBox提示音2_1.BackgroundImage = null;
- ComboBox提示音2_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音2_1.Font = null;
- ComboBox提示音2_1.FormattingEnabled = true;
- ComboBox提示音2_1.Name = "ComboBox提示音2_1";
- Label32.AccessibleDescription = null;
- Label32.AccessibleName = null;
- componentResourceManager.ApplyResources(Label32, "Label32");
- Label32.Font = null;
- Label32.Name = "Label32";
- ComboBox解开两音后的响应方式2_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式2_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_1, "ComboBox解开两音后的响应方式2_1");
- ComboBox解开两音后的响应方式2_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式2_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式2_1.Font = null;
- ComboBox解开两音后的响应方式2_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式2_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items3")
- });
- ComboBox解开两音后的响应方式2_1.Name = "ComboBox解开两音后的响应方式2_1";
- Label33.AccessibleDescription = null;
- Label33.AccessibleName = null;
- componentResourceManager.ApplyResources(Label33, "Label33");
- Label33.Font = null;
- Label33.Name = "Label33";
- ComboBox两音的组合方式2_1.AccessibleDescription = null;
- ComboBox两音的组合方式2_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式2_1, "ComboBox两音的组合方式2_1");
- ComboBox两音的组合方式2_1.BackgroundImage = null;
- ComboBox两音的组合方式2_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式2_1.Font = null;
- ComboBox两音的组合方式2_1.FormattingEnabled = true;
- ComboBox两音的组合方式2_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items15")
- });
- ComboBox两音的组合方式2_1.Name = "ComboBox两音的组合方式2_1";
- Label34.AccessibleDescription = null;
- Label34.AccessibleName = null;
- componentResourceManager.ApplyResources(Label34, "Label34");
- Label34.Font = null;
- Label34.Name = "Label34";
- TabPage5.AccessibleDescription = null;
- TabPage5.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage5, "TabPage5");
- TabPage5.BackgroundImage = null;
- TabPage5.Controls.Add(GroupBox9);
- TabPage5.Controls.Add(NumericUpDown3_D);
- TabPage5.Controls.Add(NumericUpDown3_C);
- TabPage5.Controls.Add(NumericUpDown3_B);
- TabPage5.Controls.Add(Label38);
- TabPage5.Controls.Add(NumericUpDown3_A);
- TabPage5.Controls.Add(Label39);
- TabPage5.Controls.Add(Label40);
- TabPage5.Controls.Add(Label41);
- TabPage5.Controls.Add(GroupBox10);
- TabPage5.Controls.Add(GroupBox11);
- TabPage5.Controls.Add(GroupBox12);
- TabPage5.Font = null;
- TabPage5.Name = "TabPage5";
- TabPage5.UseVisualStyleBackColor = true;
- GroupBox9.AccessibleDescription = null;
- GroupBox9.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox9, "GroupBox9");
- GroupBox9.BackgroundImage = null;
- GroupBox9.Controls.Add(ComboBox提示音3_4);
- GroupBox9.Controls.Add(Label35);
- GroupBox9.Controls.Add(ComboBox解开两音后的响应方式3_4);
- GroupBox9.Controls.Add(Label36);
- GroupBox9.Controls.Add(ComboBox两音的组合方式3_4);
- GroupBox9.Controls.Add(Label37);
- GroupBox9.Font = null;
- GroupBox9.Name = "GroupBox9";
- GroupBox9.TabStop = false;
- ComboBox提示音3_4.AccessibleDescription = null;
- ComboBox提示音3_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音3_4, "ComboBox提示音3_4");
- ComboBox提示音3_4.BackgroundImage = null;
- ComboBox提示音3_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音3_4.Font = null;
- ComboBox提示音3_4.FormattingEnabled = true;
- ComboBox提示音3_4.Name = "ComboBox提示音3_4";
- Label35.AccessibleDescription = null;
- Label35.AccessibleName = null;
- componentResourceManager.ApplyResources(Label35, "Label35");
- Label35.Font = null;
- Label35.Name = "Label35";
- ComboBox解开两音后的响应方式3_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式3_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_4, "ComboBox解开两音后的响应方式3_4");
- ComboBox解开两音后的响应方式3_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式3_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式3_4.Font = null;
- ComboBox解开两音后的响应方式3_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式3_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items3")
- });
- ComboBox解开两音后的响应方式3_4.Name = "ComboBox解开两音后的响应方式3_4";
- Label36.AccessibleDescription = null;
- Label36.AccessibleName = null;
- componentResourceManager.ApplyResources(Label36, "Label36");
- Label36.Font = null;
- Label36.Name = "Label36";
- ComboBox两音的组合方式3_4.AccessibleDescription = null;
- ComboBox两音的组合方式3_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式3_4, "ComboBox两音的组合方式3_4");
- ComboBox两音的组合方式3_4.BackgroundImage = null;
- ComboBox两音的组合方式3_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式3_4.Font = null;
- ComboBox两音的组合方式3_4.FormattingEnabled = true;
- ComboBox两音的组合方式3_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items15")
- });
- ComboBox两音的组合方式3_4.Name = "ComboBox两音的组合方式3_4";
- Label37.AccessibleDescription = null;
- Label37.AccessibleName = null;
- componentResourceManager.ApplyResources(Label37, "Label37");
- Label37.Font = null;
- Label37.Name = "Label37";
- NumericUpDown3_D.AccessibleDescription = null;
- NumericUpDown3_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown3_D, "NumericUpDown3_D");
- NumericUpDown3_D.DecimalPlaces = 1;
- NumericUpDown3_D.Font = null;
- var numericUpDown3D1 = NumericUpDown3_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num34 = num1;
- numericUpDown3D1.Increment = num34;
- var numericUpDown3D2 = NumericUpDown3_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num35 = num1;
- numericUpDown3D2.Maximum = num35;
- var numericUpDown3D3 = NumericUpDown3_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num36 = num1;
- numericUpDown3D3.Minimum = num36;
- NumericUpDown3_D.Name = "NumericUpDown3_D";
- var numericUpDown3D4 = NumericUpDown3_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num37 = num1;
- numericUpDown3D4.Value = num37;
- NumericUpDown3_C.AccessibleDescription = null;
- NumericUpDown3_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown3_C, "NumericUpDown3_C");
- NumericUpDown3_C.DecimalPlaces = 1;
- NumericUpDown3_C.Font = null;
- var numericUpDown3C1 = NumericUpDown3_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num38 = num1;
- numericUpDown3C1.Increment = num38;
- var numericUpDown3C2 = NumericUpDown3_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num39 = num1;
- numericUpDown3C2.Maximum = num39;
- var numericUpDown3C3 = NumericUpDown3_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num40 = num1;
- numericUpDown3C3.Minimum = num40;
- NumericUpDown3_C.Name = "NumericUpDown3_C";
- var numericUpDown3C4 = NumericUpDown3_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num41 = num1;
- numericUpDown3C4.Value = num41;
- NumericUpDown3_B.AccessibleDescription = null;
- NumericUpDown3_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown3_B, "NumericUpDown3_B");
- NumericUpDown3_B.DecimalPlaces = 1;
- NumericUpDown3_B.Font = null;
- var numericUpDown3B1 = NumericUpDown3_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num42 = num1;
- numericUpDown3B1.Increment = num42;
- var numericUpDown3B2 = NumericUpDown3_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num43 = num1;
- numericUpDown3B2.Maximum = num43;
- var numericUpDown3B3 = NumericUpDown3_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num44 = num1;
- numericUpDown3B3.Minimum = num44;
- NumericUpDown3_B.Name = "NumericUpDown3_B";
- var numericUpDown3B4 = NumericUpDown3_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num45 = num1;
- numericUpDown3B4.Value = num45;
- Label38.AccessibleDescription = null;
- Label38.AccessibleName = null;
- componentResourceManager.ApplyResources(Label38, "Label38");
- Label38.Font = null;
- Label38.Name = "Label38";
- NumericUpDown3_A.AccessibleDescription = null;
- NumericUpDown3_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown3_A, "NumericUpDown3_A");
- NumericUpDown3_A.DecimalPlaces = 1;
- NumericUpDown3_A.Font = null;
- var numericUpDown3A1 = NumericUpDown3_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num46 = num1;
- numericUpDown3A1.Increment = num46;
- var numericUpDown3A2 = NumericUpDown3_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num47 = num1;
- numericUpDown3A2.Maximum = num47;
- var numericUpDown3A3 = NumericUpDown3_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num48 = num1;
- numericUpDown3A3.Minimum = num48;
- NumericUpDown3_A.Name = "NumericUpDown3_A";
- var numericUpDown3A4 = NumericUpDown3_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num49 = num1;
- numericUpDown3A4.Value = num49;
- Label39.AccessibleDescription = null;
- Label39.AccessibleName = null;
- componentResourceManager.ApplyResources(Label39, "Label39");
- Label39.Font = null;
- Label39.Name = "Label39";
- Label40.AccessibleDescription = null;
- Label40.AccessibleName = null;
- componentResourceManager.ApplyResources(Label40, "Label40");
- Label40.Font = null;
- Label40.Name = "Label40";
- Label41.AccessibleDescription = null;
- Label41.AccessibleName = null;
- componentResourceManager.ApplyResources(Label41, "Label41");
- Label41.Font = null;
- Label41.Name = "Label41";
- GroupBox10.AccessibleDescription = null;
- GroupBox10.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox10, "GroupBox10");
- GroupBox10.BackgroundImage = null;
- GroupBox10.Controls.Add(ComboBox提示音3_3);
- GroupBox10.Controls.Add(Label42);
- GroupBox10.Controls.Add(ComboBox解开两音后的响应方式3_3);
- GroupBox10.Controls.Add(Label43);
- GroupBox10.Controls.Add(ComboBox两音的组合方式3_3);
- GroupBox10.Controls.Add(Label44);
- GroupBox10.Font = null;
- GroupBox10.Name = "GroupBox10";
- GroupBox10.TabStop = false;
- ComboBox提示音3_3.AccessibleDescription = null;
- ComboBox提示音3_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音3_3, "ComboBox提示音3_3");
- ComboBox提示音3_3.BackgroundImage = null;
- ComboBox提示音3_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音3_3.Font = null;
- ComboBox提示音3_3.FormattingEnabled = true;
- ComboBox提示音3_3.Name = "ComboBox提示音3_3";
- Label42.AccessibleDescription = null;
- Label42.AccessibleName = null;
- componentResourceManager.ApplyResources(Label42, "Label42");
- Label42.Font = null;
- Label42.Name = "Label42";
- ComboBox解开两音后的响应方式3_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式3_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_3, "ComboBox解开两音后的响应方式3_3");
- ComboBox解开两音后的响应方式3_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式3_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式3_3.Font = null;
- ComboBox解开两音后的响应方式3_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式3_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items3")
- });
- ComboBox解开两音后的响应方式3_3.Name = "ComboBox解开两音后的响应方式3_3";
- Label43.AccessibleDescription = null;
- Label43.AccessibleName = null;
- componentResourceManager.ApplyResources(Label43, "Label43");
- Label43.Font = null;
- Label43.Name = "Label43";
- ComboBox两音的组合方式3_3.AccessibleDescription = null;
- ComboBox两音的组合方式3_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式3_3, "ComboBox两音的组合方式3_3");
- ComboBox两音的组合方式3_3.BackgroundImage = null;
- ComboBox两音的组合方式3_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式3_3.Font = null;
- ComboBox两音的组合方式3_3.FormattingEnabled = true;
- ComboBox两音的组合方式3_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items15")
- });
- ComboBox两音的组合方式3_3.Name = "ComboBox两音的组合方式3_3";
- Label44.AccessibleDescription = null;
- Label44.AccessibleName = null;
- componentResourceManager.ApplyResources(Label44, "Label44");
- Label44.Font = null;
- Label44.Name = "Label44";
- GroupBox11.AccessibleDescription = null;
- GroupBox11.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox11, "GroupBox11");
- GroupBox11.BackgroundImage = null;
- GroupBox11.Controls.Add(ComboBox提示音3_2);
- GroupBox11.Controls.Add(Label45);
- GroupBox11.Controls.Add(ComboBox解开两音后的响应方式3_2);
- GroupBox11.Controls.Add(Label46);
- GroupBox11.Controls.Add(ComboBox两音的组合方式3_2);
- GroupBox11.Controls.Add(Label47);
- GroupBox11.Font = null;
- GroupBox11.Name = "GroupBox11";
- GroupBox11.TabStop = false;
- ComboBox提示音3_2.AccessibleDescription = null;
- ComboBox提示音3_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音3_2, "ComboBox提示音3_2");
- ComboBox提示音3_2.BackgroundImage = null;
- ComboBox提示音3_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音3_2.Font = null;
- ComboBox提示音3_2.FormattingEnabled = true;
- ComboBox提示音3_2.Name = "ComboBox提示音3_2";
- Label45.AccessibleDescription = null;
- Label45.AccessibleName = null;
- componentResourceManager.ApplyResources(Label45, "Label45");
- Label45.Font = null;
- Label45.Name = "Label45";
- ComboBox解开两音后的响应方式3_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式3_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_2, "ComboBox解开两音后的响应方式3_2");
- ComboBox解开两音后的响应方式3_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式3_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式3_2.Font = null;
- ComboBox解开两音后的响应方式3_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式3_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items3")
- });
- ComboBox解开两音后的响应方式3_2.Name = "ComboBox解开两音后的响应方式3_2";
- Label46.AccessibleDescription = null;
- Label46.AccessibleName = null;
- componentResourceManager.ApplyResources(Label46, "Label46");
- Label46.Font = null;
- Label46.Name = "Label46";
- ComboBox两音的组合方式3_2.AccessibleDescription = null;
- ComboBox两音的组合方式3_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式3_2, "ComboBox两音的组合方式3_2");
- ComboBox两音的组合方式3_2.BackgroundImage = null;
- ComboBox两音的组合方式3_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式3_2.Font = null;
- ComboBox两音的组合方式3_2.FormattingEnabled = true;
- ComboBox两音的组合方式3_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items15")
- });
- ComboBox两音的组合方式3_2.Name = "ComboBox两音的组合方式3_2";
- Label47.AccessibleDescription = null;
- Label47.AccessibleName = null;
- componentResourceManager.ApplyResources(Label47, "Label47");
- Label47.Font = null;
- Label47.Name = "Label47";
- GroupBox12.AccessibleDescription = null;
- GroupBox12.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox12, "GroupBox12");
- GroupBox12.BackgroundImage = null;
- GroupBox12.Controls.Add(ComboBox提示音3_1);
- GroupBox12.Controls.Add(Label48);
- GroupBox12.Controls.Add(ComboBox解开两音后的响应方式3_1);
- GroupBox12.Controls.Add(Label49);
- GroupBox12.Controls.Add(ComboBox两音的组合方式3_1);
- GroupBox12.Controls.Add(Label50);
- GroupBox12.Font = null;
- GroupBox12.Name = "GroupBox12";
- GroupBox12.TabStop = false;
- ComboBox提示音3_1.AccessibleDescription = null;
- ComboBox提示音3_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音3_1, "ComboBox提示音3_1");
- ComboBox提示音3_1.BackgroundImage = null;
- ComboBox提示音3_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音3_1.Font = null;
- ComboBox提示音3_1.FormattingEnabled = true;
- ComboBox提示音3_1.Name = "ComboBox提示音3_1";
- Label48.AccessibleDescription = null;
- Label48.AccessibleName = null;
- componentResourceManager.ApplyResources(Label48, "Label48");
- Label48.Font = null;
- Label48.Name = "Label48";
- ComboBox解开两音后的响应方式3_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式3_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_1, "ComboBox解开两音后的响应方式3_1");
- ComboBox解开两音后的响应方式3_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式3_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式3_1.Font = null;
- ComboBox解开两音后的响应方式3_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式3_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items3")
- });
- ComboBox解开两音后的响应方式3_1.Name = "ComboBox解开两音后的响应方式3_1";
- Label49.AccessibleDescription = null;
- Label49.AccessibleName = null;
- componentResourceManager.ApplyResources(Label49, "Label49");
- Label49.Font = null;
- Label49.Name = "Label49";
- ComboBox两音的组合方式3_1.AccessibleDescription = null;
- ComboBox两音的组合方式3_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式3_1, "ComboBox两音的组合方式3_1");
- ComboBox两音的组合方式3_1.BackgroundImage = null;
- ComboBox两音的组合方式3_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式3_1.Font = null;
- ComboBox两音的组合方式3_1.FormattingEnabled = true;
- ComboBox两音的组合方式3_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items15")
- });
- ComboBox两音的组合方式3_1.Name = "ComboBox两音的组合方式3_1";
- Label50.AccessibleDescription = null;
- Label50.AccessibleName = null;
- componentResourceManager.ApplyResources(Label50, "Label50");
- Label50.Font = null;
- Label50.Name = "Label50";
- TabPage6.AccessibleDescription = null;
- TabPage6.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage6, "TabPage6");
- TabPage6.BackgroundImage = null;
- TabPage6.Controls.Add(GroupBox13);
- TabPage6.Controls.Add(NumericUpDown4_D);
- TabPage6.Controls.Add(NumericUpDown4_C);
- TabPage6.Controls.Add(NumericUpDown4_B);
- TabPage6.Controls.Add(Label54);
- TabPage6.Controls.Add(NumericUpDown4_A);
- TabPage6.Controls.Add(Label55);
- TabPage6.Controls.Add(Label56);
- TabPage6.Controls.Add(Label57);
- TabPage6.Controls.Add(GroupBox14);
- TabPage6.Controls.Add(GroupBox15);
- TabPage6.Controls.Add(GroupBox16);
- TabPage6.Font = null;
- TabPage6.Name = "TabPage6";
- TabPage6.UseVisualStyleBackColor = true;
- GroupBox13.AccessibleDescription = null;
- GroupBox13.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox13, "GroupBox13");
- GroupBox13.BackgroundImage = null;
- GroupBox13.Controls.Add(ComboBox提示音4_4);
- GroupBox13.Controls.Add(Label51);
- GroupBox13.Controls.Add(ComboBox解开两音后的响应方式4_4);
- GroupBox13.Controls.Add(Label52);
- GroupBox13.Controls.Add(ComboBox两音的组合方式4_4);
- GroupBox13.Controls.Add(Label53);
- GroupBox13.Font = null;
- GroupBox13.Name = "GroupBox13";
- GroupBox13.TabStop = false;
- ComboBox提示音4_4.AccessibleDescription = null;
- ComboBox提示音4_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音4_4, "ComboBox提示音4_4");
- ComboBox提示音4_4.BackgroundImage = null;
- ComboBox提示音4_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音4_4.Font = null;
- ComboBox提示音4_4.FormattingEnabled = true;
- ComboBox提示音4_4.Name = "ComboBox提示音4_4";
- Label51.AccessibleDescription = null;
- Label51.AccessibleName = null;
- componentResourceManager.ApplyResources(Label51, "Label51");
- Label51.Font = null;
- Label51.Name = "Label51";
- ComboBox解开两音后的响应方式4_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式4_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_4, "ComboBox解开两音后的响应方式4_4");
- ComboBox解开两音后的响应方式4_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式4_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式4_4.Font = null;
- ComboBox解开两音后的响应方式4_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式4_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items3")
- });
- ComboBox解开两音后的响应方式4_4.Name = "ComboBox解开两音后的响应方式4_4";
- Label52.AccessibleDescription = null;
- Label52.AccessibleName = null;
- componentResourceManager.ApplyResources(Label52, "Label52");
- Label52.Font = null;
- Label52.Name = "Label52";
- ComboBox两音的组合方式4_4.AccessibleDescription = null;
- ComboBox两音的组合方式4_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式4_4, "ComboBox两音的组合方式4_4");
- ComboBox两音的组合方式4_4.BackgroundImage = null;
- ComboBox两音的组合方式4_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式4_4.Font = null;
- ComboBox两音的组合方式4_4.FormattingEnabled = true;
- ComboBox两音的组合方式4_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items15")
- });
- ComboBox两音的组合方式4_4.Name = "ComboBox两音的组合方式4_4";
- Label53.AccessibleDescription = null;
- Label53.AccessibleName = null;
- componentResourceManager.ApplyResources(Label53, "Label53");
- Label53.Font = null;
- Label53.Name = "Label53";
- NumericUpDown4_D.AccessibleDescription = null;
- NumericUpDown4_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown4_D, "NumericUpDown4_D");
- NumericUpDown4_D.DecimalPlaces = 1;
- NumericUpDown4_D.Font = null;
- var numericUpDown4D1 = NumericUpDown4_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num50 = num1;
- numericUpDown4D1.Increment = num50;
- var numericUpDown4D2 = NumericUpDown4_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num51 = num1;
- numericUpDown4D2.Maximum = num51;
- var numericUpDown4D3 = NumericUpDown4_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num52 = num1;
- numericUpDown4D3.Minimum = num52;
- NumericUpDown4_D.Name = "NumericUpDown4_D";
- var numericUpDown4D4 = NumericUpDown4_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num53 = num1;
- numericUpDown4D4.Value = num53;
- NumericUpDown4_C.AccessibleDescription = null;
- NumericUpDown4_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown4_C, "NumericUpDown4_C");
- NumericUpDown4_C.DecimalPlaces = 1;
- NumericUpDown4_C.Font = null;
- var numericUpDown4C1 = NumericUpDown4_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num54 = num1;
- numericUpDown4C1.Increment = num54;
- var numericUpDown4C2 = NumericUpDown4_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num55 = num1;
- numericUpDown4C2.Maximum = num55;
- var numericUpDown4C3 = NumericUpDown4_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num56 = num1;
- numericUpDown4C3.Minimum = num56;
- NumericUpDown4_C.Name = "NumericUpDown4_C";
- var numericUpDown4C4 = NumericUpDown4_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num57 = num1;
- numericUpDown4C4.Value = num57;
- NumericUpDown4_B.AccessibleDescription = null;
- NumericUpDown4_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown4_B, "NumericUpDown4_B");
- NumericUpDown4_B.DecimalPlaces = 1;
- NumericUpDown4_B.Font = null;
- var numericUpDown4B1 = NumericUpDown4_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num58 = num1;
- numericUpDown4B1.Increment = num58;
- var numericUpDown4B2 = NumericUpDown4_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num59 = num1;
- numericUpDown4B2.Maximum = num59;
- var numericUpDown4B3 = NumericUpDown4_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num60 = num1;
- numericUpDown4B3.Minimum = num60;
- NumericUpDown4_B.Name = "NumericUpDown4_B";
- var numericUpDown4B4 = NumericUpDown4_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num61 = num1;
- numericUpDown4B4.Value = num61;
- Label54.AccessibleDescription = null;
- Label54.AccessibleName = null;
- componentResourceManager.ApplyResources(Label54, "Label54");
- Label54.Font = null;
- Label54.Name = "Label54";
- NumericUpDown4_A.AccessibleDescription = null;
- NumericUpDown4_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown4_A, "NumericUpDown4_A");
- NumericUpDown4_A.DecimalPlaces = 1;
- NumericUpDown4_A.Font = null;
- var numericUpDown4A1 = NumericUpDown4_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num62 = num1;
- numericUpDown4A1.Increment = num62;
- var numericUpDown4A2 = NumericUpDown4_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num63 = num1;
- numericUpDown4A2.Maximum = num63;
- var numericUpDown4A3 = NumericUpDown4_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num64 = num1;
- numericUpDown4A3.Minimum = num64;
- NumericUpDown4_A.Name = "NumericUpDown4_A";
- var numericUpDown4A4 = NumericUpDown4_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num65 = num1;
- numericUpDown4A4.Value = num65;
- Label55.AccessibleDescription = null;
- Label55.AccessibleName = null;
- componentResourceManager.ApplyResources(Label55, "Label55");
- Label55.Font = null;
- Label55.Name = "Label55";
- Label56.AccessibleDescription = null;
- Label56.AccessibleName = null;
- componentResourceManager.ApplyResources(Label56, "Label56");
- Label56.Font = null;
- Label56.Name = "Label56";
- Label57.AccessibleDescription = null;
- Label57.AccessibleName = null;
- componentResourceManager.ApplyResources(Label57, "Label57");
- Label57.Font = null;
- Label57.Name = "Label57";
- GroupBox14.AccessibleDescription = null;
- GroupBox14.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox14, "GroupBox14");
- GroupBox14.BackgroundImage = null;
- GroupBox14.Controls.Add(ComboBox提示音4_3);
- GroupBox14.Controls.Add(Label58);
- GroupBox14.Controls.Add(ComboBox解开两音后的响应方式4_3);
- GroupBox14.Controls.Add(Label59);
- GroupBox14.Controls.Add(ComboBox两音的组合方式4_3);
- GroupBox14.Controls.Add(Label60);
- GroupBox14.Font = null;
- GroupBox14.Name = "GroupBox14";
- GroupBox14.TabStop = false;
- ComboBox提示音4_3.AccessibleDescription = null;
- ComboBox提示音4_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音4_3, "ComboBox提示音4_3");
- ComboBox提示音4_3.BackgroundImage = null;
- ComboBox提示音4_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音4_3.Font = null;
- ComboBox提示音4_3.FormattingEnabled = true;
- ComboBox提示音4_3.Name = "ComboBox提示音4_3";
- Label58.AccessibleDescription = null;
- Label58.AccessibleName = null;
- componentResourceManager.ApplyResources(Label58, "Label58");
- Label58.Font = null;
- Label58.Name = "Label58";
- ComboBox解开两音后的响应方式4_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式4_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_3, "ComboBox解开两音后的响应方式4_3");
- ComboBox解开两音后的响应方式4_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式4_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式4_3.Font = null;
- ComboBox解开两音后的响应方式4_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式4_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items3")
- });
- ComboBox解开两音后的响应方式4_3.Name = "ComboBox解开两音后的响应方式4_3";
- Label59.AccessibleDescription = null;
- Label59.AccessibleName = null;
- componentResourceManager.ApplyResources(Label59, "Label59");
- Label59.Font = null;
- Label59.Name = "Label59";
- ComboBox两音的组合方式4_3.AccessibleDescription = null;
- ComboBox两音的组合方式4_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式4_3, "ComboBox两音的组合方式4_3");
- ComboBox两音的组合方式4_3.BackgroundImage = null;
- ComboBox两音的组合方式4_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式4_3.Font = null;
- ComboBox两音的组合方式4_3.FormattingEnabled = true;
- ComboBox两音的组合方式4_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items15")
- });
- ComboBox两音的组合方式4_3.Name = "ComboBox两音的组合方式4_3";
- Label60.AccessibleDescription = null;
- Label60.AccessibleName = null;
- componentResourceManager.ApplyResources(Label60, "Label60");
- Label60.Font = null;
- Label60.Name = "Label60";
- GroupBox15.AccessibleDescription = null;
- GroupBox15.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox15, "GroupBox15");
- GroupBox15.BackgroundImage = null;
- GroupBox15.Controls.Add(ComboBox提示音4_2);
- GroupBox15.Controls.Add(Label61);
- GroupBox15.Controls.Add(ComboBox解开两音后的响应方式4_2);
- GroupBox15.Controls.Add(Label62);
- GroupBox15.Controls.Add(ComboBox两音的组合方式4_2);
- GroupBox15.Controls.Add(Label63);
- GroupBox15.Font = null;
- GroupBox15.Name = "GroupBox15";
- GroupBox15.TabStop = false;
- ComboBox提示音4_2.AccessibleDescription = null;
- ComboBox提示音4_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音4_2, "ComboBox提示音4_2");
- ComboBox提示音4_2.BackgroundImage = null;
- ComboBox提示音4_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音4_2.Font = null;
- ComboBox提示音4_2.FormattingEnabled = true;
- ComboBox提示音4_2.Name = "ComboBox提示音4_2";
- Label61.AccessibleDescription = null;
- Label61.AccessibleName = null;
- componentResourceManager.ApplyResources(Label61, "Label61");
- Label61.Font = null;
- Label61.Name = "Label61";
- ComboBox解开两音后的响应方式4_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式4_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_2, "ComboBox解开两音后的响应方式4_2");
- ComboBox解开两音后的响应方式4_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式4_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式4_2.Font = null;
- ComboBox解开两音后的响应方式4_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式4_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items3")
- });
- ComboBox解开两音后的响应方式4_2.Name = "ComboBox解开两音后的响应方式4_2";
- Label62.AccessibleDescription = null;
- Label62.AccessibleName = null;
- componentResourceManager.ApplyResources(Label62, "Label62");
- Label62.Font = null;
- Label62.Name = "Label62";
- ComboBox两音的组合方式4_2.AccessibleDescription = null;
- ComboBox两音的组合方式4_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式4_2, "ComboBox两音的组合方式4_2");
- ComboBox两音的组合方式4_2.BackgroundImage = null;
- ComboBox两音的组合方式4_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式4_2.Font = null;
- ComboBox两音的组合方式4_2.FormattingEnabled = true;
- ComboBox两音的组合方式4_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items15")
- });
- ComboBox两音的组合方式4_2.Name = "ComboBox两音的组合方式4_2";
- Label63.AccessibleDescription = null;
- Label63.AccessibleName = null;
- componentResourceManager.ApplyResources(Label63, "Label63");
- Label63.Font = null;
- Label63.Name = "Label63";
- GroupBox16.AccessibleDescription = null;
- GroupBox16.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox16, "GroupBox16");
- GroupBox16.BackgroundImage = null;
- GroupBox16.Controls.Add(ComboBox提示音4_1);
- GroupBox16.Controls.Add(Label64);
- GroupBox16.Controls.Add(ComboBox解开两音后的响应方式4_1);
- GroupBox16.Controls.Add(Label65);
- GroupBox16.Controls.Add(ComboBox两音的组合方式4_1);
- GroupBox16.Controls.Add(Label66);
- GroupBox16.Font = null;
- GroupBox16.Name = "GroupBox16";
- GroupBox16.TabStop = false;
- ComboBox提示音4_1.AccessibleDescription = null;
- ComboBox提示音4_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音4_1, "ComboBox提示音4_1");
- ComboBox提示音4_1.BackgroundImage = null;
- ComboBox提示音4_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音4_1.Font = null;
- ComboBox提示音4_1.FormattingEnabled = true;
- ComboBox提示音4_1.Name = "ComboBox提示音4_1";
- Label64.AccessibleDescription = null;
- Label64.AccessibleName = null;
- componentResourceManager.ApplyResources(Label64, "Label64");
- Label64.Font = null;
- Label64.Name = "Label64";
- ComboBox解开两音后的响应方式4_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式4_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_1, "ComboBox解开两音后的响应方式4_1");
- ComboBox解开两音后的响应方式4_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式4_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式4_1.Font = null;
- ComboBox解开两音后的响应方式4_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式4_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items3")
- });
- ComboBox解开两音后的响应方式4_1.Name = "ComboBox解开两音后的响应方式4_1";
- Label65.AccessibleDescription = null;
- Label65.AccessibleName = null;
- componentResourceManager.ApplyResources(Label65, "Label65");
- Label65.Font = null;
- Label65.Name = "Label65";
- ComboBox两音的组合方式4_1.AccessibleDescription = null;
- ComboBox两音的组合方式4_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式4_1, "ComboBox两音的组合方式4_1");
- ComboBox两音的组合方式4_1.BackgroundImage = null;
- ComboBox两音的组合方式4_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式4_1.Font = null;
- ComboBox两音的组合方式4_1.FormattingEnabled = true;
- ComboBox两音的组合方式4_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items15")
- });
- ComboBox两音的组合方式4_1.Name = "ComboBox两音的组合方式4_1";
- Label66.AccessibleDescription = null;
- Label66.AccessibleName = null;
- componentResourceManager.ApplyResources(Label66, "Label66");
- Label66.Font = null;
- Label66.Name = "Label66";
- TabPage7.AccessibleDescription = null;
- TabPage7.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage7, "TabPage7");
- TabPage7.BackgroundImage = null;
- TabPage7.Controls.Add(GroupBox17);
- TabPage7.Controls.Add(NumericUpDown5_D);
- TabPage7.Controls.Add(NumericUpDown5_C);
- TabPage7.Controls.Add(NumericUpDown5_B);
- TabPage7.Controls.Add(Label73);
- TabPage7.Controls.Add(NumericUpDown5_A);
- TabPage7.Controls.Add(Label83);
- TabPage7.Controls.Add(Label84);
- TabPage7.Controls.Add(Label85);
- TabPage7.Controls.Add(GroupBox18);
- TabPage7.Controls.Add(GroupBox19);
- TabPage7.Controls.Add(GroupBox20);
- TabPage7.Font = null;
- TabPage7.Name = "TabPage7";
- TabPage7.UseVisualStyleBackColor = true;
- GroupBox17.AccessibleDescription = null;
- GroupBox17.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox17, "GroupBox17");
- GroupBox17.BackgroundImage = null;
- GroupBox17.Controls.Add(ComboBox提示音5_4);
- GroupBox17.Controls.Add(Label70);
- GroupBox17.Controls.Add(ComboBox解开两音后的响应方式5_4);
- GroupBox17.Controls.Add(Label71);
- GroupBox17.Controls.Add(ComboBox两音的组合方式5_4);
- GroupBox17.Controls.Add(Label72);
- GroupBox17.Font = null;
- GroupBox17.Name = "GroupBox17";
- GroupBox17.TabStop = false;
- ComboBox提示音5_4.AccessibleDescription = null;
- ComboBox提示音5_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音5_4, "ComboBox提示音5_4");
- ComboBox提示音5_4.BackgroundImage = null;
- ComboBox提示音5_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音5_4.Font = null;
- ComboBox提示音5_4.FormattingEnabled = true;
- ComboBox提示音5_4.Name = "ComboBox提示音5_4";
- Label70.AccessibleDescription = null;
- Label70.AccessibleName = null;
- componentResourceManager.ApplyResources(Label70, "Label70");
- Label70.Font = null;
- Label70.Name = "Label70";
- ComboBox解开两音后的响应方式5_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式5_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_4, "ComboBox解开两音后的响应方式5_4");
- ComboBox解开两音后的响应方式5_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式5_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式5_4.Font = null;
- ComboBox解开两音后的响应方式5_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式5_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items3")
- });
- ComboBox解开两音后的响应方式5_4.Name = "ComboBox解开两音后的响应方式5_4";
- Label71.AccessibleDescription = null;
- Label71.AccessibleName = null;
- componentResourceManager.ApplyResources(Label71, "Label71");
- Label71.Font = null;
- Label71.Name = "Label71";
- ComboBox两音的组合方式5_4.AccessibleDescription = null;
- ComboBox两音的组合方式5_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式5_4, "ComboBox两音的组合方式5_4");
- ComboBox两音的组合方式5_4.BackgroundImage = null;
- ComboBox两音的组合方式5_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式5_4.Font = null;
- ComboBox两音的组合方式5_4.FormattingEnabled = true;
- ComboBox两音的组合方式5_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items15")
- });
- ComboBox两音的组合方式5_4.Name = "ComboBox两音的组合方式5_4";
- Label72.AccessibleDescription = null;
- Label72.AccessibleName = null;
- componentResourceManager.ApplyResources(Label72, "Label72");
- Label72.Font = null;
- Label72.Name = "Label72";
- NumericUpDown5_D.AccessibleDescription = null;
- NumericUpDown5_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown5_D, "NumericUpDown5_D");
- NumericUpDown5_D.DecimalPlaces = 1;
- NumericUpDown5_D.Font = null;
- var numericUpDown5D1 = NumericUpDown5_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num66 = num1;
- numericUpDown5D1.Increment = num66;
- var numericUpDown5D2 = NumericUpDown5_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num67 = num1;
- numericUpDown5D2.Maximum = num67;
- var numericUpDown5D3 = NumericUpDown5_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num68 = num1;
- numericUpDown5D3.Minimum = num68;
- NumericUpDown5_D.Name = "NumericUpDown5_D";
- var numericUpDown5D4 = NumericUpDown5_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num69 = num1;
- numericUpDown5D4.Value = num69;
- NumericUpDown5_C.AccessibleDescription = null;
- NumericUpDown5_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown5_C, "NumericUpDown5_C");
- NumericUpDown5_C.DecimalPlaces = 1;
- NumericUpDown5_C.Font = null;
- var numericUpDown5C1 = NumericUpDown5_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num70 = num1;
- numericUpDown5C1.Increment = num70;
- var numericUpDown5C2 = NumericUpDown5_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num71 = num1;
- numericUpDown5C2.Maximum = num71;
- var numericUpDown5C3 = NumericUpDown5_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num72 = num1;
- numericUpDown5C3.Minimum = num72;
- NumericUpDown5_C.Name = "NumericUpDown5_C";
- var numericUpDown5C4 = NumericUpDown5_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num73 = num1;
- numericUpDown5C4.Value = num73;
- NumericUpDown5_B.AccessibleDescription = null;
- NumericUpDown5_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown5_B, "NumericUpDown5_B");
- NumericUpDown5_B.DecimalPlaces = 1;
- NumericUpDown5_B.Font = null;
- var numericUpDown5B1 = NumericUpDown5_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num74 = num1;
- numericUpDown5B1.Increment = num74;
- var numericUpDown5B2 = NumericUpDown5_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num75 = num1;
- numericUpDown5B2.Maximum = num75;
- var numericUpDown5B3 = NumericUpDown5_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num76 = num1;
- numericUpDown5B3.Minimum = num76;
- NumericUpDown5_B.Name = "NumericUpDown5_B";
- var numericUpDown5B4 = NumericUpDown5_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num77 = num1;
- numericUpDown5B4.Value = num77;
- Label73.AccessibleDescription = null;
- Label73.AccessibleName = null;
- componentResourceManager.ApplyResources(Label73, "Label73");
- Label73.Font = null;
- Label73.Name = "Label73";
- NumericUpDown5_A.AccessibleDescription = null;
- NumericUpDown5_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown5_A, "NumericUpDown5_A");
- NumericUpDown5_A.DecimalPlaces = 1;
- NumericUpDown5_A.Font = null;
- var numericUpDown5A1 = NumericUpDown5_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num78 = num1;
- numericUpDown5A1.Increment = num78;
- var numericUpDown5A2 = NumericUpDown5_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num79 = num1;
- numericUpDown5A2.Maximum = num79;
- var numericUpDown5A3 = NumericUpDown5_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num80 = num1;
- numericUpDown5A3.Minimum = num80;
- NumericUpDown5_A.Name = "NumericUpDown5_A";
- var numericUpDown5A4 = NumericUpDown5_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num81 = num1;
- numericUpDown5A4.Value = num81;
- Label83.AccessibleDescription = null;
- Label83.AccessibleName = null;
- componentResourceManager.ApplyResources(Label83, "Label83");
- Label83.Font = null;
- Label83.Name = "Label83";
- Label84.AccessibleDescription = null;
- Label84.AccessibleName = null;
- componentResourceManager.ApplyResources(Label84, "Label84");
- Label84.Font = null;
- Label84.Name = "Label84";
- Label85.AccessibleDescription = null;
- Label85.AccessibleName = null;
- componentResourceManager.ApplyResources(Label85, "Label85");
- Label85.Font = null;
- Label85.Name = "Label85";
- GroupBox18.AccessibleDescription = null;
- GroupBox18.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox18, "GroupBox18");
- GroupBox18.BackgroundImage = null;
- GroupBox18.Controls.Add(ComboBox提示音5_3);
- GroupBox18.Controls.Add(Label86);
- GroupBox18.Controls.Add(ComboBox解开两音后的响应方式5_3);
- GroupBox18.Controls.Add(Label87);
- GroupBox18.Controls.Add(ComboBox两音的组合方式5_3);
- GroupBox18.Controls.Add(Label88);
- GroupBox18.Font = null;
- GroupBox18.Name = "GroupBox18";
- GroupBox18.TabStop = false;
- ComboBox提示音5_3.AccessibleDescription = null;
- ComboBox提示音5_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音5_3, "ComboBox提示音5_3");
- ComboBox提示音5_3.BackgroundImage = null;
- ComboBox提示音5_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音5_3.Font = null;
- ComboBox提示音5_3.FormattingEnabled = true;
- ComboBox提示音5_3.Name = "ComboBox提示音5_3";
- Label86.AccessibleDescription = null;
- Label86.AccessibleName = null;
- componentResourceManager.ApplyResources(Label86, "Label86");
- Label86.Font = null;
- Label86.Name = "Label86";
- ComboBox解开两音后的响应方式5_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式5_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_3, "ComboBox解开两音后的响应方式5_3");
- ComboBox解开两音后的响应方式5_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式5_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式5_3.Font = null;
- ComboBox解开两音后的响应方式5_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式5_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items3")
- });
- ComboBox解开两音后的响应方式5_3.Name = "ComboBox解开两音后的响应方式5_3";
- Label87.AccessibleDescription = null;
- Label87.AccessibleName = null;
- componentResourceManager.ApplyResources(Label87, "Label87");
- Label87.Font = null;
- Label87.Name = "Label87";
- ComboBox两音的组合方式5_3.AccessibleDescription = null;
- ComboBox两音的组合方式5_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式5_3, "ComboBox两音的组合方式5_3");
- ComboBox两音的组合方式5_3.BackgroundImage = null;
- ComboBox两音的组合方式5_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式5_3.Font = null;
- ComboBox两音的组合方式5_3.FormattingEnabled = true;
- ComboBox两音的组合方式5_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items15")
- });
- ComboBox两音的组合方式5_3.Name = "ComboBox两音的组合方式5_3";
- Label88.AccessibleDescription = null;
- Label88.AccessibleName = null;
- componentResourceManager.ApplyResources(Label88, "Label88");
- Label88.Font = null;
- Label88.Name = "Label88";
- GroupBox19.AccessibleDescription = null;
- GroupBox19.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox19, "GroupBox19");
- GroupBox19.BackgroundImage = null;
- GroupBox19.Controls.Add(ComboBox提示音5_2);
- GroupBox19.Controls.Add(Label89);
- GroupBox19.Controls.Add(ComboBox解开两音后的响应方式5_2);
- GroupBox19.Controls.Add(Label90);
- GroupBox19.Controls.Add(ComboBox两音的组合方式5_2);
- GroupBox19.Controls.Add(Label91);
- GroupBox19.Font = null;
- GroupBox19.Name = "GroupBox19";
- GroupBox19.TabStop = false;
- ComboBox提示音5_2.AccessibleDescription = null;
- ComboBox提示音5_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音5_2, "ComboBox提示音5_2");
- ComboBox提示音5_2.BackgroundImage = null;
- ComboBox提示音5_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音5_2.Font = null;
- ComboBox提示音5_2.FormattingEnabled = true;
- ComboBox提示音5_2.Name = "ComboBox提示音5_2";
- Label89.AccessibleDescription = null;
- Label89.AccessibleName = null;
- componentResourceManager.ApplyResources(Label89, "Label89");
- Label89.Font = null;
- Label89.Name = "Label89";
- ComboBox解开两音后的响应方式5_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式5_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_2, "ComboBox解开两音后的响应方式5_2");
- ComboBox解开两音后的响应方式5_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式5_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式5_2.Font = null;
- ComboBox解开两音后的响应方式5_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式5_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items3")
- });
- ComboBox解开两音后的响应方式5_2.Name = "ComboBox解开两音后的响应方式5_2";
- Label90.AccessibleDescription = null;
- Label90.AccessibleName = null;
- componentResourceManager.ApplyResources(Label90, "Label90");
- Label90.Font = null;
- Label90.Name = "Label90";
- ComboBox两音的组合方式5_2.AccessibleDescription = null;
- ComboBox两音的组合方式5_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式5_2, "ComboBox两音的组合方式5_2");
- ComboBox两音的组合方式5_2.BackgroundImage = null;
- ComboBox两音的组合方式5_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式5_2.Font = null;
- ComboBox两音的组合方式5_2.FormattingEnabled = true;
- ComboBox两音的组合方式5_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items15")
- });
- ComboBox两音的组合方式5_2.Name = "ComboBox两音的组合方式5_2";
- Label91.AccessibleDescription = null;
- Label91.AccessibleName = null;
- componentResourceManager.ApplyResources(Label91, "Label91");
- Label91.Font = null;
- Label91.Name = "Label91";
- GroupBox20.AccessibleDescription = null;
- GroupBox20.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox20, "GroupBox20");
- GroupBox20.BackgroundImage = null;
- GroupBox20.Controls.Add(ComboBox提示音5_1);
- GroupBox20.Controls.Add(Label92);
- GroupBox20.Controls.Add(ComboBox解开两音后的响应方式5_1);
- GroupBox20.Controls.Add(Label93);
- GroupBox20.Controls.Add(ComboBox两音的组合方式5_1);
- GroupBox20.Controls.Add(Label94);
- GroupBox20.Font = null;
- GroupBox20.Name = "GroupBox20";
- GroupBox20.TabStop = false;
- ComboBox提示音5_1.AccessibleDescription = null;
- ComboBox提示音5_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音5_1, "ComboBox提示音5_1");
- ComboBox提示音5_1.BackgroundImage = null;
- ComboBox提示音5_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音5_1.Font = null;
- ComboBox提示音5_1.FormattingEnabled = true;
- ComboBox提示音5_1.Name = "ComboBox提示音5_1";
- Label92.AccessibleDescription = null;
- Label92.AccessibleName = null;
- componentResourceManager.ApplyResources(Label92, "Label92");
- Label92.Font = null;
- Label92.Name = "Label92";
- ComboBox解开两音后的响应方式5_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式5_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_1, "ComboBox解开两音后的响应方式5_1");
- ComboBox解开两音后的响应方式5_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式5_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式5_1.Font = null;
- ComboBox解开两音后的响应方式5_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式5_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items3")
- });
- ComboBox解开两音后的响应方式5_1.Name = "ComboBox解开两音后的响应方式5_1";
- Label93.AccessibleDescription = null;
- Label93.AccessibleName = null;
- componentResourceManager.ApplyResources(Label93, "Label93");
- Label93.Font = null;
- Label93.Name = "Label93";
- ComboBox两音的组合方式5_1.AccessibleDescription = null;
- ComboBox两音的组合方式5_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式5_1, "ComboBox两音的组合方式5_1");
- ComboBox两音的组合方式5_1.BackgroundImage = null;
- ComboBox两音的组合方式5_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式5_1.Font = null;
- ComboBox两音的组合方式5_1.FormattingEnabled = true;
- ComboBox两音的组合方式5_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items15")
- });
- ComboBox两音的组合方式5_1.Name = "ComboBox两音的组合方式5_1";
- Label94.AccessibleDescription = null;
- Label94.AccessibleName = null;
- componentResourceManager.ApplyResources(Label94, "Label94");
- Label94.Font = null;
- Label94.Name = "Label94";
- TabPage8.AccessibleDescription = null;
- TabPage8.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage8, "TabPage8");
- TabPage8.BackgroundImage = null;
- TabPage8.Controls.Add(GroupBox21);
- TabPage8.Controls.Add(NumericUpDown6_D);
- TabPage8.Controls.Add(NumericUpDown6_C);
- TabPage8.Controls.Add(NumericUpDown6_B);
- TabPage8.Controls.Add(Label98);
- TabPage8.Controls.Add(NumericUpDown6_A);
- TabPage8.Controls.Add(Label99);
- TabPage8.Controls.Add(Label100);
- TabPage8.Controls.Add(Label101);
- TabPage8.Controls.Add(GroupBox22);
- TabPage8.Controls.Add(GroupBox23);
- TabPage8.Controls.Add(GroupBox24);
- TabPage8.Font = null;
- TabPage8.Name = "TabPage8";
- TabPage8.UseVisualStyleBackColor = true;
- GroupBox21.AccessibleDescription = null;
- GroupBox21.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox21, "GroupBox21");
- GroupBox21.BackgroundImage = null;
- GroupBox21.Controls.Add(ComboBox提示音6_4);
- GroupBox21.Controls.Add(Label95);
- GroupBox21.Controls.Add(ComboBox解开两音后的响应方式6_4);
- GroupBox21.Controls.Add(Label96);
- GroupBox21.Controls.Add(ComboBox两音的组合方式6_4);
- GroupBox21.Controls.Add(Label97);
- GroupBox21.Font = null;
- GroupBox21.Name = "GroupBox21";
- GroupBox21.TabStop = false;
- ComboBox提示音6_4.AccessibleDescription = null;
- ComboBox提示音6_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音6_4, "ComboBox提示音6_4");
- ComboBox提示音6_4.BackgroundImage = null;
- ComboBox提示音6_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音6_4.Font = null;
- ComboBox提示音6_4.FormattingEnabled = true;
- ComboBox提示音6_4.Name = "ComboBox提示音6_4";
- Label95.AccessibleDescription = null;
- Label95.AccessibleName = null;
- componentResourceManager.ApplyResources(Label95, "Label95");
- Label95.Font = null;
- Label95.Name = "Label95";
- ComboBox解开两音后的响应方式6_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式6_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_4, "ComboBox解开两音后的响应方式6_4");
- ComboBox解开两音后的响应方式6_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式6_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式6_4.Font = null;
- ComboBox解开两音后的响应方式6_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式6_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items3")
- });
- ComboBox解开两音后的响应方式6_4.Name = "ComboBox解开两音后的响应方式6_4";
- Label96.AccessibleDescription = null;
- Label96.AccessibleName = null;
- componentResourceManager.ApplyResources(Label96, "Label96");
- Label96.Font = null;
- Label96.Name = "Label96";
- ComboBox两音的组合方式6_4.AccessibleDescription = null;
- ComboBox两音的组合方式6_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式6_4, "ComboBox两音的组合方式6_4");
- ComboBox两音的组合方式6_4.BackgroundImage = null;
- ComboBox两音的组合方式6_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式6_4.Font = null;
- ComboBox两音的组合方式6_4.FormattingEnabled = true;
- ComboBox两音的组合方式6_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items15")
- });
- ComboBox两音的组合方式6_4.Name = "ComboBox两音的组合方式6_4";
- Label97.AccessibleDescription = null;
- Label97.AccessibleName = null;
- componentResourceManager.ApplyResources(Label97, "Label97");
- Label97.Font = null;
- Label97.Name = "Label97";
- NumericUpDown6_D.AccessibleDescription = null;
- NumericUpDown6_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown6_D, "NumericUpDown6_D");
- NumericUpDown6_D.DecimalPlaces = 1;
- NumericUpDown6_D.Font = null;
- var numericUpDown6D1 = NumericUpDown6_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num82 = num1;
- numericUpDown6D1.Increment = num82;
- var numericUpDown6D2 = NumericUpDown6_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num83 = num1;
- numericUpDown6D2.Maximum = num83;
- var numericUpDown6D3 = NumericUpDown6_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num84 = num1;
- numericUpDown6D3.Minimum = num84;
- NumericUpDown6_D.Name = "NumericUpDown6_D";
- var numericUpDown6D4 = NumericUpDown6_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num85 = num1;
- numericUpDown6D4.Value = num85;
- NumericUpDown6_C.AccessibleDescription = null;
- NumericUpDown6_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown6_C, "NumericUpDown6_C");
- NumericUpDown6_C.DecimalPlaces = 1;
- NumericUpDown6_C.Font = null;
- var numericUpDown6C1 = NumericUpDown6_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num86 = num1;
- numericUpDown6C1.Increment = num86;
- var numericUpDown6C2 = NumericUpDown6_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num87 = num1;
- numericUpDown6C2.Maximum = num87;
- var numericUpDown6C3 = NumericUpDown6_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num88 = num1;
- numericUpDown6C3.Minimum = num88;
- NumericUpDown6_C.Name = "NumericUpDown6_C";
- var numericUpDown6C4 = NumericUpDown6_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num89 = num1;
- numericUpDown6C4.Value = num89;
- NumericUpDown6_B.AccessibleDescription = null;
- NumericUpDown6_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown6_B, "NumericUpDown6_B");
- NumericUpDown6_B.DecimalPlaces = 1;
- NumericUpDown6_B.Font = null;
- var numericUpDown6B1 = NumericUpDown6_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num90 = num1;
- numericUpDown6B1.Increment = num90;
- var numericUpDown6B2 = NumericUpDown6_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num91 = num1;
- numericUpDown6B2.Maximum = num91;
- var numericUpDown6B3 = NumericUpDown6_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num92 = num1;
- numericUpDown6B3.Minimum = num92;
- NumericUpDown6_B.Name = "NumericUpDown6_B";
- var numericUpDown6B4 = NumericUpDown6_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num93 = num1;
- numericUpDown6B4.Value = num93;
- Label98.AccessibleDescription = null;
- Label98.AccessibleName = null;
- componentResourceManager.ApplyResources(Label98, "Label98");
- Label98.Font = null;
- Label98.Name = "Label98";
- NumericUpDown6_A.AccessibleDescription = null;
- NumericUpDown6_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown6_A, "NumericUpDown6_A");
- NumericUpDown6_A.DecimalPlaces = 1;
- NumericUpDown6_A.Font = null;
- var numericUpDown6A1 = NumericUpDown6_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num94 = num1;
- numericUpDown6A1.Increment = num94;
- var numericUpDown6A2 = NumericUpDown6_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num95 = num1;
- numericUpDown6A2.Maximum = num95;
- var numericUpDown6A3 = NumericUpDown6_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num96 = num1;
- numericUpDown6A3.Minimum = num96;
- NumericUpDown6_A.Name = "NumericUpDown6_A";
- var numericUpDown6A4 = NumericUpDown6_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num97 = num1;
- numericUpDown6A4.Value = num97;
- Label99.AccessibleDescription = null;
- Label99.AccessibleName = null;
- componentResourceManager.ApplyResources(Label99, "Label99");
- Label99.Font = null;
- Label99.Name = "Label99";
- Label100.AccessibleDescription = null;
- Label100.AccessibleName = null;
- componentResourceManager.ApplyResources(Label100, "Label100");
- Label100.Font = null;
- Label100.Name = "Label100";
- Label101.AccessibleDescription = null;
- Label101.AccessibleName = null;
- componentResourceManager.ApplyResources(Label101, "Label101");
- Label101.Font = null;
- Label101.Name = "Label101";
- GroupBox22.AccessibleDescription = null;
- GroupBox22.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox22, "GroupBox22");
- GroupBox22.BackgroundImage = null;
- GroupBox22.Controls.Add(ComboBox提示音6_3);
- GroupBox22.Controls.Add(Label102);
- GroupBox22.Controls.Add(ComboBox解开两音后的响应方式6_3);
- GroupBox22.Controls.Add(Label103);
- GroupBox22.Controls.Add(ComboBox两音的组合方式6_3);
- GroupBox22.Controls.Add(Label104);
- GroupBox22.Font = null;
- GroupBox22.Name = "GroupBox22";
- GroupBox22.TabStop = false;
- ComboBox提示音6_3.AccessibleDescription = null;
- ComboBox提示音6_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音6_3, "ComboBox提示音6_3");
- ComboBox提示音6_3.BackgroundImage = null;
- ComboBox提示音6_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音6_3.Font = null;
- ComboBox提示音6_3.FormattingEnabled = true;
- ComboBox提示音6_3.Name = "ComboBox提示音6_3";
- Label102.AccessibleDescription = null;
- Label102.AccessibleName = null;
- componentResourceManager.ApplyResources(Label102, "Label102");
- Label102.Font = null;
- Label102.Name = "Label102";
- ComboBox解开两音后的响应方式6_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式6_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_3, "ComboBox解开两音后的响应方式6_3");
- ComboBox解开两音后的响应方式6_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式6_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式6_3.Font = null;
- ComboBox解开两音后的响应方式6_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式6_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items3")
- });
- ComboBox解开两音后的响应方式6_3.Name = "ComboBox解开两音后的响应方式6_3";
- Label103.AccessibleDescription = null;
- Label103.AccessibleName = null;
- componentResourceManager.ApplyResources(Label103, "Label103");
- Label103.Font = null;
- Label103.Name = "Label103";
- ComboBox两音的组合方式6_3.AccessibleDescription = null;
- ComboBox两音的组合方式6_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式6_3, "ComboBox两音的组合方式6_3");
- ComboBox两音的组合方式6_3.BackgroundImage = null;
- ComboBox两音的组合方式6_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式6_3.Font = null;
- ComboBox两音的组合方式6_3.FormattingEnabled = true;
- ComboBox两音的组合方式6_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items15")
- });
- ComboBox两音的组合方式6_3.Name = "ComboBox两音的组合方式6_3";
- Label104.AccessibleDescription = null;
- Label104.AccessibleName = null;
- componentResourceManager.ApplyResources(Label104, "Label104");
- Label104.Font = null;
- Label104.Name = "Label104";
- GroupBox23.AccessibleDescription = null;
- GroupBox23.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox23, "GroupBox23");
- GroupBox23.BackgroundImage = null;
- GroupBox23.Controls.Add(ComboBox提示音6_2);
- GroupBox23.Controls.Add(Label105);
- GroupBox23.Controls.Add(ComboBox解开两音后的响应方式6_2);
- GroupBox23.Controls.Add(Label106);
- GroupBox23.Controls.Add(ComboBox两音的组合方式6_2);
- GroupBox23.Controls.Add(Label107);
- GroupBox23.Font = null;
- GroupBox23.Name = "GroupBox23";
- GroupBox23.TabStop = false;
- ComboBox提示音6_2.AccessibleDescription = null;
- ComboBox提示音6_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音6_2, "ComboBox提示音6_2");
- ComboBox提示音6_2.BackgroundImage = null;
- ComboBox提示音6_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音6_2.Font = null;
- ComboBox提示音6_2.FormattingEnabled = true;
- ComboBox提示音6_2.Name = "ComboBox提示音6_2";
- Label105.AccessibleDescription = null;
- Label105.AccessibleName = null;
- componentResourceManager.ApplyResources(Label105, "Label105");
- Label105.Font = null;
- Label105.Name = "Label105";
- ComboBox解开两音后的响应方式6_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式6_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_2, "ComboBox解开两音后的响应方式6_2");
- ComboBox解开两音后的响应方式6_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式6_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式6_2.Font = null;
- ComboBox解开两音后的响应方式6_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式6_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items3")
- });
- ComboBox解开两音后的响应方式6_2.Name = "ComboBox解开两音后的响应方式6_2";
- Label106.AccessibleDescription = null;
- Label106.AccessibleName = null;
- componentResourceManager.ApplyResources(Label106, "Label106");
- Label106.Font = null;
- Label106.Name = "Label106";
- ComboBox两音的组合方式6_2.AccessibleDescription = null;
- ComboBox两音的组合方式6_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式6_2, "ComboBox两音的组合方式6_2");
- ComboBox两音的组合方式6_2.BackgroundImage = null;
- ComboBox两音的组合方式6_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式6_2.Font = null;
- ComboBox两音的组合方式6_2.FormattingEnabled = true;
- ComboBox两音的组合方式6_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items15")
- });
- ComboBox两音的组合方式6_2.Name = "ComboBox两音的组合方式6_2";
- Label107.AccessibleDescription = null;
- Label107.AccessibleName = null;
- componentResourceManager.ApplyResources(Label107, "Label107");
- Label107.Font = null;
- Label107.Name = "Label107";
- GroupBox24.AccessibleDescription = null;
- GroupBox24.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox24, "GroupBox24");
- GroupBox24.BackgroundImage = null;
- GroupBox24.Controls.Add(ComboBox提示音6_1);
- GroupBox24.Controls.Add(Label108);
- GroupBox24.Controls.Add(ComboBox解开两音后的响应方式6_1);
- GroupBox24.Controls.Add(Label109);
- GroupBox24.Controls.Add(ComboBox两音的组合方式6_1);
- GroupBox24.Controls.Add(Label110);
- GroupBox24.Font = null;
- GroupBox24.Name = "GroupBox24";
- GroupBox24.TabStop = false;
- ComboBox提示音6_1.AccessibleDescription = null;
- ComboBox提示音6_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音6_1, "ComboBox提示音6_1");
- ComboBox提示音6_1.BackgroundImage = null;
- ComboBox提示音6_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音6_1.Font = null;
- ComboBox提示音6_1.FormattingEnabled = true;
- ComboBox提示音6_1.Name = "ComboBox提示音6_1";
- Label108.AccessibleDescription = null;
- Label108.AccessibleName = null;
- componentResourceManager.ApplyResources(Label108, "Label108");
- Label108.Font = null;
- Label108.Name = "Label108";
- ComboBox解开两音后的响应方式6_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式6_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_1, "ComboBox解开两音后的响应方式6_1");
- ComboBox解开两音后的响应方式6_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式6_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式6_1.Font = null;
- ComboBox解开两音后的响应方式6_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式6_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items3")
- });
- ComboBox解开两音后的响应方式6_1.Name = "ComboBox解开两音后的响应方式6_1";
- Label109.AccessibleDescription = null;
- Label109.AccessibleName = null;
- componentResourceManager.ApplyResources(Label109, "Label109");
- Label109.Font = null;
- Label109.Name = "Label109";
- ComboBox两音的组合方式6_1.AccessibleDescription = null;
- ComboBox两音的组合方式6_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式6_1, "ComboBox两音的组合方式6_1");
- ComboBox两音的组合方式6_1.BackgroundImage = null;
- ComboBox两音的组合方式6_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式6_1.Font = null;
- ComboBox两音的组合方式6_1.FormattingEnabled = true;
- ComboBox两音的组合方式6_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items15")
- });
- ComboBox两音的组合方式6_1.Name = "ComboBox两音的组合方式6_1";
- Label110.AccessibleDescription = null;
- Label110.AccessibleName = null;
- componentResourceManager.ApplyResources(Label110, "Label110");
- Label110.Font = null;
- Label110.Name = "Label110";
- TabPage9.AccessibleDescription = null;
- TabPage9.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage9, "TabPage9");
- TabPage9.BackgroundImage = null;
- TabPage9.Controls.Add(GroupBox25);
- TabPage9.Controls.Add(NumericUpDown7_D);
- TabPage9.Controls.Add(NumericUpDown7_C);
- TabPage9.Controls.Add(NumericUpDown7_B);
- TabPage9.Controls.Add(Label114);
- TabPage9.Controls.Add(NumericUpDown7_A);
- TabPage9.Controls.Add(Label115);
- TabPage9.Controls.Add(Label116);
- TabPage9.Controls.Add(Label117);
- TabPage9.Controls.Add(GroupBox26);
- TabPage9.Controls.Add(GroupBox27);
- TabPage9.Controls.Add(GroupBox28);
- TabPage9.Font = null;
- TabPage9.Name = "TabPage9";
- TabPage9.UseVisualStyleBackColor = true;
- GroupBox25.AccessibleDescription = null;
- GroupBox25.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox25, "GroupBox25");
- GroupBox25.BackgroundImage = null;
- GroupBox25.Controls.Add(ComboBox提示音7_4);
- GroupBox25.Controls.Add(Label111);
- GroupBox25.Controls.Add(ComboBox解开两音后的响应方式7_4);
- GroupBox25.Controls.Add(Label112);
- GroupBox25.Controls.Add(ComboBox两音的组合方式7_4);
- GroupBox25.Controls.Add(Label113);
- GroupBox25.Font = null;
- GroupBox25.Name = "GroupBox25";
- GroupBox25.TabStop = false;
- ComboBox提示音7_4.AccessibleDescription = null;
- ComboBox提示音7_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音7_4, "ComboBox提示音7_4");
- ComboBox提示音7_4.BackgroundImage = null;
- ComboBox提示音7_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音7_4.Font = null;
- ComboBox提示音7_4.FormattingEnabled = true;
- ComboBox提示音7_4.Name = "ComboBox提示音7_4";
- Label111.AccessibleDescription = null;
- Label111.AccessibleName = null;
- componentResourceManager.ApplyResources(Label111, "Label111");
- Label111.Font = null;
- Label111.Name = "Label111";
- ComboBox解开两音后的响应方式7_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式7_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_4, "ComboBox解开两音后的响应方式7_4");
- ComboBox解开两音后的响应方式7_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式7_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式7_4.Font = null;
- ComboBox解开两音后的响应方式7_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式7_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items3")
- });
- ComboBox解开两音后的响应方式7_4.Name = "ComboBox解开两音后的响应方式7_4";
- Label112.AccessibleDescription = null;
- Label112.AccessibleName = null;
- componentResourceManager.ApplyResources(Label112, "Label112");
- Label112.Font = null;
- Label112.Name = "Label112";
- ComboBox两音的组合方式7_4.AccessibleDescription = null;
- ComboBox两音的组合方式7_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式7_4, "ComboBox两音的组合方式7_4");
- ComboBox两音的组合方式7_4.BackgroundImage = null;
- ComboBox两音的组合方式7_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式7_4.Font = null;
- ComboBox两音的组合方式7_4.FormattingEnabled = true;
- ComboBox两音的组合方式7_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items15")
- });
- ComboBox两音的组合方式7_4.Name = "ComboBox两音的组合方式7_4";
- Label113.AccessibleDescription = null;
- Label113.AccessibleName = null;
- componentResourceManager.ApplyResources(Label113, "Label113");
- Label113.Font = null;
- Label113.Name = "Label113";
- NumericUpDown7_D.AccessibleDescription = null;
- NumericUpDown7_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown7_D, "NumericUpDown7_D");
- NumericUpDown7_D.DecimalPlaces = 1;
- NumericUpDown7_D.Font = null;
- var numericUpDown7D1 = NumericUpDown7_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num98 = num1;
- numericUpDown7D1.Increment = num98;
- var numericUpDown7D2 = NumericUpDown7_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num99 = num1;
- numericUpDown7D2.Maximum = num99;
- var numericUpDown7D3 = NumericUpDown7_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num100 = num1;
- numericUpDown7D3.Minimum = num100;
- NumericUpDown7_D.Name = "NumericUpDown7_D";
- var numericUpDown7D4 = NumericUpDown7_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num101 = num1;
- numericUpDown7D4.Value = num101;
- NumericUpDown7_C.AccessibleDescription = null;
- NumericUpDown7_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown7_C, "NumericUpDown7_C");
- NumericUpDown7_C.DecimalPlaces = 1;
- NumericUpDown7_C.Font = null;
- var numericUpDown7C1 = NumericUpDown7_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num102 = num1;
- numericUpDown7C1.Increment = num102;
- var numericUpDown7C2 = NumericUpDown7_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num103 = num1;
- numericUpDown7C2.Maximum = num103;
- var numericUpDown7C3 = NumericUpDown7_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num104 = num1;
- numericUpDown7C3.Minimum = num104;
- NumericUpDown7_C.Name = "NumericUpDown7_C";
- var numericUpDown7C4 = NumericUpDown7_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num105 = num1;
- numericUpDown7C4.Value = num105;
- NumericUpDown7_B.AccessibleDescription = null;
- NumericUpDown7_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown7_B, "NumericUpDown7_B");
- NumericUpDown7_B.DecimalPlaces = 1;
- NumericUpDown7_B.Font = null;
- var numericUpDown7B1 = NumericUpDown7_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num106 = num1;
- numericUpDown7B1.Increment = num106;
- var numericUpDown7B2 = NumericUpDown7_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num107 = num1;
- numericUpDown7B2.Maximum = num107;
- var numericUpDown7B3 = NumericUpDown7_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num108 = num1;
- numericUpDown7B3.Minimum = num108;
- NumericUpDown7_B.Name = "NumericUpDown7_B";
- var numericUpDown7B4 = NumericUpDown7_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num109 = num1;
- numericUpDown7B4.Value = num109;
- Label114.AccessibleDescription = null;
- Label114.AccessibleName = null;
- componentResourceManager.ApplyResources(Label114, "Label114");
- Label114.Font = null;
- Label114.Name = "Label114";
- NumericUpDown7_A.AccessibleDescription = null;
- NumericUpDown7_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown7_A, "NumericUpDown7_A");
- NumericUpDown7_A.DecimalPlaces = 1;
- NumericUpDown7_A.Font = null;
- var numericUpDown7A1 = NumericUpDown7_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num110 = num1;
- numericUpDown7A1.Increment = num110;
- var numericUpDown7A2 = NumericUpDown7_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num111 = num1;
- numericUpDown7A2.Maximum = num111;
- var numericUpDown7A3 = NumericUpDown7_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num112 = num1;
- numericUpDown7A3.Minimum = num112;
- NumericUpDown7_A.Name = "NumericUpDown7_A";
- var numericUpDown7A4 = NumericUpDown7_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num113 = num1;
- numericUpDown7A4.Value = num113;
- Label115.AccessibleDescription = null;
- Label115.AccessibleName = null;
- componentResourceManager.ApplyResources(Label115, "Label115");
- Label115.Font = null;
- Label115.Name = "Label115";
- Label116.AccessibleDescription = null;
- Label116.AccessibleName = null;
- componentResourceManager.ApplyResources(Label116, "Label116");
- Label116.Font = null;
- Label116.Name = "Label116";
- Label117.AccessibleDescription = null;
- Label117.AccessibleName = null;
- componentResourceManager.ApplyResources(Label117, "Label117");
- Label117.Font = null;
- Label117.Name = "Label117";
- GroupBox26.AccessibleDescription = null;
- GroupBox26.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox26, "GroupBox26");
- GroupBox26.BackgroundImage = null;
- GroupBox26.Controls.Add(ComboBox提示音7_3);
- GroupBox26.Controls.Add(Label118);
- GroupBox26.Controls.Add(ComboBox解开两音后的响应方式7_3);
- GroupBox26.Controls.Add(Label119);
- GroupBox26.Controls.Add(ComboBox两音的组合方式7_3);
- GroupBox26.Controls.Add(Label120);
- GroupBox26.Font = null;
- GroupBox26.Name = "GroupBox26";
- GroupBox26.TabStop = false;
- ComboBox提示音7_3.AccessibleDescription = null;
- ComboBox提示音7_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音7_3, "ComboBox提示音7_3");
- ComboBox提示音7_3.BackgroundImage = null;
- ComboBox提示音7_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音7_3.Font = null;
- ComboBox提示音7_3.FormattingEnabled = true;
- ComboBox提示音7_3.Name = "ComboBox提示音7_3";
- Label118.AccessibleDescription = null;
- Label118.AccessibleName = null;
- componentResourceManager.ApplyResources(Label118, "Label118");
- Label118.Font = null;
- Label118.Name = "Label118";
- ComboBox解开两音后的响应方式7_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式7_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_3, "ComboBox解开两音后的响应方式7_3");
- ComboBox解开两音后的响应方式7_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式7_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式7_3.Font = null;
- ComboBox解开两音后的响应方式7_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式7_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items3")
- });
- ComboBox解开两音后的响应方式7_3.Name = "ComboBox解开两音后的响应方式7_3";
- Label119.AccessibleDescription = null;
- Label119.AccessibleName = null;
- componentResourceManager.ApplyResources(Label119, "Label119");
- Label119.Font = null;
- Label119.Name = "Label119";
- ComboBox两音的组合方式7_3.AccessibleDescription = null;
- ComboBox两音的组合方式7_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式7_3, "ComboBox两音的组合方式7_3");
- ComboBox两音的组合方式7_3.BackgroundImage = null;
- ComboBox两音的组合方式7_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式7_3.Font = null;
- ComboBox两音的组合方式7_3.FormattingEnabled = true;
- ComboBox两音的组合方式7_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items15")
- });
- ComboBox两音的组合方式7_3.Name = "ComboBox两音的组合方式7_3";
- Label120.AccessibleDescription = null;
- Label120.AccessibleName = null;
- componentResourceManager.ApplyResources(Label120, "Label120");
- Label120.Font = null;
- Label120.Name = "Label120";
- GroupBox27.AccessibleDescription = null;
- GroupBox27.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox27, "GroupBox27");
- GroupBox27.BackgroundImage = null;
- GroupBox27.Controls.Add(ComboBox提示音7_2);
- GroupBox27.Controls.Add(Label121);
- GroupBox27.Controls.Add(ComboBox解开两音后的响应方式7_2);
- GroupBox27.Controls.Add(Label122);
- GroupBox27.Controls.Add(ComboBox两音的组合方式7_2);
- GroupBox27.Controls.Add(Label123);
- GroupBox27.Font = null;
- GroupBox27.Name = "GroupBox27";
- GroupBox27.TabStop = false;
- ComboBox提示音7_2.AccessibleDescription = null;
- ComboBox提示音7_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音7_2, "ComboBox提示音7_2");
- ComboBox提示音7_2.BackgroundImage = null;
- ComboBox提示音7_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音7_2.Font = null;
- ComboBox提示音7_2.FormattingEnabled = true;
- ComboBox提示音7_2.Name = "ComboBox提示音7_2";
- Label121.AccessibleDescription = null;
- Label121.AccessibleName = null;
- componentResourceManager.ApplyResources(Label121, "Label121");
- Label121.Font = null;
- Label121.Name = "Label121";
- ComboBox解开两音后的响应方式7_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式7_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_2, "ComboBox解开两音后的响应方式7_2");
- ComboBox解开两音后的响应方式7_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式7_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式7_2.Font = null;
- ComboBox解开两音后的响应方式7_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式7_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items3")
- });
- ComboBox解开两音后的响应方式7_2.Name = "ComboBox解开两音后的响应方式7_2";
- Label122.AccessibleDescription = null;
- Label122.AccessibleName = null;
- componentResourceManager.ApplyResources(Label122, "Label122");
- Label122.Font = null;
- Label122.Name = "Label122";
- ComboBox两音的组合方式7_2.AccessibleDescription = null;
- ComboBox两音的组合方式7_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式7_2, "ComboBox两音的组合方式7_2");
- ComboBox两音的组合方式7_2.BackgroundImage = null;
- ComboBox两音的组合方式7_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式7_2.Font = null;
- ComboBox两音的组合方式7_2.FormattingEnabled = true;
- ComboBox两音的组合方式7_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items15")
- });
- ComboBox两音的组合方式7_2.Name = "ComboBox两音的组合方式7_2";
- Label123.AccessibleDescription = null;
- Label123.AccessibleName = null;
- componentResourceManager.ApplyResources(Label123, "Label123");
- Label123.Font = null;
- Label123.Name = "Label123";
- GroupBox28.AccessibleDescription = null;
- GroupBox28.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox28, "GroupBox28");
- GroupBox28.BackgroundImage = null;
- GroupBox28.Controls.Add(ComboBox提示音7_1);
- GroupBox28.Controls.Add(Label124);
- GroupBox28.Controls.Add(ComboBox解开两音后的响应方式7_1);
- GroupBox28.Controls.Add(Label125);
- GroupBox28.Controls.Add(ComboBox两音的组合方式7_1);
- GroupBox28.Controls.Add(Label126);
- GroupBox28.Font = null;
- GroupBox28.Name = "GroupBox28";
- GroupBox28.TabStop = false;
- ComboBox提示音7_1.AccessibleDescription = null;
- ComboBox提示音7_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音7_1, "ComboBox提示音7_1");
- ComboBox提示音7_1.BackgroundImage = null;
- ComboBox提示音7_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音7_1.Font = null;
- ComboBox提示音7_1.FormattingEnabled = true;
- ComboBox提示音7_1.Name = "ComboBox提示音7_1";
- Label124.AccessibleDescription = null;
- Label124.AccessibleName = null;
- componentResourceManager.ApplyResources(Label124, "Label124");
- Label124.Font = null;
- Label124.Name = "Label124";
- ComboBox解开两音后的响应方式7_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式7_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_1, "ComboBox解开两音后的响应方式7_1");
- ComboBox解开两音后的响应方式7_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式7_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式7_1.Font = null;
- ComboBox解开两音后的响应方式7_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式7_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items3")
- });
- ComboBox解开两音后的响应方式7_1.Name = "ComboBox解开两音后的响应方式7_1";
- Label125.AccessibleDescription = null;
- Label125.AccessibleName = null;
- componentResourceManager.ApplyResources(Label125, "Label125");
- Label125.Font = null;
- Label125.Name = "Label125";
- ComboBox两音的组合方式7_1.AccessibleDescription = null;
- ComboBox两音的组合方式7_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式7_1, "ComboBox两音的组合方式7_1");
- ComboBox两音的组合方式7_1.BackgroundImage = null;
- ComboBox两音的组合方式7_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式7_1.Font = null;
- ComboBox两音的组合方式7_1.FormattingEnabled = true;
- ComboBox两音的组合方式7_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items15")
- });
- ComboBox两音的组合方式7_1.Name = "ComboBox两音的组合方式7_1";
- Label126.AccessibleDescription = null;
- Label126.AccessibleName = null;
- componentResourceManager.ApplyResources(Label126, "Label126");
- Label126.Font = null;
- Label126.Name = "Label126";
- TabPage10.AccessibleDescription = null;
- TabPage10.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage10, "TabPage10");
- TabPage10.BackgroundImage = null;
- TabPage10.Controls.Add(GroupBox29);
- TabPage10.Controls.Add(NumericUpDown8_D);
- TabPage10.Controls.Add(NumericUpDown8_C);
- TabPage10.Controls.Add(NumericUpDown8_B);
- TabPage10.Controls.Add(Label130);
- TabPage10.Controls.Add(NumericUpDown8_A);
- TabPage10.Controls.Add(Label131);
- TabPage10.Controls.Add(Label132);
- TabPage10.Controls.Add(Label133);
- TabPage10.Controls.Add(GroupBox30);
- TabPage10.Controls.Add(GroupBox31);
- TabPage10.Controls.Add(GroupBox32);
- TabPage10.Font = null;
- TabPage10.Name = "TabPage10";
- TabPage10.UseVisualStyleBackColor = true;
- GroupBox29.AccessibleDescription = null;
- GroupBox29.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox29, "GroupBox29");
- GroupBox29.BackgroundImage = null;
- GroupBox29.Controls.Add(ComboBox提示音8_4);
- GroupBox29.Controls.Add(Label127);
- GroupBox29.Controls.Add(ComboBox解开两音后的响应方式8_4);
- GroupBox29.Controls.Add(Label128);
- GroupBox29.Controls.Add(ComboBox两音的组合方式8_4);
- GroupBox29.Controls.Add(Label129);
- GroupBox29.Font = null;
- GroupBox29.Name = "GroupBox29";
- GroupBox29.TabStop = false;
- ComboBox提示音8_4.AccessibleDescription = null;
- ComboBox提示音8_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音8_4, "ComboBox提示音8_4");
- ComboBox提示音8_4.BackgroundImage = null;
- ComboBox提示音8_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音8_4.Font = null;
- ComboBox提示音8_4.FormattingEnabled = true;
- ComboBox提示音8_4.Name = "ComboBox提示音8_4";
- Label127.AccessibleDescription = null;
- Label127.AccessibleName = null;
- componentResourceManager.ApplyResources(Label127, "Label127");
- Label127.Font = null;
- Label127.Name = "Label127";
- ComboBox解开两音后的响应方式8_4.AccessibleDescription = null;
- ComboBox解开两音后的响应方式8_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_4, "ComboBox解开两音后的响应方式8_4");
- ComboBox解开两音后的响应方式8_4.BackgroundImage = null;
- ComboBox解开两音后的响应方式8_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式8_4.Font = null;
- ComboBox解开两音后的响应方式8_4.FormattingEnabled = true;
- ComboBox解开两音后的响应方式8_4.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items3")
- });
- ComboBox解开两音后的响应方式8_4.Name = "ComboBox解开两音后的响应方式8_4";
- Label128.AccessibleDescription = null;
- Label128.AccessibleName = null;
- componentResourceManager.ApplyResources(Label128, "Label128");
- Label128.Font = null;
- Label128.Name = "Label128";
- ComboBox两音的组合方式8_4.AccessibleDescription = null;
- ComboBox两音的组合方式8_4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式8_4, "ComboBox两音的组合方式8_4");
- ComboBox两音的组合方式8_4.BackgroundImage = null;
- ComboBox两音的组合方式8_4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式8_4.Font = null;
- ComboBox两音的组合方式8_4.FormattingEnabled = true;
- ComboBox两音的组合方式8_4.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items15")
- });
- ComboBox两音的组合方式8_4.Name = "ComboBox两音的组合方式8_4";
- Label129.AccessibleDescription = null;
- Label129.AccessibleName = null;
- componentResourceManager.ApplyResources(Label129, "Label129");
- Label129.Font = null;
- Label129.Name = "Label129";
- NumericUpDown8_D.AccessibleDescription = null;
- NumericUpDown8_D.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown8_D, "NumericUpDown8_D");
- NumericUpDown8_D.DecimalPlaces = 1;
- NumericUpDown8_D.Font = null;
- var numericUpDown8D1 = NumericUpDown8_D;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num114 = num1;
- numericUpDown8D1.Increment = num114;
- var numericUpDown8D2 = NumericUpDown8_D;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num115 = num1;
- numericUpDown8D2.Maximum = num115;
- var numericUpDown8D3 = NumericUpDown8_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num116 = num1;
- numericUpDown8D3.Minimum = num116;
- NumericUpDown8_D.Name = "NumericUpDown8_D";
- var numericUpDown8D4 = NumericUpDown8_D;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num117 = num1;
- numericUpDown8D4.Value = num117;
- NumericUpDown8_C.AccessibleDescription = null;
- NumericUpDown8_C.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown8_C, "NumericUpDown8_C");
- NumericUpDown8_C.DecimalPlaces = 1;
- NumericUpDown8_C.Font = null;
- var numericUpDown8C1 = NumericUpDown8_C;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num118 = num1;
- numericUpDown8C1.Increment = num118;
- var numericUpDown8C2 = NumericUpDown8_C;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num119 = num1;
- numericUpDown8C2.Maximum = num119;
- var numericUpDown8C3 = NumericUpDown8_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num120 = num1;
- numericUpDown8C3.Minimum = num120;
- NumericUpDown8_C.Name = "NumericUpDown8_C";
- var numericUpDown8C4 = NumericUpDown8_C;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num121 = num1;
- numericUpDown8C4.Value = num121;
- NumericUpDown8_B.AccessibleDescription = null;
- NumericUpDown8_B.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown8_B, "NumericUpDown8_B");
- NumericUpDown8_B.DecimalPlaces = 1;
- NumericUpDown8_B.Font = null;
- var numericUpDown8B1 = NumericUpDown8_B;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num122 = num1;
- numericUpDown8B1.Increment = num122;
- var numericUpDown8B2 = NumericUpDown8_B;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num123 = num1;
- numericUpDown8B2.Maximum = num123;
- var numericUpDown8B3 = NumericUpDown8_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num124 = num1;
- numericUpDown8B3.Minimum = num124;
- NumericUpDown8_B.Name = "NumericUpDown8_B";
- var numericUpDown8B4 = NumericUpDown8_B;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num125 = num1;
- numericUpDown8B4.Value = num125;
- Label130.AccessibleDescription = null;
- Label130.AccessibleName = null;
- componentResourceManager.ApplyResources(Label130, "Label130");
- Label130.Font = null;
- Label130.Name = "Label130";
- NumericUpDown8_A.AccessibleDescription = null;
- NumericUpDown8_A.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown8_A, "NumericUpDown8_A");
- NumericUpDown8_A.DecimalPlaces = 1;
- NumericUpDown8_A.Font = null;
- var numericUpDown8A1 = NumericUpDown8_A;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num126 = num1;
- numericUpDown8A1.Increment = num126;
- var numericUpDown8A2 = NumericUpDown8_A;
- num1 = new Decimal(new int[4]{ 3200, 0, 0, 0 });
- var num127 = num1;
- numericUpDown8A2.Maximum = num127;
- var numericUpDown8A3 = NumericUpDown8_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num128 = num1;
- numericUpDown8A3.Minimum = num128;
- NumericUpDown8_A.Name = "NumericUpDown8_A";
- var numericUpDown8A4 = NumericUpDown8_A;
- num1 = new Decimal(new int[4]{ 2885, 0, 0, 65536 });
- var num129 = num1;
- numericUpDown8A4.Value = num129;
- Label131.AccessibleDescription = null;
- Label131.AccessibleName = null;
- componentResourceManager.ApplyResources(Label131, "Label131");
- Label131.Font = null;
- Label131.Name = "Label131";
- Label132.AccessibleDescription = null;
- Label132.AccessibleName = null;
- componentResourceManager.ApplyResources(Label132, "Label132");
- Label132.Font = null;
- Label132.Name = "Label132";
- Label133.AccessibleDescription = null;
- Label133.AccessibleName = null;
- componentResourceManager.ApplyResources(Label133, "Label133");
- Label133.Font = null;
- Label133.Name = "Label133";
- GroupBox30.AccessibleDescription = null;
- GroupBox30.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox30, "GroupBox30");
- GroupBox30.BackgroundImage = null;
- GroupBox30.Controls.Add(ComboBox提示音8_3);
- GroupBox30.Controls.Add(Label134);
- GroupBox30.Controls.Add(ComboBox解开两音后的响应方式8_3);
- GroupBox30.Controls.Add(Label135);
- GroupBox30.Controls.Add(ComboBox两音的组合方式8_3);
- GroupBox30.Controls.Add(Label136);
- GroupBox30.Font = null;
- GroupBox30.Name = "GroupBox30";
- GroupBox30.TabStop = false;
- ComboBox提示音8_3.AccessibleDescription = null;
- ComboBox提示音8_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音8_3, "ComboBox提示音8_3");
- ComboBox提示音8_3.BackgroundImage = null;
- ComboBox提示音8_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音8_3.Font = null;
- ComboBox提示音8_3.FormattingEnabled = true;
- ComboBox提示音8_3.Name = "ComboBox提示音8_3";
- Label134.AccessibleDescription = null;
- Label134.AccessibleName = null;
- componentResourceManager.ApplyResources(Label134, "Label134");
- Label134.Font = null;
- Label134.Name = "Label134";
- ComboBox解开两音后的响应方式8_3.AccessibleDescription = null;
- ComboBox解开两音后的响应方式8_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_3, "ComboBox解开两音后的响应方式8_3");
- ComboBox解开两音后的响应方式8_3.BackgroundImage = null;
- ComboBox解开两音后的响应方式8_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式8_3.Font = null;
- ComboBox解开两音后的响应方式8_3.FormattingEnabled = true;
- ComboBox解开两音后的响应方式8_3.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items3")
- });
- ComboBox解开两音后的响应方式8_3.Name = "ComboBox解开两音后的响应方式8_3";
- Label135.AccessibleDescription = null;
- Label135.AccessibleName = null;
- componentResourceManager.ApplyResources(Label135, "Label135");
- Label135.Font = null;
- Label135.Name = "Label135";
- ComboBox两音的组合方式8_3.AccessibleDescription = null;
- ComboBox两音的组合方式8_3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式8_3, "ComboBox两音的组合方式8_3");
- ComboBox两音的组合方式8_3.BackgroundImage = null;
- ComboBox两音的组合方式8_3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式8_3.Font = null;
- ComboBox两音的组合方式8_3.FormattingEnabled = true;
- ComboBox两音的组合方式8_3.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items15")
- });
- ComboBox两音的组合方式8_3.Name = "ComboBox两音的组合方式8_3";
- Label136.AccessibleDescription = null;
- Label136.AccessibleName = null;
- componentResourceManager.ApplyResources(Label136, "Label136");
- Label136.Font = null;
- Label136.Name = "Label136";
- GroupBox31.AccessibleDescription = null;
- GroupBox31.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox31, "GroupBox31");
- GroupBox31.BackgroundImage = null;
- GroupBox31.Controls.Add(ComboBox提示音8_2);
- GroupBox31.Controls.Add(Label137);
- GroupBox31.Controls.Add(ComboBox解开两音后的响应方式8_2);
- GroupBox31.Controls.Add(Label138);
- GroupBox31.Controls.Add(ComboBox两音的组合方式8_2);
- GroupBox31.Controls.Add(Label139);
- GroupBox31.Font = null;
- GroupBox31.Name = "GroupBox31";
- GroupBox31.TabStop = false;
- ComboBox提示音8_2.AccessibleDescription = null;
- ComboBox提示音8_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音8_2, "ComboBox提示音8_2");
- ComboBox提示音8_2.BackgroundImage = null;
- ComboBox提示音8_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音8_2.Font = null;
- ComboBox提示音8_2.FormattingEnabled = true;
- ComboBox提示音8_2.Name = "ComboBox提示音8_2";
- Label137.AccessibleDescription = null;
- Label137.AccessibleName = null;
- componentResourceManager.ApplyResources(Label137, "Label137");
- Label137.Font = null;
- Label137.Name = "Label137";
- ComboBox解开两音后的响应方式8_2.AccessibleDescription = null;
- ComboBox解开两音后的响应方式8_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_2, "ComboBox解开两音后的响应方式8_2");
- ComboBox解开两音后的响应方式8_2.BackgroundImage = null;
- ComboBox解开两音后的响应方式8_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式8_2.Font = null;
- ComboBox解开两音后的响应方式8_2.FormattingEnabled = true;
- ComboBox解开两音后的响应方式8_2.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items3")
- });
- ComboBox解开两音后的响应方式8_2.Name = "ComboBox解开两音后的响应方式8_2";
- Label138.AccessibleDescription = null;
- Label138.AccessibleName = null;
- componentResourceManager.ApplyResources(Label138, "Label138");
- Label138.Font = null;
- Label138.Name = "Label138";
- ComboBox两音的组合方式8_2.AccessibleDescription = null;
- ComboBox两音的组合方式8_2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式8_2, "ComboBox两音的组合方式8_2");
- ComboBox两音的组合方式8_2.BackgroundImage = null;
- ComboBox两音的组合方式8_2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式8_2.Font = null;
- ComboBox两音的组合方式8_2.FormattingEnabled = true;
- ComboBox两音的组合方式8_2.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items15")
- });
- ComboBox两音的组合方式8_2.Name = "ComboBox两音的组合方式8_2";
- Label139.AccessibleDescription = null;
- Label139.AccessibleName = null;
- componentResourceManager.ApplyResources(Label139, "Label139");
- Label139.Font = null;
- Label139.Name = "Label139";
- GroupBox32.AccessibleDescription = null;
- GroupBox32.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox32, "GroupBox32");
- GroupBox32.BackgroundImage = null;
- GroupBox32.Controls.Add(ComboBox提示音8_1);
- GroupBox32.Controls.Add(Label140);
- GroupBox32.Controls.Add(ComboBox解开两音后的响应方式8_1);
- GroupBox32.Controls.Add(Label141);
- GroupBox32.Controls.Add(ComboBox两音的组合方式8_1);
- GroupBox32.Controls.Add(Label142);
- GroupBox32.Font = null;
- GroupBox32.Name = "GroupBox32";
- GroupBox32.TabStop = false;
- ComboBox提示音8_1.AccessibleDescription = null;
- ComboBox提示音8_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox提示音8_1, "ComboBox提示音8_1");
- ComboBox提示音8_1.BackgroundImage = null;
- ComboBox提示音8_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox提示音8_1.Font = null;
- ComboBox提示音8_1.FormattingEnabled = true;
- ComboBox提示音8_1.Name = "ComboBox提示音8_1";
- Label140.AccessibleDescription = null;
- Label140.AccessibleName = null;
- componentResourceManager.ApplyResources(Label140, "Label140");
- Label140.Font = null;
- Label140.Name = "Label140";
- ComboBox解开两音后的响应方式8_1.AccessibleDescription = null;
- ComboBox解开两音后的响应方式8_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_1, "ComboBox解开两音后的响应方式8_1");
- ComboBox解开两音后的响应方式8_1.BackgroundImage = null;
- ComboBox解开两音后的响应方式8_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox解开两音后的响应方式8_1.Font = null;
- ComboBox解开两音后的响应方式8_1.FormattingEnabled = true;
- ComboBox解开两音后的响应方式8_1.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items1"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items2"),
- componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items3")
- });
- ComboBox解开两音后的响应方式8_1.Name = "ComboBox解开两音后的响应方式8_1";
- Label141.AccessibleDescription = null;
- Label141.AccessibleName = null;
- componentResourceManager.ApplyResources(Label141, "Label141");
- Label141.Font = null;
- Label141.Name = "Label141";
- ComboBox两音的组合方式8_1.AccessibleDescription = null;
- ComboBox两音的组合方式8_1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox两音的组合方式8_1, "ComboBox两音的组合方式8_1");
- ComboBox两音的组合方式8_1.BackgroundImage = null;
- ComboBox两音的组合方式8_1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox两音的组合方式8_1.Font = null;
- ComboBox两音的组合方式8_1.FormattingEnabled = true;
- ComboBox两音的组合方式8_1.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items1"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items2"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items3"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items4"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items5"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items6"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items7"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items8"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items9"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items10"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items11"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items12"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items13"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items14"),
- componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items15")
- });
- ComboBox两音的组合方式8_1.Name = "ComboBox两音的组合方式8_1";
- Label142.AccessibleDescription = null;
- Label142.AccessibleName = null;
- componentResourceManager.ApplyResources(Label142, "Label142");
- Label142.Font = null;
- Label142.Name = "Label142";
- TabPage11.AccessibleDescription = null;
- TabPage11.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage11, "TabPage11");
- TabPage11.BackgroundImage = null;
- TabPage11.Controls.Add(ComboBox自动复位时间);
- TabPage11.Controls.Add(ComboBox预载波时间);
- TabPage11.Controls.Add(CheckBox空闲自动应答);
- TabPage11.Controls.Add(Label14);
- TabPage11.Controls.Add(CheckBox短哔音);
- TabPage11.Controls.Add(CheckBox侧音);
- TabPage11.Controls.Add(Label1);
- TabPage11.Font = null;
- TabPage11.Name = "TabPage11";
- TabPage11.UseVisualStyleBackColor = true;
- ComboBox自动复位时间.AccessibleDescription = null;
- ComboBox自动复位时间.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox自动复位时间, "ComboBox自动复位时间");
- ComboBox自动复位时间.BackgroundImage = null;
- ComboBox自动复位时间.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox自动复位时间.Font = null;
- ComboBox自动复位时间.FormattingEnabled = true;
- ComboBox自动复位时间.Items.AddRange(new object[101]
- {
- componentResourceManager.GetString("ComboBox自动复位时间.Items"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items1"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items2"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items3"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items4"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items5"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items6"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items7"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items8"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items9"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items10"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items11"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items12"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items13"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items14"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items15"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items16"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items17"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items18"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items19"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items20"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items21"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items22"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items23"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items24"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items25"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items26"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items27"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items28"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items29"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items30"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items31"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items32"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items33"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items34"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items35"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items36"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items37"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items38"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items39"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items40"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items41"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items42"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items43"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items44"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items45"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items46"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items47"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items48"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items49"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items50"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items51"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items52"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items53"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items54"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items55"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items56"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items57"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items58"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items59"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items60"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items61"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items62"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items63"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items64"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items65"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items66"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items67"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items68"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items69"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items70"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items71"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items72"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items73"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items74"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items75"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items76"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items77"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items78"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items79"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items80"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items81"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items82"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items83"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items84"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items85"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items86"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items87"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items88"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items89"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items90"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items91"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items92"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items93"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items94"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items95"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items96"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items97"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items98"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items99"),
- componentResourceManager.GetString("ComboBox自动复位时间.Items100")
- });
- ComboBox自动复位时间.Name = "ComboBox自动复位时间";
- ComboBox预载波时间.AccessibleDescription = null;
- ComboBox预载波时间.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox预载波时间, "ComboBox预载波时间");
- ComboBox预载波时间.BackgroundImage = null;
- ComboBox预载波时间.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox预载波时间.Font = null;
- ComboBox预载波时间.FormattingEnabled = true;
- ComboBox预载波时间.Items.AddRange(new object[51]
- {
- componentResourceManager.GetString("ComboBox预载波时间.Items"),
- componentResourceManager.GetString("ComboBox预载波时间.Items1"),
- componentResourceManager.GetString("ComboBox预载波时间.Items2"),
- componentResourceManager.GetString("ComboBox预载波时间.Items3"),
- componentResourceManager.GetString("ComboBox预载波时间.Items4"),
- componentResourceManager.GetString("ComboBox预载波时间.Items5"),
- componentResourceManager.GetString("ComboBox预载波时间.Items6"),
- componentResourceManager.GetString("ComboBox预载波时间.Items7"),
- componentResourceManager.GetString("ComboBox预载波时间.Items8"),
- componentResourceManager.GetString("ComboBox预载波时间.Items9"),
- componentResourceManager.GetString("ComboBox预载波时间.Items10"),
- componentResourceManager.GetString("ComboBox预载波时间.Items11"),
- componentResourceManager.GetString("ComboBox预载波时间.Items12"),
- componentResourceManager.GetString("ComboBox预载波时间.Items13"),
- componentResourceManager.GetString("ComboBox预载波时间.Items14"),
- componentResourceManager.GetString("ComboBox预载波时间.Items15"),
- componentResourceManager.GetString("ComboBox预载波时间.Items16"),
- componentResourceManager.GetString("ComboBox预载波时间.Items17"),
- componentResourceManager.GetString("ComboBox预载波时间.Items18"),
- componentResourceManager.GetString("ComboBox预载波时间.Items19"),
- componentResourceManager.GetString("ComboBox预载波时间.Items20"),
- componentResourceManager.GetString("ComboBox预载波时间.Items21"),
- componentResourceManager.GetString("ComboBox预载波时间.Items22"),
- componentResourceManager.GetString("ComboBox预载波时间.Items23"),
- componentResourceManager.GetString("ComboBox预载波时间.Items24"),
- componentResourceManager.GetString("ComboBox预载波时间.Items25"),
- componentResourceManager.GetString("ComboBox预载波时间.Items26"),
- componentResourceManager.GetString("ComboBox预载波时间.Items27"),
- componentResourceManager.GetString("ComboBox预载波时间.Items28"),
- componentResourceManager.GetString("ComboBox预载波时间.Items29"),
- componentResourceManager.GetString("ComboBox预载波时间.Items30"),
- componentResourceManager.GetString("ComboBox预载波时间.Items31"),
- componentResourceManager.GetString("ComboBox预载波时间.Items32"),
- componentResourceManager.GetString("ComboBox预载波时间.Items33"),
- componentResourceManager.GetString("ComboBox预载波时间.Items34"),
- componentResourceManager.GetString("ComboBox预载波时间.Items35"),
- componentResourceManager.GetString("ComboBox预载波时间.Items36"),
- componentResourceManager.GetString("ComboBox预载波时间.Items37"),
- componentResourceManager.GetString("ComboBox预载波时间.Items38"),
- componentResourceManager.GetString("ComboBox预载波时间.Items39"),
- componentResourceManager.GetString("ComboBox预载波时间.Items40"),
- componentResourceManager.GetString("ComboBox预载波时间.Items41"),
- componentResourceManager.GetString("ComboBox预载波时间.Items42"),
- componentResourceManager.GetString("ComboBox预载波时间.Items43"),
- componentResourceManager.GetString("ComboBox预载波时间.Items44"),
- componentResourceManager.GetString("ComboBox预载波时间.Items45"),
- componentResourceManager.GetString("ComboBox预载波时间.Items46"),
- componentResourceManager.GetString("ComboBox预载波时间.Items47"),
- componentResourceManager.GetString("ComboBox预载波时间.Items48"),
- componentResourceManager.GetString("ComboBox预载波时间.Items49"),
- componentResourceManager.GetString("ComboBox预载波时间.Items50")
- });
- ComboBox预载波时间.Name = "ComboBox预载波时间";
- CheckBox空闲自动应答.AccessibleDescription = null;
- CheckBox空闲自动应答.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox空闲自动应答, "CheckBox空闲自动应答");
- CheckBox空闲自动应答.BackgroundImage = null;
- CheckBox空闲自动应答.Font = null;
- CheckBox空闲自动应答.Name = "CheckBox空闲自动应答";
- CheckBox空闲自动应答.UseVisualStyleBackColor = true;
- Label14.AccessibleDescription = null;
- Label14.AccessibleName = null;
- componentResourceManager.ApplyResources(Label14, "Label14");
- Label14.Font = null;
- Label14.Name = "Label14";
- CheckBox短哔音.AccessibleDescription = null;
- CheckBox短哔音.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox短哔音, "CheckBox短哔音");
- CheckBox短哔音.BackgroundImage = null;
- CheckBox短哔音.Font = null;
- CheckBox短哔音.Name = "CheckBox短哔音";
- CheckBox短哔音.UseVisualStyleBackColor = true;
- CheckBox侧音.AccessibleDescription = null;
- CheckBox侧音.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox侧音, "CheckBox侧音");
- CheckBox侧音.BackgroundImage = null;
- CheckBox侧音.Font = null;
- CheckBox侧音.Name = "CheckBox侧音";
- CheckBox侧音.UseVisualStyleBackColor = true;
- Label1.AccessibleDescription = null;
- Label1.AccessibleName = null;
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Font = null;
- Label1.Name = "Label1";
- Button3.AccessibleDescription = null;
- Button3.AccessibleName = null;
- componentResourceManager.ApplyResources(Button3, "Button3");
- Button3.BackgroundImage = null;
- Button3.Font = null;
- Button3.Name = "Button3";
- Button3.UseVisualStyleBackColor = true;
- Button2.AccessibleDescription = null;
- Button2.AccessibleName = null;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.BackgroundImage = null;
- Button2.Font = null;
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- Button1.AccessibleDescription = null;
- Button1.AccessibleName = null;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.BackgroundImage = null;
- Button1.Font = null;
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- ComboBox37.AccessibleDescription = null;
- ComboBox37.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox37, "ComboBox37");
- ComboBox37.BackgroundImage = null;
- ComboBox37.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox37.Font = null;
- ComboBox37.FormattingEnabled = true;
- ComboBox37.Name = "ComboBox37";
- Label67.AccessibleDescription = null;
- Label67.AccessibleName = null;
- componentResourceManager.ApplyResources(Label67, "Label67");
- Label67.Font = null;
- Label67.Name = "Label67";
- ComboBox38.AccessibleDescription = null;
- ComboBox38.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox38, "ComboBox38");
- ComboBox38.BackgroundImage = null;
- ComboBox38.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox38.Font = null;
- ComboBox38.FormattingEnabled = true;
- ComboBox38.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox38.Items"),
- componentResourceManager.GetString("ComboBox38.Items1"),
- componentResourceManager.GetString("ComboBox38.Items2"),
- componentResourceManager.GetString("ComboBox38.Items3")
- });
- ComboBox38.Name = "ComboBox38";
- Label68.AccessibleDescription = null;
- Label68.AccessibleName = null;
- componentResourceManager.ApplyResources(Label68, "Label68");
- Label68.Font = null;
- Label68.Name = "Label68";
- ComboBox39.AccessibleDescription = null;
- ComboBox39.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox39, "ComboBox39");
- ComboBox39.BackgroundImage = null;
- ComboBox39.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox39.Font = null;
- ComboBox39.FormattingEnabled = true;
- ComboBox39.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox39.Items"),
- componentResourceManager.GetString("ComboBox39.Items1"),
- componentResourceManager.GetString("ComboBox39.Items2"),
- componentResourceManager.GetString("ComboBox39.Items3"),
- componentResourceManager.GetString("ComboBox39.Items4"),
- componentResourceManager.GetString("ComboBox39.Items5"),
- componentResourceManager.GetString("ComboBox39.Items6"),
- componentResourceManager.GetString("ComboBox39.Items7"),
- componentResourceManager.GetString("ComboBox39.Items8"),
- componentResourceManager.GetString("ComboBox39.Items9"),
- componentResourceManager.GetString("ComboBox39.Items10"),
- componentResourceManager.GetString("ComboBox39.Items11"),
- componentResourceManager.GetString("ComboBox39.Items12"),
- componentResourceManager.GetString("ComboBox39.Items13"),
- componentResourceManager.GetString("ComboBox39.Items14"),
- componentResourceManager.GetString("ComboBox39.Items15")
- });
- ComboBox39.Name = "ComboBox39";
- Label69.AccessibleDescription = null;
- Label69.AccessibleName = null;
- componentResourceManager.ApplyResources(Label69, "Label69");
- Label69.Font = null;
- Label69.Name = "Label69";
- ComboBox40.AccessibleDescription = null;
- ComboBox40.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox40, "ComboBox40");
- ComboBox40.BackgroundImage = null;
- ComboBox40.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox40.Font = null;
- ComboBox40.FormattingEnabled = true;
- ComboBox40.Name = "ComboBox40";
- Label74.AccessibleDescription = null;
- Label74.AccessibleName = null;
- componentResourceManager.ApplyResources(Label74, "Label74");
- Label74.Font = null;
- Label74.Name = "Label74";
- ComboBox41.AccessibleDescription = null;
- ComboBox41.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox41, "ComboBox41");
- ComboBox41.BackgroundImage = null;
- ComboBox41.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox41.Font = null;
- ComboBox41.FormattingEnabled = true;
- ComboBox41.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox41.Items"),
- componentResourceManager.GetString("ComboBox41.Items1"),
- componentResourceManager.GetString("ComboBox41.Items2"),
- componentResourceManager.GetString("ComboBox41.Items3")
- });
- ComboBox41.Name = "ComboBox41";
- Label75.AccessibleDescription = null;
- Label75.AccessibleName = null;
- componentResourceManager.ApplyResources(Label75, "Label75");
- Label75.Font = null;
- Label75.Name = "Label75";
- ComboBox42.AccessibleDescription = null;
- ComboBox42.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox42, "ComboBox42");
- ComboBox42.BackgroundImage = null;
- ComboBox42.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox42.Font = null;
- ComboBox42.FormattingEnabled = true;
- ComboBox42.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox42.Items"),
- componentResourceManager.GetString("ComboBox42.Items1"),
- componentResourceManager.GetString("ComboBox42.Items2"),
- componentResourceManager.GetString("ComboBox42.Items3"),
- componentResourceManager.GetString("ComboBox42.Items4"),
- componentResourceManager.GetString("ComboBox42.Items5"),
- componentResourceManager.GetString("ComboBox42.Items6"),
- componentResourceManager.GetString("ComboBox42.Items7"),
- componentResourceManager.GetString("ComboBox42.Items8"),
- componentResourceManager.GetString("ComboBox42.Items9"),
- componentResourceManager.GetString("ComboBox42.Items10"),
- componentResourceManager.GetString("ComboBox42.Items11"),
- componentResourceManager.GetString("ComboBox42.Items12"),
- componentResourceManager.GetString("ComboBox42.Items13"),
- componentResourceManager.GetString("ComboBox42.Items14"),
- componentResourceManager.GetString("ComboBox42.Items15")
- });
- ComboBox42.Name = "ComboBox42";
- Label76.AccessibleDescription = null;
- Label76.AccessibleName = null;
- componentResourceManager.ApplyResources(Label76, "Label76");
- Label76.Font = null;
- Label76.Name = "Label76";
- ComboBox43.AccessibleDescription = null;
- ComboBox43.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox43, "ComboBox43");
- ComboBox43.BackgroundImage = null;
- ComboBox43.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox43.Font = null;
- ComboBox43.FormattingEnabled = true;
- ComboBox43.Name = "ComboBox43";
- Label77.AccessibleDescription = null;
- Label77.AccessibleName = null;
- componentResourceManager.ApplyResources(Label77, "Label77");
- Label77.Font = null;
- Label77.Name = "Label77";
- ComboBox44.AccessibleDescription = null;
- ComboBox44.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox44, "ComboBox44");
- ComboBox44.BackgroundImage = null;
- ComboBox44.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox44.Font = null;
- ComboBox44.FormattingEnabled = true;
- ComboBox44.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox44.Items"),
- componentResourceManager.GetString("ComboBox44.Items1"),
- componentResourceManager.GetString("ComboBox44.Items2"),
- componentResourceManager.GetString("ComboBox44.Items3")
- });
- ComboBox44.Name = "ComboBox44";
- Label78.AccessibleDescription = null;
- Label78.AccessibleName = null;
- componentResourceManager.ApplyResources(Label78, "Label78");
- Label78.Font = null;
- Label78.Name = "Label78";
- ComboBox45.AccessibleDescription = null;
- ComboBox45.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox45, "ComboBox45");
- ComboBox45.BackgroundImage = null;
- ComboBox45.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox45.Font = null;
- ComboBox45.FormattingEnabled = true;
- ComboBox45.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox45.Items"),
- componentResourceManager.GetString("ComboBox45.Items1"),
- componentResourceManager.GetString("ComboBox45.Items2"),
- componentResourceManager.GetString("ComboBox45.Items3"),
- componentResourceManager.GetString("ComboBox45.Items4"),
- componentResourceManager.GetString("ComboBox45.Items5"),
- componentResourceManager.GetString("ComboBox45.Items6"),
- componentResourceManager.GetString("ComboBox45.Items7"),
- componentResourceManager.GetString("ComboBox45.Items8"),
- componentResourceManager.GetString("ComboBox45.Items9"),
- componentResourceManager.GetString("ComboBox45.Items10"),
- componentResourceManager.GetString("ComboBox45.Items11"),
- componentResourceManager.GetString("ComboBox45.Items12"),
- componentResourceManager.GetString("ComboBox45.Items13"),
- componentResourceManager.GetString("ComboBox45.Items14"),
- componentResourceManager.GetString("ComboBox45.Items15")
- });
- ComboBox45.Name = "ComboBox45";
- Label79.AccessibleDescription = null;
- Label79.AccessibleName = null;
- componentResourceManager.ApplyResources(Label79, "Label79");
- Label79.Font = null;
- Label79.Name = "Label79";
- ComboBox46.AccessibleDescription = null;
- ComboBox46.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox46, "ComboBox46");
- ComboBox46.BackgroundImage = null;
- ComboBox46.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox46.Font = null;
- ComboBox46.FormattingEnabled = true;
- ComboBox46.Name = "ComboBox46";
- Label80.AccessibleDescription = null;
- Label80.AccessibleName = null;
- componentResourceManager.ApplyResources(Label80, "Label80");
- Label80.Font = null;
- Label80.Name = "Label80";
- ComboBox47.AccessibleDescription = null;
- ComboBox47.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox47, "ComboBox47");
- ComboBox47.BackgroundImage = null;
- ComboBox47.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox47.Font = null;
- ComboBox47.FormattingEnabled = true;
- ComboBox47.Items.AddRange(new object[4]
- {
- componentResourceManager.GetString("ComboBox47.Items"),
- componentResourceManager.GetString("ComboBox47.Items1"),
- componentResourceManager.GetString("ComboBox47.Items2"),
- componentResourceManager.GetString("ComboBox47.Items3")
- });
- ComboBox47.Name = "ComboBox47";
- Label81.AccessibleDescription = null;
- Label81.AccessibleName = null;
- componentResourceManager.ApplyResources(Label81, "Label81");
- Label81.Font = null;
- Label81.Name = "Label81";
- ComboBox48.AccessibleDescription = null;
- ComboBox48.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox48, "ComboBox48");
- ComboBox48.BackgroundImage = null;
- ComboBox48.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox48.Font = null;
- ComboBox48.FormattingEnabled = true;
- ComboBox48.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox48.Items"),
- componentResourceManager.GetString("ComboBox48.Items1"),
- componentResourceManager.GetString("ComboBox48.Items2"),
- componentResourceManager.GetString("ComboBox48.Items3"),
- componentResourceManager.GetString("ComboBox48.Items4"),
- componentResourceManager.GetString("ComboBox48.Items5"),
- componentResourceManager.GetString("ComboBox48.Items6"),
- componentResourceManager.GetString("ComboBox48.Items7"),
- componentResourceManager.GetString("ComboBox48.Items8"),
- componentResourceManager.GetString("ComboBox48.Items9"),
- componentResourceManager.GetString("ComboBox48.Items10"),
- componentResourceManager.GetString("ComboBox48.Items11"),
- componentResourceManager.GetString("ComboBox48.Items12"),
- componentResourceManager.GetString("ComboBox48.Items13"),
- componentResourceManager.GetString("ComboBox48.Items14"),
- componentResourceManager.GetString("ComboBox48.Items15")
- });
- ComboBox48.Name = "ComboBox48";
- Label82.AccessibleDescription = null;
- Label82.AccessibleName = null;
- componentResourceManager.ApplyResources(Label82, "Label82");
- Label82.Font = null;
- Label82.Name = "Label82";
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- BackgroundImage = null;
- Controls.Add(Button3);
- Controls.Add(Button2);
- Controls.Add(Button1);
- Controls.Add(TabControl1);
- Font = null;
- Name = nameof (_2ToneForm);
- TabControl1.ResumeLayout(false);
- TabPage1.ResumeLayout(false);
- ((ISupportInitialize) DataGridView1).EndInit();
- TabPage2.ResumeLayout(false);
- TabControl2.ResumeLayout(false);
- TabPage3.ResumeLayout(false);
- TabPage3.PerformLayout();
- GroupBox4.ResumeLayout(false);
- GroupBox4.PerformLayout();
- NumericUpDown1_D.EndInit();
- NumericUpDown1_C.EndInit();
- NumericUpDown1_B.EndInit();
- NumericUpDown1_A.EndInit();
- GroupBox3.ResumeLayout(false);
- GroupBox3.PerformLayout();
- GroupBox2.ResumeLayout(false);
- GroupBox2.PerformLayout();
- GroupBox1.ResumeLayout(false);
- GroupBox1.PerformLayout();
- TabPage4.ResumeLayout(false);
- TabPage4.PerformLayout();
- GroupBox5.ResumeLayout(false);
- GroupBox5.PerformLayout();
- NumericUpDown2_D.EndInit();
- NumericUpDown2_C.EndInit();
- NumericUpDown2_B.EndInit();
- NumericUpDown2_A.EndInit();
- GroupBox6.ResumeLayout(false);
- GroupBox6.PerformLayout();
- GroupBox7.ResumeLayout(false);
- GroupBox7.PerformLayout();
- GroupBox8.ResumeLayout(false);
- GroupBox8.PerformLayout();
- TabPage5.ResumeLayout(false);
- TabPage5.PerformLayout();
- GroupBox9.ResumeLayout(false);
- GroupBox9.PerformLayout();
- NumericUpDown3_D.EndInit();
- NumericUpDown3_C.EndInit();
- NumericUpDown3_B.EndInit();
- NumericUpDown3_A.EndInit();
- GroupBox10.ResumeLayout(false);
- GroupBox10.PerformLayout();
- GroupBox11.ResumeLayout(false);
- GroupBox11.PerformLayout();
- GroupBox12.ResumeLayout(false);
- GroupBox12.PerformLayout();
- TabPage6.ResumeLayout(false);
- TabPage6.PerformLayout();
- GroupBox13.ResumeLayout(false);
- GroupBox13.PerformLayout();
- NumericUpDown4_D.EndInit();
- NumericUpDown4_C.EndInit();
- NumericUpDown4_B.EndInit();
- NumericUpDown4_A.EndInit();
- GroupBox14.ResumeLayout(false);
- GroupBox14.PerformLayout();
- GroupBox15.ResumeLayout(false);
- GroupBox15.PerformLayout();
- GroupBox16.ResumeLayout(false);
- GroupBox16.PerformLayout();
- TabPage7.ResumeLayout(false);
- TabPage7.PerformLayout();
- GroupBox17.ResumeLayout(false);
- GroupBox17.PerformLayout();
- NumericUpDown5_D.EndInit();
- NumericUpDown5_C.EndInit();
- NumericUpDown5_B.EndInit();
- NumericUpDown5_A.EndInit();
- GroupBox18.ResumeLayout(false);
- GroupBox18.PerformLayout();
- GroupBox19.ResumeLayout(false);
- GroupBox19.PerformLayout();
- GroupBox20.ResumeLayout(false);
- GroupBox20.PerformLayout();
- TabPage8.ResumeLayout(false);
- TabPage8.PerformLayout();
- GroupBox21.ResumeLayout(false);
- GroupBox21.PerformLayout();
- NumericUpDown6_D.EndInit();
- NumericUpDown6_C.EndInit();
- NumericUpDown6_B.EndInit();
- NumericUpDown6_A.EndInit();
- GroupBox22.ResumeLayout(false);
- GroupBox22.PerformLayout();
- GroupBox23.ResumeLayout(false);
- GroupBox23.PerformLayout();
- GroupBox24.ResumeLayout(false);
- GroupBox24.PerformLayout();
- TabPage9.ResumeLayout(false);
- TabPage9.PerformLayout();
- GroupBox25.ResumeLayout(false);
- GroupBox25.PerformLayout();
- NumericUpDown7_D.EndInit();
- NumericUpDown7_C.EndInit();
- NumericUpDown7_B.EndInit();
- NumericUpDown7_A.EndInit();
- GroupBox26.ResumeLayout(false);
- GroupBox26.PerformLayout();
- GroupBox27.ResumeLayout(false);
- GroupBox27.PerformLayout();
- GroupBox28.ResumeLayout(false);
- GroupBox28.PerformLayout();
- TabPage10.ResumeLayout(false);
- TabPage10.PerformLayout();
- GroupBox29.ResumeLayout(false);
- GroupBox29.PerformLayout();
- NumericUpDown8_D.EndInit();
- NumericUpDown8_C.EndInit();
- NumericUpDown8_B.EndInit();
- NumericUpDown8_A.EndInit();
- GroupBox30.ResumeLayout(false);
- GroupBox30.PerformLayout();
- GroupBox31.ResumeLayout(false);
- GroupBox31.PerformLayout();
- GroupBox32.ResumeLayout(false);
- GroupBox32.PerformLayout();
- TabPage11.ResumeLayout(false);
- TabPage11.PerformLayout();
- ResumeLayout(false);
- }
-
- internal virtual TabControl TabControl1
- {
- [DebuggerNonUserCode] get => _TabControl1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabControl1 = value;
- }
- }
-
- internal virtual TabPage TabPage1
- {
- [DebuggerNonUserCode] get => _TabPage1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage1 = value;
- }
- }
-
- internal virtual DataGridView DataGridView1
- {
- [DebuggerNonUserCode] get => _DataGridView1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView1 != null)
+ [DebuggerNonUserCode]
+ static _2ToneForm()
{
- _DataGridView1.MouseClick -= DataGridView1_MouseClick;
- _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
- _DataGridView1.EditingControlShowing -= DataGridView1_EditingControlShowing;
- _DataGridView1.CellEndEdit -= DataGridView1_CellEndEdit;
}
- _DataGridView1 = value;
- if (_DataGridView1 == null)
- return;
- _DataGridView1.MouseClick += DataGridView1_MouseClick;
- _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
- _DataGridView1.EditingControlShowing += DataGridView1_EditingControlShowing;
- _DataGridView1.CellEndEdit += DataGridView1_CellEndEdit;
- }
- }
- internal virtual TabPage TabPage2
- {
- [DebuggerNonUserCode] get => _TabPage2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage2 = value;
- }
- }
-
- internal virtual TabControl TabControl2
- {
- [DebuggerNonUserCode] get => _TabControl2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabControl2 = value;
- }
- }
-
- internal virtual TabPage TabPage3
- {
- [DebuggerNonUserCode] get => _TabPage3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage3 = value;
- }
- }
-
- internal virtual GroupBox GroupBox1
- {
- [DebuggerNonUserCode] get => _GroupBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox1 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式1_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式1_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式1_1 = value;
- }
- }
-
- internal virtual Label Label2
- {
- [DebuggerNonUserCode] get => _Label2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label2 = value;
- }
-
- internal virtual TabPage TabPage4
- {
- [DebuggerNonUserCode] get => _TabPage4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage4 = value;
- }
- }
-
- internal virtual TabPage TabPage5
- {
- [DebuggerNonUserCode] get => _TabPage5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage5 = value;
- }
- }
-
- internal virtual TabPage TabPage6
- {
- [DebuggerNonUserCode] get => _TabPage6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage6 = value;
- }
- }
-
- internal virtual TabPage TabPage7
- {
- [DebuggerNonUserCode] get => _TabPage7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage7 = value;
- }
- }
-
- internal virtual TabPage TabPage8
- {
- [DebuggerNonUserCode] get => _TabPage8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage8 = value;
- }
- }
-
- internal virtual TabPage TabPage9
- {
- [DebuggerNonUserCode] get => _TabPage9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage9 = value;
- }
- }
-
- internal virtual TabPage TabPage10
- {
- [DebuggerNonUserCode] get => _TabPage10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage10 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音1_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音1_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox提示音1_1 != null)
- _ComboBox提示音1_1.MouseDown -= ComboBox提示音1_1_MouseDown;
- _ComboBox提示音1_1 = value;
- if (_ComboBox提示音1_1 == null)
- return;
- _ComboBox提示音1_1.MouseDown += ComboBox提示音1_1_MouseDown;
- }
- }
-
- internal virtual Label Label4
- {
- [DebuggerNonUserCode] get => _Label4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label4 = value;
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式1_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式1_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式1_1 = value;
- }
- }
-
- internal virtual Label Label3
- {
- [DebuggerNonUserCode] get => _Label3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label3 = value;
- }
-
- internal virtual GroupBox GroupBox4
- {
- [DebuggerNonUserCode] get => _GroupBox4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox4 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音1_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音1_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音1_4 = value;
- }
- }
-
- internal virtual Label Label11
- {
- [DebuggerNonUserCode] get => _Label11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label11 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式1_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式1_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式1_4 = value;
- }
- }
-
- internal virtual Label Label12
- {
- [DebuggerNonUserCode] get => _Label12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label12 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式1_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式1_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式1_4 = value;
- }
- }
-
- internal virtual Label Label13
- {
- [DebuggerNonUserCode] get => _Label13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label13 = value;
- }
- }
-
- internal virtual GroupBox GroupBox3
- {
- [DebuggerNonUserCode] get => _GroupBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox3 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音1_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音1_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音1_3 = value;
- }
- }
-
- internal virtual Label Label8
- {
- [DebuggerNonUserCode] get => _Label8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label8 = value;
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式1_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式1_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式1_3 = value;
- }
- }
-
- internal virtual Label Label9
- {
- [DebuggerNonUserCode] get => _Label9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label9 = value;
- }
-
- internal virtual ComboBox ComboBox两音的组合方式1_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式1_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式1_3 = value;
- }
- }
-
- internal virtual Label Label10
- {
- [DebuggerNonUserCode] get => _Label10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label10 = value;
- }
- }
-
- internal virtual GroupBox GroupBox2
- {
- [DebuggerNonUserCode] get => _GroupBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox2 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音1_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音1_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音1_2 = value;
- }
- }
-
- internal virtual Label Label5
- {
- [DebuggerNonUserCode] get => _Label5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label5 = value;
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式1_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式1_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式1_2 = value;
- }
- }
-
- internal virtual Label Label6
- {
- [DebuggerNonUserCode] get => _Label6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label6 = value;
- }
-
- internal virtual ComboBox ComboBox两音的组合方式1_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式1_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式1_2 = value;
- }
- }
-
- internal virtual Label Label7
- {
- [DebuggerNonUserCode] get => _Label7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label7 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown1_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown1_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown1_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown1_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown1_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown1_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown1_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown1_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown1_B = value;
- }
- }
-
- internal virtual Label Label18
- {
- [DebuggerNonUserCode] get => _Label18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label18 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown1_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown1_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown1_A = value;
- }
- }
-
- internal virtual Label Label17
- {
- [DebuggerNonUserCode] get => _Label17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label17 = value;
- }
- }
-
- internal virtual Label Label16
- {
- [DebuggerNonUserCode] get => _Label16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label16 = value;
- }
- }
-
- internal virtual Label Label15
- {
- [DebuggerNonUserCode] get => _Label15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label15 = value;
- }
- }
-
- internal virtual TabPage TabPage11
- {
- [DebuggerNonUserCode] get => _TabPage11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage11 = value;
- }
- }
-
- internal virtual CheckBox CheckBox空闲自动应答
- {
- [DebuggerNonUserCode] get => _CheckBox空闲自动应答;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox空闲自动应答 = value;
- }
- }
-
- internal virtual Label Label14
- {
- [DebuggerNonUserCode] get => _Label14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label14 = value;
- }
- }
-
- internal virtual CheckBox CheckBox短哔音
- {
- [DebuggerNonUserCode] get => _CheckBox短哔音;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox短哔音 = value;
- }
- }
-
- internal virtual CheckBox CheckBox侧音
- {
- [DebuggerNonUserCode] get => _CheckBox侧音;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox侧音 = value;
- }
- }
-
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
-
- internal virtual Button Button3
- {
- [DebuggerNonUserCode] get => _Button3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button3 = value;
- }
- }
-
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button2 = value;
- }
- }
-
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
-
- internal virtual GroupBox GroupBox5
- {
- [DebuggerNonUserCode] get => _GroupBox5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox5 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音2_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音2_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音2_4 = value;
- }
- }
-
- internal virtual Label Label19
- {
- [DebuggerNonUserCode] get => _Label19;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label19 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式2_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式2_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式2_4 = value;
- }
- }
-
- internal virtual Label Label20
- {
- [DebuggerNonUserCode] get => _Label20;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label20 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式2_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式2_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式2_4 = value;
- }
- }
-
- internal virtual Label Label21
- {
- [DebuggerNonUserCode] get => _Label21;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label21 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown2_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown2_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown2_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown2_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown2_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown2_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown2_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown2_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown2_B = value;
- }
- }
-
- internal virtual Label Label22
- {
- [DebuggerNonUserCode] get => _Label22;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label22 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown2_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown2_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown2_A = value;
- }
- }
-
- internal virtual Label Label23
- {
- [DebuggerNonUserCode] get => _Label23;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label23 = value;
- }
- }
-
- internal virtual Label Label24
- {
- [DebuggerNonUserCode] get => _Label24;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label24 = value;
- }
- }
-
- internal virtual Label Label25
- {
- [DebuggerNonUserCode] get => _Label25;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label25 = value;
- }
- }
-
- internal virtual GroupBox GroupBox6
- {
- [DebuggerNonUserCode] get => _GroupBox6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox6 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音2_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音2_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音2_3 = value;
- }
- }
-
- internal virtual Label Label26
- {
- [DebuggerNonUserCode] get => _Label26;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label26 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式2_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式2_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式2_3 = value;
- }
- }
-
- internal virtual Label Label27
- {
- [DebuggerNonUserCode] get => _Label27;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label27 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式2_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式2_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式2_3 = value;
- }
- }
-
- internal virtual Label Label28
- {
- [DebuggerNonUserCode] get => _Label28;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label28 = value;
- }
- }
-
- internal virtual GroupBox GroupBox7
- {
- [DebuggerNonUserCode] get => _GroupBox7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox7 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音2_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音2_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音2_2 = value;
- }
- }
-
- internal virtual Label Label29
- {
- [DebuggerNonUserCode] get => _Label29;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label29 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式2_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式2_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式2_2 = value;
- }
- }
-
- internal virtual Label Label30
- {
- [DebuggerNonUserCode] get => _Label30;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label30 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式2_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式2_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式2_2 = value;
- }
- }
-
- internal virtual Label Label31
- {
- [DebuggerNonUserCode] get => _Label31;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label31 = value;
- }
- }
-
- internal virtual GroupBox GroupBox8
- {
- [DebuggerNonUserCode] get => _GroupBox8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox8 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音2_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音2_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音2_1 = value;
- }
- }
-
- internal virtual Label Label32
- {
- [DebuggerNonUserCode] get => _Label32;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label32 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式2_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式2_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式2_1 = value;
- }
- }
-
- internal virtual Label Label33
- {
- [DebuggerNonUserCode] get => _Label33;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label33 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式2_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式2_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式2_1 = value;
- }
- }
-
- internal virtual Label Label34
- {
- [DebuggerNonUserCode] get => _Label34;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label34 = value;
- }
- }
-
- internal virtual GroupBox GroupBox9
- {
- [DebuggerNonUserCode] get => _GroupBox9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox9 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音3_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音3_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音3_4 = value;
- }
- }
-
- internal virtual Label Label35
- {
- [DebuggerNonUserCode] get => _Label35;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label35 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式3_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式3_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式3_4 = value;
- }
- }
-
- internal virtual Label Label36
- {
- [DebuggerNonUserCode] get => _Label36;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label36 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式3_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式3_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式3_4 = value;
- }
- }
-
- internal virtual Label Label37
- {
- [DebuggerNonUserCode] get => _Label37;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label37 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown3_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown3_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown3_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown3_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown3_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown3_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown3_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown3_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown3_B = value;
- }
- }
-
- internal virtual Label Label38
- {
- [DebuggerNonUserCode] get => _Label38;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label38 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown3_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown3_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown3_A = value;
- }
- }
-
- internal virtual Label Label39
- {
- [DebuggerNonUserCode] get => _Label39;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label39 = value;
- }
- }
-
- internal virtual Label Label40
- {
- [DebuggerNonUserCode] get => _Label40;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label40 = value;
- }
- }
-
- internal virtual Label Label41
- {
- [DebuggerNonUserCode] get => _Label41;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label41 = value;
- }
- }
-
- internal virtual GroupBox GroupBox10
- {
- [DebuggerNonUserCode] get => _GroupBox10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox10 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音3_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音3_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音3_3 = value;
- }
- }
-
- internal virtual Label Label42
- {
- [DebuggerNonUserCode] get => _Label42;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label42 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式3_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式3_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式3_3 = value;
- }
- }
-
- internal virtual Label Label43
- {
- [DebuggerNonUserCode] get => _Label43;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label43 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式3_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式3_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式3_3 = value;
- }
- }
-
- internal virtual Label Label44
- {
- [DebuggerNonUserCode] get => _Label44;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label44 = value;
- }
- }
-
- internal virtual GroupBox GroupBox11
- {
- [DebuggerNonUserCode] get => _GroupBox11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox11 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音3_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音3_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音3_2 = value;
- }
- }
-
- internal virtual Label Label45
- {
- [DebuggerNonUserCode] get => _Label45;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label45 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式3_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式3_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式3_2 = value;
- }
- }
-
- internal virtual Label Label46
- {
- [DebuggerNonUserCode] get => _Label46;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label46 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式3_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式3_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式3_2 = value;
- }
- }
-
- internal virtual Label Label47
- {
- [DebuggerNonUserCode] get => _Label47;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label47 = value;
- }
- }
-
- internal virtual GroupBox GroupBox12
- {
- [DebuggerNonUserCode] get => _GroupBox12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox12 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音3_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音3_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音3_1 = value;
- }
- }
-
- internal virtual Label Label48
- {
- [DebuggerNonUserCode] get => _Label48;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label48 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式3_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式3_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式3_1 = value;
- }
- }
-
- internal virtual Label Label49
- {
- [DebuggerNonUserCode] get => _Label49;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label49 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式3_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式3_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式3_1 = value;
- }
- }
-
- internal virtual Label Label50
- {
- [DebuggerNonUserCode] get => _Label50;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label50 = value;
- }
- }
-
- internal virtual GroupBox GroupBox13
- {
- [DebuggerNonUserCode] get => _GroupBox13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox13 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音4_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音4_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音4_4 = value;
- }
- }
-
- internal virtual Label Label51
- {
- [DebuggerNonUserCode] get => _Label51;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label51 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式4_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式4_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式4_4 = value;
- }
- }
-
- internal virtual Label Label52
- {
- [DebuggerNonUserCode] get => _Label52;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label52 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式4_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式4_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式4_4 = value;
- }
- }
-
- internal virtual Label Label53
- {
- [DebuggerNonUserCode] get => _Label53;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label53 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown4_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown4_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown4_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown4_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown4_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown4_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown4_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown4_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown4_B = value;
- }
- }
-
- internal virtual Label Label54
- {
- [DebuggerNonUserCode] get => _Label54;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label54 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown4_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown4_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown4_A = value;
- }
- }
-
- internal virtual Label Label55
- {
- [DebuggerNonUserCode] get => _Label55;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label55 = value;
- }
- }
-
- internal virtual Label Label56
- {
- [DebuggerNonUserCode] get => _Label56;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label56 = value;
- }
- }
-
- internal virtual Label Label57
- {
- [DebuggerNonUserCode] get => _Label57;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label57 = value;
- }
- }
-
- internal virtual GroupBox GroupBox14
- {
- [DebuggerNonUserCode] get => _GroupBox14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox14 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音4_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音4_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音4_3 = value;
- }
- }
-
- internal virtual Label Label58
- {
- [DebuggerNonUserCode] get => _Label58;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label58 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式4_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式4_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式4_3 = value;
- }
- }
-
- internal virtual Label Label59
- {
- [DebuggerNonUserCode] get => _Label59;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label59 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式4_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式4_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式4_3 = value;
- }
- }
-
- internal virtual Label Label60
- {
- [DebuggerNonUserCode] get => _Label60;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label60 = value;
- }
- }
-
- internal virtual GroupBox GroupBox15
- {
- [DebuggerNonUserCode] get => _GroupBox15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox15 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音4_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音4_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音4_2 = value;
- }
- }
-
- internal virtual Label Label61
- {
- [DebuggerNonUserCode] get => _Label61;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label61 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式4_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式4_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式4_2 = value;
- }
- }
-
- internal virtual Label Label62
- {
- [DebuggerNonUserCode] get => _Label62;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label62 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式4_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式4_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式4_2 = value;
- }
- }
-
- internal virtual Label Label63
- {
- [DebuggerNonUserCode] get => _Label63;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label63 = value;
- }
- }
-
- internal virtual GroupBox GroupBox16
- {
- [DebuggerNonUserCode] get => _GroupBox16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox16 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音4_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音4_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音4_1 = value;
- }
- }
-
- internal virtual Label Label64
- {
- [DebuggerNonUserCode] get => _Label64;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label64 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式4_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式4_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式4_1 = value;
- }
- }
-
- internal virtual Label Label65
- {
- [DebuggerNonUserCode] get => _Label65;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label65 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式4_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式4_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式4_1 = value;
- }
- }
-
- internal virtual Label Label66
- {
- [DebuggerNonUserCode] get => _Label66;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label66 = value;
- }
- }
-
- internal virtual GroupBox GroupBox17
- {
- [DebuggerNonUserCode] get => _GroupBox17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox17 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音5_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音5_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音5_4 = value;
- }
- }
-
- internal virtual Label Label70
- {
- [DebuggerNonUserCode] get => _Label70;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label70 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式5_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式5_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式5_4 = value;
- }
- }
-
- internal virtual Label Label71
- {
- [DebuggerNonUserCode] get => _Label71;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label71 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式5_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式5_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式5_4 = value;
- }
- }
-
- internal virtual Label Label72
- {
- [DebuggerNonUserCode] get => _Label72;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label72 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown5_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown5_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown5_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown5_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown5_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown5_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown5_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown5_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown5_B = value;
- }
- }
-
- internal virtual Label Label73
- {
- [DebuggerNonUserCode] get => _Label73;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label73 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown5_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown5_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown5_A = value;
- }
- }
-
- internal virtual Label Label83
- {
- [DebuggerNonUserCode] get => _Label83;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label83 = value;
- }
- }
-
- internal virtual Label Label84
- {
- [DebuggerNonUserCode] get => _Label84;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label84 = value;
- }
- }
-
- internal virtual Label Label85
- {
- [DebuggerNonUserCode] get => _Label85;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label85 = value;
- }
- }
-
- internal virtual GroupBox GroupBox18
- {
- [DebuggerNonUserCode] get => _GroupBox18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox18 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音5_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音5_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音5_3 = value;
- }
- }
-
- internal virtual Label Label86
- {
- [DebuggerNonUserCode] get => _Label86;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label86 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式5_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式5_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式5_3 = value;
- }
- }
-
- internal virtual Label Label87
- {
- [DebuggerNonUserCode] get => _Label87;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label87 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式5_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式5_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式5_3 = value;
- }
- }
-
- internal virtual Label Label88
- {
- [DebuggerNonUserCode] get => _Label88;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label88 = value;
- }
- }
-
- internal virtual GroupBox GroupBox19
- {
- [DebuggerNonUserCode] get => _GroupBox19;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox19 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音5_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音5_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音5_2 = value;
- }
- }
-
- internal virtual Label Label89
- {
- [DebuggerNonUserCode] get => _Label89;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label89 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式5_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式5_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式5_2 = value;
- }
- }
-
- internal virtual Label Label90
- {
- [DebuggerNonUserCode] get => _Label90;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label90 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式5_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式5_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式5_2 = value;
- }
- }
-
- internal virtual Label Label91
- {
- [DebuggerNonUserCode] get => _Label91;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label91 = value;
- }
- }
-
- internal virtual GroupBox GroupBox20
- {
- [DebuggerNonUserCode] get => _GroupBox20;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox20 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音5_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音5_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音5_1 = value;
- }
- }
-
- internal virtual Label Label92
- {
- [DebuggerNonUserCode] get => _Label92;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label92 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式5_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式5_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式5_1 = value;
- }
- }
-
- internal virtual Label Label93
- {
- [DebuggerNonUserCode] get => _Label93;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label93 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式5_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式5_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式5_1 = value;
- }
- }
-
- internal virtual Label Label94
- {
- [DebuggerNonUserCode] get => _Label94;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label94 = value;
- }
- }
-
- internal virtual GroupBox GroupBox21
- {
- [DebuggerNonUserCode] get => _GroupBox21;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox21 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音6_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音6_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音6_4 = value;
- }
- }
-
- internal virtual Label Label95
- {
- [DebuggerNonUserCode] get => _Label95;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label95 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式6_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式6_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式6_4 = value;
- }
- }
-
- internal virtual Label Label96
- {
- [DebuggerNonUserCode] get => _Label96;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label96 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式6_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式6_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式6_4 = value;
- }
- }
-
- internal virtual Label Label97
- {
- [DebuggerNonUserCode] get => _Label97;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label97 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown6_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown6_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown6_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown6_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown6_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown6_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown6_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown6_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown6_B = value;
- }
- }
-
- internal virtual Label Label98
- {
- [DebuggerNonUserCode] get => _Label98;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label98 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown6_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown6_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown6_A = value;
- }
- }
-
- internal virtual Label Label99
- {
- [DebuggerNonUserCode] get => _Label99;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label99 = value;
- }
- }
-
- internal virtual Label Label100
- {
- [DebuggerNonUserCode] get => _Label100;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label100 = value;
- }
- }
-
- internal virtual Label Label101
- {
- [DebuggerNonUserCode] get => _Label101;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label101 = value;
- }
- }
-
- internal virtual GroupBox GroupBox22
- {
- [DebuggerNonUserCode] get => _GroupBox22;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox22 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音6_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音6_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音6_3 = value;
- }
- }
-
- internal virtual Label Label102
- {
- [DebuggerNonUserCode] get => _Label102;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label102 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式6_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式6_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式6_3 = value;
- }
- }
-
- internal virtual Label Label103
- {
- [DebuggerNonUserCode] get => _Label103;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label103 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式6_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式6_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式6_3 = value;
- }
- }
-
- internal virtual Label Label104
- {
- [DebuggerNonUserCode] get => _Label104;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label104 = value;
- }
- }
-
- internal virtual GroupBox GroupBox23
- {
- [DebuggerNonUserCode] get => _GroupBox23;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox23 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音6_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音6_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音6_2 = value;
- }
- }
-
- internal virtual Label Label105
- {
- [DebuggerNonUserCode] get => _Label105;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label105 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式6_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式6_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式6_2 = value;
- }
- }
-
- internal virtual Label Label106
- {
- [DebuggerNonUserCode] get => _Label106;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label106 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式6_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式6_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式6_2 = value;
- }
- }
-
- internal virtual Label Label107
- {
- [DebuggerNonUserCode] get => _Label107;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label107 = value;
- }
- }
-
- internal virtual GroupBox GroupBox24
- {
- [DebuggerNonUserCode] get => _GroupBox24;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox24 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音6_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音6_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音6_1 = value;
- }
- }
-
- internal virtual Label Label108
- {
- [DebuggerNonUserCode] get => _Label108;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label108 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式6_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式6_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式6_1 = value;
- }
- }
-
- internal virtual Label Label109
- {
- [DebuggerNonUserCode] get => _Label109;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label109 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式6_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式6_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式6_1 = value;
- }
- }
-
- internal virtual Label Label110
- {
- [DebuggerNonUserCode] get => _Label110;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label110 = value;
- }
- }
-
- internal virtual GroupBox GroupBox25
- {
- [DebuggerNonUserCode] get => _GroupBox25;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox25 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音7_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音7_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音7_4 = value;
- }
- }
-
- internal virtual Label Label111
- {
- [DebuggerNonUserCode] get => _Label111;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label111 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式7_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式7_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式7_4 = value;
- }
- }
-
- internal virtual Label Label112
- {
- [DebuggerNonUserCode] get => _Label112;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label112 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式7_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式7_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式7_4 = value;
- }
- }
-
- internal virtual Label Label113
- {
- [DebuggerNonUserCode] get => _Label113;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label113 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown7_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown7_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown7_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown7_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown7_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown7_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown7_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown7_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown7_B = value;
- }
- }
-
- internal virtual Label Label114
- {
- [DebuggerNonUserCode] get => _Label114;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label114 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown7_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown7_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown7_A = value;
- }
- }
-
- internal virtual Label Label115
- {
- [DebuggerNonUserCode] get => _Label115;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label115 = value;
- }
- }
-
- internal virtual Label Label116
- {
- [DebuggerNonUserCode] get => _Label116;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label116 = value;
- }
- }
-
- internal virtual Label Label117
- {
- [DebuggerNonUserCode] get => _Label117;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label117 = value;
- }
- }
-
- internal virtual GroupBox GroupBox26
- {
- [DebuggerNonUserCode] get => _GroupBox26;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox26 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音7_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音7_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音7_3 = value;
- }
- }
-
- internal virtual Label Label118
- {
- [DebuggerNonUserCode] get => _Label118;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label118 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式7_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式7_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式7_3 = value;
- }
- }
-
- internal virtual Label Label119
- {
- [DebuggerNonUserCode] get => _Label119;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label119 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式7_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式7_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式7_3 = value;
- }
- }
-
- internal virtual Label Label120
- {
- [DebuggerNonUserCode] get => _Label120;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label120 = value;
- }
- }
-
- internal virtual GroupBox GroupBox27
- {
- [DebuggerNonUserCode] get => _GroupBox27;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox27 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音7_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音7_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音7_2 = value;
- }
- }
-
- internal virtual Label Label121
- {
- [DebuggerNonUserCode] get => _Label121;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label121 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式7_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式7_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式7_2 = value;
- }
- }
-
- internal virtual Label Label122
- {
- [DebuggerNonUserCode] get => _Label122;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label122 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式7_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式7_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式7_2 = value;
- }
- }
-
- internal virtual Label Label123
- {
- [DebuggerNonUserCode] get => _Label123;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label123 = value;
- }
- }
-
- internal virtual GroupBox GroupBox28
- {
- [DebuggerNonUserCode] get => _GroupBox28;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox28 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音7_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音7_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音7_1 = value;
- }
- }
-
- internal virtual Label Label124
- {
- [DebuggerNonUserCode] get => _Label124;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label124 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式7_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式7_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式7_1 = value;
- }
- }
-
- internal virtual Label Label125
- {
- [DebuggerNonUserCode] get => _Label125;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label125 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式7_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式7_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式7_1 = value;
- }
- }
-
- internal virtual Label Label126
- {
- [DebuggerNonUserCode] get => _Label126;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label126 = value;
- }
- }
-
- internal virtual GroupBox GroupBox29
- {
- [DebuggerNonUserCode] get => _GroupBox29;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox29 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音8_4
- {
- [DebuggerNonUserCode] get => _ComboBox提示音8_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音8_4 = value;
- }
- }
-
- internal virtual Label Label127
- {
- [DebuggerNonUserCode] get => _Label127;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label127 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式8_4
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式8_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式8_4 = value;
- }
- }
-
- internal virtual Label Label128
- {
- [DebuggerNonUserCode] get => _Label128;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label128 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式8_4
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式8_4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式8_4 = value;
- }
- }
-
- internal virtual Label Label129
- {
- [DebuggerNonUserCode] get => _Label129;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label129 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown8_D
- {
- [DebuggerNonUserCode] get => _NumericUpDown8_D;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown8_D = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown8_C
- {
- [DebuggerNonUserCode] get => _NumericUpDown8_C;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown8_C = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown8_B
- {
- [DebuggerNonUserCode] get => _NumericUpDown8_B;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown8_B = value;
- }
- }
-
- internal virtual Label Label130
- {
- [DebuggerNonUserCode] get => _Label130;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label130 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown8_A
- {
- [DebuggerNonUserCode] get => _NumericUpDown8_A;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown8_A = value;
- }
- }
-
- internal virtual Label Label131
- {
- [DebuggerNonUserCode] get => _Label131;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label131 = value;
- }
- }
-
- internal virtual Label Label132
- {
- [DebuggerNonUserCode] get => _Label132;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label132 = value;
- }
- }
-
- internal virtual Label Label133
- {
- [DebuggerNonUserCode] get => _Label133;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label133 = value;
- }
- }
-
- internal virtual GroupBox GroupBox30
- {
- [DebuggerNonUserCode] get => _GroupBox30;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox30 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音8_3
- {
- [DebuggerNonUserCode] get => _ComboBox提示音8_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音8_3 = value;
- }
- }
-
- internal virtual Label Label134
- {
- [DebuggerNonUserCode] get => _Label134;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label134 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式8_3
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式8_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式8_3 = value;
- }
- }
-
- internal virtual Label Label135
- {
- [DebuggerNonUserCode] get => _Label135;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label135 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式8_3
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式8_3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式8_3 = value;
- }
- }
-
- internal virtual Label Label136
- {
- [DebuggerNonUserCode] get => _Label136;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label136 = value;
- }
- }
-
- internal virtual GroupBox GroupBox31
- {
- [DebuggerNonUserCode] get => _GroupBox31;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox31 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音8_2
- {
- [DebuggerNonUserCode] get => _ComboBox提示音8_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音8_2 = value;
- }
- }
-
- internal virtual Label Label137
- {
- [DebuggerNonUserCode] get => _Label137;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label137 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式8_2
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式8_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式8_2 = value;
- }
- }
-
- internal virtual Label Label138
- {
- [DebuggerNonUserCode] get => _Label138;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label138 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式8_2
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式8_2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式8_2 = value;
- }
- }
-
- internal virtual Label Label139
- {
- [DebuggerNonUserCode] get => _Label139;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label139 = value;
- }
- }
-
- internal virtual GroupBox GroupBox32
- {
- [DebuggerNonUserCode] get => _GroupBox32;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox32 = value;
- }
- }
-
- internal virtual ComboBox ComboBox提示音8_1
- {
- [DebuggerNonUserCode] get => _ComboBox提示音8_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox提示音8_1 = value;
- }
- }
-
- internal virtual Label Label140
- {
- [DebuggerNonUserCode] get => _Label140;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label140 = value;
- }
- }
-
- internal virtual ComboBox ComboBox解开两音后的响应方式8_1
- {
- [DebuggerNonUserCode] get => _ComboBox解开两音后的响应方式8_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox解开两音后的响应方式8_1 = value;
- }
- }
-
- internal virtual Label Label141
- {
- [DebuggerNonUserCode] get => _Label141;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label141 = value;
- }
- }
-
- internal virtual ComboBox ComboBox两音的组合方式8_1
- {
- [DebuggerNonUserCode] get => _ComboBox两音的组合方式8_1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox两音的组合方式8_1 = value;
- }
- }
-
- internal virtual Label Label142
- {
- [DebuggerNonUserCode] get => _Label142;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label142 = value;
- }
- }
-
- internal virtual ComboBox ComboBox37
- {
- [DebuggerNonUserCode] get => _ComboBox37;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox37 = value;
- }
- }
-
- internal virtual Label Label67
- {
- [DebuggerNonUserCode] get => _Label67;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label67 = value;
- }
- }
-
- internal virtual ComboBox ComboBox38
- {
- [DebuggerNonUserCode] get => _ComboBox38;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox38 = value;
- }
- }
-
- internal virtual Label Label68
- {
- [DebuggerNonUserCode] get => _Label68;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label68 = value;
- }
- }
-
- internal virtual ComboBox ComboBox39
- {
- [DebuggerNonUserCode] get => _ComboBox39;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox39 = value;
- }
- }
-
- internal virtual Label Label69
- {
- [DebuggerNonUserCode] get => _Label69;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label69 = value;
- }
- }
-
- internal virtual ComboBox ComboBox40
- {
- [DebuggerNonUserCode] get => _ComboBox40;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox40 = value;
- }
- }
-
- internal virtual Label Label74
- {
- [DebuggerNonUserCode] get => _Label74;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label74 = value;
- }
- }
-
- internal virtual ComboBox ComboBox41
- {
- [DebuggerNonUserCode] get => _ComboBox41;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox41 = value;
- }
- }
-
- internal virtual Label Label75
- {
- [DebuggerNonUserCode] get => _Label75;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label75 = value;
- }
- }
-
- internal virtual ComboBox ComboBox42
- {
- [DebuggerNonUserCode] get => _ComboBox42;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox42 = value;
- }
- }
-
- internal virtual Label Label76
- {
- [DebuggerNonUserCode] get => _Label76;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label76 = value;
- }
- }
-
- internal virtual ComboBox ComboBox43
- {
- [DebuggerNonUserCode] get => _ComboBox43;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox43 = value;
- }
- }
-
- internal virtual Label Label77
- {
- [DebuggerNonUserCode] get => _Label77;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label77 = value;
- }
- }
-
- internal virtual ComboBox ComboBox44
- {
- [DebuggerNonUserCode] get => _ComboBox44;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox44 = value;
- }
- }
-
- internal virtual Label Label78
- {
- [DebuggerNonUserCode] get => _Label78;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label78 = value;
- }
- }
-
- internal virtual ComboBox ComboBox45
- {
- [DebuggerNonUserCode] get => _ComboBox45;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox45 = value;
- }
- }
-
- internal virtual Label Label79
- {
- [DebuggerNonUserCode] get => _Label79;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label79 = value;
- }
- }
-
- internal virtual ComboBox ComboBox46
- {
- [DebuggerNonUserCode] get => _ComboBox46;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox46 = value;
- }
- }
-
- internal virtual Label Label80
- {
- [DebuggerNonUserCode] get => _Label80;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label80 = value;
- }
- }
-
- internal virtual ComboBox ComboBox47
- {
- [DebuggerNonUserCode] get => _ComboBox47;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox47 = value;
- }
- }
-
- internal virtual Label Label81
- {
- [DebuggerNonUserCode] get => _Label81;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label81 = value;
- }
- }
-
- internal virtual ComboBox ComboBox48
- {
- [DebuggerNonUserCode] get => _ComboBox48;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox48 = value;
- }
- }
-
- internal virtual Label Label82
- {
- [DebuggerNonUserCode] get => _Label82;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label82 = value;
- }
- }
-
- internal virtual ComboBox ComboBox自动复位时间
- {
- [DebuggerNonUserCode] get => _ComboBox自动复位时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox自动复位时间 = value;
- }
- }
-
- internal virtual ComboBox ComboBox预载波时间
- {
- [DebuggerNonUserCode] get => _ComboBox预载波时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox预载波时间 = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn Column第一个音频率
- {
- [DebuggerNonUserCode] get => _Column第一个音频率;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column第一个音频率 = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn Column第二个音频率
- {
- [DebuggerNonUserCode] get => _Column第二个音频率;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column第二个音频率 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column第一个音持续时间
- {
- [DebuggerNonUserCode] get => _Column第一个音持续时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column第一个音持续时间 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column第二个音持续时间
- {
- [DebuggerNonUserCode] get => _Column第二个音持续时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column第二个音持续时间 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column音频间隔时间
- {
- [DebuggerNonUserCode] get => _Column音频间隔时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column音频间隔时间 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column长音持续时间
- {
- [DebuggerNonUserCode] get => _Column长音持续时间;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column长音持续时间 = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn Column别名
- {
- [DebuggerNonUserCode] get => _Column别名;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column别名 = value;
- }
- }
-
- public void _2ToneForm_Deactivate(object sender, EventArgs e)
- {
- DataGridView1.EndEdit();
- var num1 = 1024;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_A.Value, 10M)), checked (num1 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_B.Value, 10M)), checked (num1 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_C.Value, 10M)), checked (num1 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_D.Value, 10M)), checked (num1 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_1, checked (num1 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_1, checked (num1 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_1, checked (num1 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_2, checked (num1 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_2, checked (num1 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_2, checked (num1 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_3, checked (num1 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_3, checked (num1 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_3, checked (num1 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_4, checked (num1 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_4, checked (num1 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_4, checked (num1 + 19), publicva.AllBit, 0);
- var num2 = 1056;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_A.Value, 10M)), checked (num2 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_B.Value, 10M)), checked (num2 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_C.Value, 10M)), checked (num2 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_D.Value, 10M)), checked (num2 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_1, checked (num2 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_1, checked (num2 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_1, checked (num2 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_2, checked (num2 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_2, checked (num2 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_2, checked (num2 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_3, checked (num2 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_3, checked (num2 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_3, checked (num2 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_4, checked (num2 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_4, checked (num2 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_4, checked (num2 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num3 = 1088;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_A.Value, 10M)), checked (num3 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_B.Value, 10M)), checked (num3 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_C.Value, 10M)), checked (num3 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_D.Value, 10M)), checked (num3 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_1, checked (num3 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_1, checked (num3 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_1, checked (num3 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_2, checked (num3 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_2, checked (num3 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_2, checked (num3 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_3, checked (num3 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_3, checked (num3 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_3, checked (num3 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_4, checked (num3 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_4, checked (num3 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_4, checked (num3 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num4 = 1120;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_A.Value, 10M)), checked (num4 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_B.Value, 10M)), checked (num4 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_C.Value, 10M)), checked (num4 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_D.Value, 10M)), checked (num4 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_1, checked (num4 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_1, checked (num4 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_1, checked (num4 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_2, checked (num4 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_2, checked (num4 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_2, checked (num4 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_3, checked (num4 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_3, checked (num4 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_3, checked (num4 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_4, checked (num4 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_4, checked (num4 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_4, checked (num4 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num5 = 1152;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_A.Value, 10M)), checked (num5 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_B.Value, 10M)), checked (num5 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_C.Value, 10M)), checked (num5 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_D.Value, 10M)), checked (num5 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_1, checked (num5 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_1, checked (num5 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_1, checked (num5 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_2, checked (num5 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_2, checked (num5 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_2, checked (num5 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_3, checked (num5 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_3, checked (num5 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_3, checked (num5 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_4, checked (num5 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_4, checked (num5 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_4, checked (num5 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num6 = 1184;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_A.Value, 10M)), checked (num6 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_B.Value, 10M)), checked (num6 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_C.Value, 10M)), checked (num6 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_D.Value, 10M)), checked (num6 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_1, checked (num6 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_1, checked (num6 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_1, checked (num6 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_2, checked (num6 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_2, checked (num6 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_2, checked (num6 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_3, checked (num6 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_3, checked (num6 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_3, checked (num6 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_4, checked (num6 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_4, checked (num6 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_4, checked (num6 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num7 = 1216;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_A.Value, 10M)), checked (num7 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_B.Value, 10M)), checked (num7 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_C.Value, 10M)), checked (num7 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_D.Value, 10M)), checked (num7 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_1, checked (num7 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_1, checked (num7 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_1, checked (num7 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_2, checked (num7 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_2, checked (num7 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_2, checked (num7 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_3, checked (num7 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_3, checked (num7 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_3, checked (num7 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_4, checked (num7 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_4, checked (num7 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_4, checked (num7 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num8 = 1248;
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_A.Value, 10M)), checked (num8 + 0));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_B.Value, 10M)), checked (num8 + 2));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_C.Value, 10M)), checked (num8 + 4));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_D.Value, 10M)), checked (num8 + 6));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_1, checked (num8 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_1, checked (num8 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_1, checked (num8 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_2, checked (num8 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_2, checked (num8 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_2, checked (num8 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_3, checked (num8 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_3, checked (num8 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_3, checked (num8 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_4, checked (num8 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_4, checked (num8 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_4, checked (num8 + 19), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- var num9 = 1280;
- var rowIndex = 0;
- do
- {
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第一个音频率", rowIndex].Value, "", false))
+ [DebuggerNonUserCode]
+ public _2ToneForm()
{
- try
- {
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Conversions.ToInteger(Operators.MultiplyObject(DataGridView1["Column第一个音频率", rowIndex].Value, 10)), checked (num9 + 0 + rowIndex * 16));
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Conversions.ToInteger(Operators.MultiplyObject(DataGridView1["Column第二个音频率", rowIndex].Value, 10)), checked (num9 + 2 + rowIndex * 16));
- publicva.EEPROM_Byte[checked (num9 + 4 + rowIndex * 16)] = checked ((byte) (Column第一个音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column第一个音持续时间", rowIndex].Value)) + 5));
- publicva.EEPROM_Byte[checked (num9 + 5 + rowIndex * 16)] = checked ((byte) (Column第二个音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column第二个音持续时间", rowIndex].Value)) + 5));
- publicva.EEPROM_Byte[checked (num9 + 6 + rowIndex * 16)] = checked ((byte) Column音频间隔时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column音频间隔时间", rowIndex].Value)));
- publicva.EEPROM_Byte[checked (num9 + 7 + rowIndex * 16)] = Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)) != 0 ? checked ((byte) (Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)) - 1 + 5)) : checked ((byte) Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)));
- var ascii = Encoding.ASCII;
- var objArray1 = new object[5];
- var objArray2 = objArray1;
- var Instance1 = DataGridView1["Column别名", rowIndex].Value;
- var Instance2 = Instance1;
- var objArray3 = new object[1];
- var objArray4 = objArray3;
- var num10 = 8;
- // ISSUE: variable of a boxed type
- var local = (ValueType) num10;
- objArray4[0] = local;
- var Arguments1 = objArray3;
- var objectValue = RuntimeHelpers.GetObjectValue(NewLateBinding.LateGet(Instance2, null, "PadRight", Arguments1, null, null, null));
- objArray2[0] = objectValue;
- objArray1[1] = 0;
- objArray1[2] = 8;
- objArray1[3] = publicva.EEPROM_Byte;
- objArray1[4] = checked (num9 + 8 + rowIndex * 16);
- var objArray5 = objArray1;
- var Arguments2 = objArray5;
- var flagArray = new bool[5]
+ FormClosing += _2ToneForm_FormClosing;
+ Load += _2ToneForm_Load;
+ Deactivate += _2ToneForm_Deactivate;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
+ }
+
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
+ }
+
+ [DebuggerStepThrough]
+ private void InitializeComponent()
+ {
+ var componentResourceManager = new ComponentResourceManager(typeof(_2ToneForm));
+ var gridViewCellStyle1 = new DataGridViewCellStyle();
+ var gridViewCellStyle2 = new DataGridViewCellStyle();
+ var gridViewCellStyle3 = new DataGridViewCellStyle();
+ var gridViewCellStyle4 = new DataGridViewCellStyle();
+ TabControl1 = new TabControl();
+ TabPage1 = new TabPage();
+ DataGridView1 = new DataGridView();
+ Column第一个音频率 = new DataGridViewTextBoxColumn();
+ Column第二个音频率 = new DataGridViewTextBoxColumn();
+ Column第一个音持续时间 = new DataGridViewComboBoxColumn();
+ Column第二个音持续时间 = new DataGridViewComboBoxColumn();
+ Column音频间隔时间 = new DataGridViewComboBoxColumn();
+ Column长音持续时间 = new DataGridViewComboBoxColumn();
+ Column别名 = new DataGridViewTextBoxColumn();
+ TabPage2 = new TabPage();
+ TabControl2 = new TabControl();
+ TabPage3 = new TabPage();
+ GroupBox4 = new GroupBox();
+ ComboBox提示音1_4 = new ComboBox();
+ Label11 = new Label();
+ ComboBox解开两音后的响应方式1_4 = new ComboBox();
+ Label12 = new Label();
+ ComboBox两音的组合方式1_4 = new ComboBox();
+ Label13 = new Label();
+ NumericUpDown1_D = new NumericUpDown();
+ NumericUpDown1_C = new NumericUpDown();
+ NumericUpDown1_B = new NumericUpDown();
+ Label18 = new Label();
+ NumericUpDown1_A = new NumericUpDown();
+ Label17 = new Label();
+ Label16 = new Label();
+ Label15 = new Label();
+ GroupBox3 = new GroupBox();
+ ComboBox提示音1_3 = new ComboBox();
+ Label8 = new Label();
+ ComboBox解开两音后的响应方式1_3 = new ComboBox();
+ Label9 = new Label();
+ ComboBox两音的组合方式1_3 = new ComboBox();
+ Label10 = new Label();
+ GroupBox2 = new GroupBox();
+ ComboBox提示音1_2 = new ComboBox();
+ Label5 = new Label();
+ ComboBox解开两音后的响应方式1_2 = new ComboBox();
+ Label6 = new Label();
+ ComboBox两音的组合方式1_2 = new ComboBox();
+ Label7 = new Label();
+ GroupBox1 = new GroupBox();
+ ComboBox提示音1_1 = new ComboBox();
+ Label4 = new Label();
+ ComboBox解开两音后的响应方式1_1 = new ComboBox();
+ Label3 = new Label();
+ ComboBox两音的组合方式1_1 = new ComboBox();
+ Label2 = new Label();
+ TabPage4 = new TabPage();
+ GroupBox5 = new GroupBox();
+ ComboBox提示音2_4 = new ComboBox();
+ Label19 = new Label();
+ ComboBox解开两音后的响应方式2_4 = new ComboBox();
+ Label20 = new Label();
+ ComboBox两音的组合方式2_4 = new ComboBox();
+ Label21 = new Label();
+ NumericUpDown2_D = new NumericUpDown();
+ NumericUpDown2_C = new NumericUpDown();
+ NumericUpDown2_B = new NumericUpDown();
+ Label22 = new Label();
+ NumericUpDown2_A = new NumericUpDown();
+ Label23 = new Label();
+ Label24 = new Label();
+ Label25 = new Label();
+ GroupBox6 = new GroupBox();
+ ComboBox提示音2_3 = new ComboBox();
+ Label26 = new Label();
+ ComboBox解开两音后的响应方式2_3 = new ComboBox();
+ Label27 = new Label();
+ ComboBox两音的组合方式2_3 = new ComboBox();
+ Label28 = new Label();
+ GroupBox7 = new GroupBox();
+ ComboBox提示音2_2 = new ComboBox();
+ Label29 = new Label();
+ ComboBox解开两音后的响应方式2_2 = new ComboBox();
+ Label30 = new Label();
+ ComboBox两音的组合方式2_2 = new ComboBox();
+ Label31 = new Label();
+ GroupBox8 = new GroupBox();
+ ComboBox提示音2_1 = new ComboBox();
+ Label32 = new Label();
+ ComboBox解开两音后的响应方式2_1 = new ComboBox();
+ Label33 = new Label();
+ ComboBox两音的组合方式2_1 = new ComboBox();
+ Label34 = new Label();
+ TabPage5 = new TabPage();
+ GroupBox9 = new GroupBox();
+ ComboBox提示音3_4 = new ComboBox();
+ Label35 = new Label();
+ ComboBox解开两音后的响应方式3_4 = new ComboBox();
+ Label36 = new Label();
+ ComboBox两音的组合方式3_4 = new ComboBox();
+ Label37 = new Label();
+ NumericUpDown3_D = new NumericUpDown();
+ NumericUpDown3_C = new NumericUpDown();
+ NumericUpDown3_B = new NumericUpDown();
+ Label38 = new Label();
+ NumericUpDown3_A = new NumericUpDown();
+ Label39 = new Label();
+ Label40 = new Label();
+ Label41 = new Label();
+ GroupBox10 = new GroupBox();
+ ComboBox提示音3_3 = new ComboBox();
+ Label42 = new Label();
+ ComboBox解开两音后的响应方式3_3 = new ComboBox();
+ Label43 = new Label();
+ ComboBox两音的组合方式3_3 = new ComboBox();
+ Label44 = new Label();
+ GroupBox11 = new GroupBox();
+ ComboBox提示音3_2 = new ComboBox();
+ Label45 = new Label();
+ ComboBox解开两音后的响应方式3_2 = new ComboBox();
+ Label46 = new Label();
+ ComboBox两音的组合方式3_2 = new ComboBox();
+ Label47 = new Label();
+ GroupBox12 = new GroupBox();
+ ComboBox提示音3_1 = new ComboBox();
+ Label48 = new Label();
+ ComboBox解开两音后的响应方式3_1 = new ComboBox();
+ Label49 = new Label();
+ ComboBox两音的组合方式3_1 = new ComboBox();
+ Label50 = new Label();
+ TabPage6 = new TabPage();
+ GroupBox13 = new GroupBox();
+ ComboBox提示音4_4 = new ComboBox();
+ Label51 = new Label();
+ ComboBox解开两音后的响应方式4_4 = new ComboBox();
+ Label52 = new Label();
+ ComboBox两音的组合方式4_4 = new ComboBox();
+ Label53 = new Label();
+ NumericUpDown4_D = new NumericUpDown();
+ NumericUpDown4_C = new NumericUpDown();
+ NumericUpDown4_B = new NumericUpDown();
+ Label54 = new Label();
+ NumericUpDown4_A = new NumericUpDown();
+ Label55 = new Label();
+ Label56 = new Label();
+ Label57 = new Label();
+ GroupBox14 = new GroupBox();
+ ComboBox提示音4_3 = new ComboBox();
+ Label58 = new Label();
+ ComboBox解开两音后的响应方式4_3 = new ComboBox();
+ Label59 = new Label();
+ ComboBox两音的组合方式4_3 = new ComboBox();
+ Label60 = new Label();
+ GroupBox15 = new GroupBox();
+ ComboBox提示音4_2 = new ComboBox();
+ Label61 = new Label();
+ ComboBox解开两音后的响应方式4_2 = new ComboBox();
+ Label62 = new Label();
+ ComboBox两音的组合方式4_2 = new ComboBox();
+ Label63 = new Label();
+ GroupBox16 = new GroupBox();
+ ComboBox提示音4_1 = new ComboBox();
+ Label64 = new Label();
+ ComboBox解开两音后的响应方式4_1 = new ComboBox();
+ Label65 = new Label();
+ ComboBox两音的组合方式4_1 = new ComboBox();
+ Label66 = new Label();
+ TabPage7 = new TabPage();
+ GroupBox17 = new GroupBox();
+ ComboBox提示音5_4 = new ComboBox();
+ Label70 = new Label();
+ ComboBox解开两音后的响应方式5_4 = new ComboBox();
+ Label71 = new Label();
+ ComboBox两音的组合方式5_4 = new ComboBox();
+ Label72 = new Label();
+ NumericUpDown5_D = new NumericUpDown();
+ NumericUpDown5_C = new NumericUpDown();
+ NumericUpDown5_B = new NumericUpDown();
+ Label73 = new Label();
+ NumericUpDown5_A = new NumericUpDown();
+ Label83 = new Label();
+ Label84 = new Label();
+ Label85 = new Label();
+ GroupBox18 = new GroupBox();
+ ComboBox提示音5_3 = new ComboBox();
+ Label86 = new Label();
+ ComboBox解开两音后的响应方式5_3 = new ComboBox();
+ Label87 = new Label();
+ ComboBox两音的组合方式5_3 = new ComboBox();
+ Label88 = new Label();
+ GroupBox19 = new GroupBox();
+ ComboBox提示音5_2 = new ComboBox();
+ Label89 = new Label();
+ ComboBox解开两音后的响应方式5_2 = new ComboBox();
+ Label90 = new Label();
+ ComboBox两音的组合方式5_2 = new ComboBox();
+ Label91 = new Label();
+ GroupBox20 = new GroupBox();
+ ComboBox提示音5_1 = new ComboBox();
+ Label92 = new Label();
+ ComboBox解开两音后的响应方式5_1 = new ComboBox();
+ Label93 = new Label();
+ ComboBox两音的组合方式5_1 = new ComboBox();
+ Label94 = new Label();
+ TabPage8 = new TabPage();
+ GroupBox21 = new GroupBox();
+ ComboBox提示音6_4 = new ComboBox();
+ Label95 = new Label();
+ ComboBox解开两音后的响应方式6_4 = new ComboBox();
+ Label96 = new Label();
+ ComboBox两音的组合方式6_4 = new ComboBox();
+ Label97 = new Label();
+ NumericUpDown6_D = new NumericUpDown();
+ NumericUpDown6_C = new NumericUpDown();
+ NumericUpDown6_B = new NumericUpDown();
+ Label98 = new Label();
+ NumericUpDown6_A = new NumericUpDown();
+ Label99 = new Label();
+ Label100 = new Label();
+ Label101 = new Label();
+ GroupBox22 = new GroupBox();
+ ComboBox提示音6_3 = new ComboBox();
+ Label102 = new Label();
+ ComboBox解开两音后的响应方式6_3 = new ComboBox();
+ Label103 = new Label();
+ ComboBox两音的组合方式6_3 = new ComboBox();
+ Label104 = new Label();
+ GroupBox23 = new GroupBox();
+ ComboBox提示音6_2 = new ComboBox();
+ Label105 = new Label();
+ ComboBox解开两音后的响应方式6_2 = new ComboBox();
+ Label106 = new Label();
+ ComboBox两音的组合方式6_2 = new ComboBox();
+ Label107 = new Label();
+ GroupBox24 = new GroupBox();
+ ComboBox提示音6_1 = new ComboBox();
+ Label108 = new Label();
+ ComboBox解开两音后的响应方式6_1 = new ComboBox();
+ Label109 = new Label();
+ ComboBox两音的组合方式6_1 = new ComboBox();
+ Label110 = new Label();
+ TabPage9 = new TabPage();
+ GroupBox25 = new GroupBox();
+ ComboBox提示音7_4 = new ComboBox();
+ Label111 = new Label();
+ ComboBox解开两音后的响应方式7_4 = new ComboBox();
+ Label112 = new Label();
+ ComboBox两音的组合方式7_4 = new ComboBox();
+ Label113 = new Label();
+ NumericUpDown7_D = new NumericUpDown();
+ NumericUpDown7_C = new NumericUpDown();
+ NumericUpDown7_B = new NumericUpDown();
+ Label114 = new Label();
+ NumericUpDown7_A = new NumericUpDown();
+ Label115 = new Label();
+ Label116 = new Label();
+ Label117 = new Label();
+ GroupBox26 = new GroupBox();
+ ComboBox提示音7_3 = new ComboBox();
+ Label118 = new Label();
+ ComboBox解开两音后的响应方式7_3 = new ComboBox();
+ Label119 = new Label();
+ ComboBox两音的组合方式7_3 = new ComboBox();
+ Label120 = new Label();
+ GroupBox27 = new GroupBox();
+ ComboBox提示音7_2 = new ComboBox();
+ Label121 = new Label();
+ ComboBox解开两音后的响应方式7_2 = new ComboBox();
+ Label122 = new Label();
+ ComboBox两音的组合方式7_2 = new ComboBox();
+ Label123 = new Label();
+ GroupBox28 = new GroupBox();
+ ComboBox提示音7_1 = new ComboBox();
+ Label124 = new Label();
+ ComboBox解开两音后的响应方式7_1 = new ComboBox();
+ Label125 = new Label();
+ ComboBox两音的组合方式7_1 = new ComboBox();
+ Label126 = new Label();
+ TabPage10 = new TabPage();
+ GroupBox29 = new GroupBox();
+ ComboBox提示音8_4 = new ComboBox();
+ Label127 = new Label();
+ ComboBox解开两音后的响应方式8_4 = new ComboBox();
+ Label128 = new Label();
+ ComboBox两音的组合方式8_4 = new ComboBox();
+ Label129 = new Label();
+ NumericUpDown8_D = new NumericUpDown();
+ NumericUpDown8_C = new NumericUpDown();
+ NumericUpDown8_B = new NumericUpDown();
+ Label130 = new Label();
+ NumericUpDown8_A = new NumericUpDown();
+ Label131 = new Label();
+ Label132 = new Label();
+ Label133 = new Label();
+ GroupBox30 = new GroupBox();
+ ComboBox提示音8_3 = new ComboBox();
+ Label134 = new Label();
+ ComboBox解开两音后的响应方式8_3 = new ComboBox();
+ Label135 = new Label();
+ ComboBox两音的组合方式8_3 = new ComboBox();
+ Label136 = new Label();
+ GroupBox31 = new GroupBox();
+ ComboBox提示音8_2 = new ComboBox();
+ Label137 = new Label();
+ ComboBox解开两音后的响应方式8_2 = new ComboBox();
+ Label138 = new Label();
+ ComboBox两音的组合方式8_2 = new ComboBox();
+ Label139 = new Label();
+ GroupBox32 = new GroupBox();
+ ComboBox提示音8_1 = new ComboBox();
+ Label140 = new Label();
+ ComboBox解开两音后的响应方式8_1 = new ComboBox();
+ Label141 = new Label();
+ ComboBox两音的组合方式8_1 = new ComboBox();
+ Label142 = new Label();
+ TabPage11 = new TabPage();
+ ComboBox自动复位时间 = new ComboBox();
+ ComboBox预载波时间 = new ComboBox();
+ CheckBox空闲自动应答 = new CheckBox();
+ Label14 = new Label();
+ CheckBox短哔音 = new CheckBox();
+ CheckBox侧音 = new CheckBox();
+ Label1 = new Label();
+ Button3 = new Button();
+ Button2 = new Button();
+ Button1 = new Button();
+ ComboBox37 = new ComboBox();
+ Label67 = new Label();
+ ComboBox38 = new ComboBox();
+ Label68 = new Label();
+ ComboBox39 = new ComboBox();
+ Label69 = new Label();
+ ComboBox40 = new ComboBox();
+ Label74 = new Label();
+ ComboBox41 = new ComboBox();
+ Label75 = new Label();
+ ComboBox42 = new ComboBox();
+ Label76 = new Label();
+ ComboBox43 = new ComboBox();
+ Label77 = new Label();
+ ComboBox44 = new ComboBox();
+ Label78 = new Label();
+ ComboBox45 = new ComboBox();
+ Label79 = new Label();
+ ComboBox46 = new ComboBox();
+ Label80 = new Label();
+ ComboBox47 = new ComboBox();
+ Label81 = new Label();
+ ComboBox48 = new ComboBox();
+ Label82 = new Label();
+ TabControl1.SuspendLayout();
+ TabPage1.SuspendLayout();
+ ((ISupportInitialize) DataGridView1).BeginInit();
+ TabPage2.SuspendLayout();
+ TabControl2.SuspendLayout();
+ TabPage3.SuspendLayout();
+ GroupBox4.SuspendLayout();
+ NumericUpDown1_D.BeginInit();
+ NumericUpDown1_C.BeginInit();
+ NumericUpDown1_B.BeginInit();
+ NumericUpDown1_A.BeginInit();
+ GroupBox3.SuspendLayout();
+ GroupBox2.SuspendLayout();
+ GroupBox1.SuspendLayout();
+ TabPage4.SuspendLayout();
+ GroupBox5.SuspendLayout();
+ NumericUpDown2_D.BeginInit();
+ NumericUpDown2_C.BeginInit();
+ NumericUpDown2_B.BeginInit();
+ NumericUpDown2_A.BeginInit();
+ GroupBox6.SuspendLayout();
+ GroupBox7.SuspendLayout();
+ GroupBox8.SuspendLayout();
+ TabPage5.SuspendLayout();
+ GroupBox9.SuspendLayout();
+ NumericUpDown3_D.BeginInit();
+ NumericUpDown3_C.BeginInit();
+ NumericUpDown3_B.BeginInit();
+ NumericUpDown3_A.BeginInit();
+ GroupBox10.SuspendLayout();
+ GroupBox11.SuspendLayout();
+ GroupBox12.SuspendLayout();
+ TabPage6.SuspendLayout();
+ GroupBox13.SuspendLayout();
+ NumericUpDown4_D.BeginInit();
+ NumericUpDown4_C.BeginInit();
+ NumericUpDown4_B.BeginInit();
+ NumericUpDown4_A.BeginInit();
+ GroupBox14.SuspendLayout();
+ GroupBox15.SuspendLayout();
+ GroupBox16.SuspendLayout();
+ TabPage7.SuspendLayout();
+ GroupBox17.SuspendLayout();
+ NumericUpDown5_D.BeginInit();
+ NumericUpDown5_C.BeginInit();
+ NumericUpDown5_B.BeginInit();
+ NumericUpDown5_A.BeginInit();
+ GroupBox18.SuspendLayout();
+ GroupBox19.SuspendLayout();
+ GroupBox20.SuspendLayout();
+ TabPage8.SuspendLayout();
+ GroupBox21.SuspendLayout();
+ NumericUpDown6_D.BeginInit();
+ NumericUpDown6_C.BeginInit();
+ NumericUpDown6_B.BeginInit();
+ NumericUpDown6_A.BeginInit();
+ GroupBox22.SuspendLayout();
+ GroupBox23.SuspendLayout();
+ GroupBox24.SuspendLayout();
+ TabPage9.SuspendLayout();
+ GroupBox25.SuspendLayout();
+ NumericUpDown7_D.BeginInit();
+ NumericUpDown7_C.BeginInit();
+ NumericUpDown7_B.BeginInit();
+ NumericUpDown7_A.BeginInit();
+ GroupBox26.SuspendLayout();
+ GroupBox27.SuspendLayout();
+ GroupBox28.SuspendLayout();
+ TabPage10.SuspendLayout();
+ GroupBox29.SuspendLayout();
+ NumericUpDown8_D.BeginInit();
+ NumericUpDown8_C.BeginInit();
+ NumericUpDown8_B.BeginInit();
+ NumericUpDown8_A.BeginInit();
+ GroupBox30.SuspendLayout();
+ GroupBox31.SuspendLayout();
+ GroupBox32.SuspendLayout();
+ TabPage11.SuspendLayout();
+ SuspendLayout();
+ TabControl1.AccessibleDescription = null;
+ TabControl1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabControl1, "TabControl1");
+ TabControl1.BackgroundImage = null;
+ TabControl1.Controls.Add(TabPage1);
+ TabControl1.Controls.Add(TabPage2);
+ TabControl1.Controls.Add(TabPage11);
+ TabControl1.Font = null;
+ TabControl1.Name = "TabControl1";
+ TabControl1.SelectedIndex = 0;
+ TabPage1.AccessibleDescription = null;
+ TabPage1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage1, "TabPage1");
+ TabPage1.BackgroundImage = null;
+ TabPage1.Controls.Add(DataGridView1);
+ TabPage1.Font = null;
+ TabPage1.Name = "TabPage1";
+ TabPage1.UseVisualStyleBackColor = true;
+ DataGridView1.AccessibleDescription = null;
+ DataGridView1.AccessibleName = null;
+ DataGridView1.AllowUserToAddRows = false;
+ DataGridView1.AllowUserToDeleteRows = false;
+ DataGridView1.AllowUserToResizeColumns = false;
+ DataGridView1.AllowUserToResizeRows = false;
+ gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
+ componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
+ DataGridView1.BackgroundImage = null;
+ gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle2.BackColor = SystemColors.Control;
+ gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle2.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
+ DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
+ DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView1.Columns.AddRange(Column第一个音频率, Column第二个音频率, Column第一个音持续时间, Column第二个音持续时间, Column音频间隔时间, Column长音持续时间, Column别名);
+ DataGridView1.Font = null;
+ DataGridView1.Name = "DataGridView1";
+ gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle3.BackColor = SystemColors.Control;
+ gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle3.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
+ DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
+ DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
+ DataGridView1.RowTemplate.Height = 23;
+ Column第一个音频率.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
+ componentResourceManager.ApplyResources(Column第一个音频率, "Column第一个音频率");
+ Column第一个音频率.MaxInputLength = 6;
+ Column第一个音频率.Name = "Column第一个音频率";
+ Column第一个音频率.SortMode = DataGridViewColumnSortMode.NotSortable;
+ componentResourceManager.ApplyResources(Column第二个音频率, "Column第二个音频率");
+ Column第二个音频率.MaxInputLength = 6;
+ Column第二个音频率.Name = "Column第二个音频率";
+ Column第二个音频率.SortMode = DataGridViewColumnSortMode.NotSortable;
+ Column第一个音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column第一个音持续时间, "Column第一个音持续时间");
+ Column第一个音持续时间.Items.AddRange("0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ",
+ "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ",
+ "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ",
+ "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ",
+ "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ",
+ "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ",
+ "9.8 ", "9.9 ", "10.0 ");
+ Column第一个音持续时间.Name = "Column第一个音持续时间";
+ Column第二个音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column第二个音持续时间, "Column第二个音持续时间");
+ Column第二个音持续时间.Items.AddRange("0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ",
+ "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ",
+ "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ",
+ "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ",
+ "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ",
+ "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ",
+ "9.8 ", "9.9 ", "10.0 ");
+ Column第二个音持续时间.Name = "Column第二个音持续时间";
+ Column音频间隔时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column音频间隔时间, "Column音频间隔时间");
+ Column音频间隔时间.Items.AddRange("0.0 ", "0.1 ", "0.2 ", "0.3 ", "0.4 ", "0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ",
+ "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ", "1.8 ", "1.9 ", "2.0");
+ Column音频间隔时间.Name = "Column音频间隔时间";
+ Column长音持续时间.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column长音持续时间, "Column长音持续时间");
+ Column长音持续时间.Items.AddRange("OFF", "0.5 ", "0.6 ", "0.7 ", "0.8 ", "0.9 ", "1.0 ", "1.1 ", "1.2 ", "1.3 ", "1.4 ", "1.5 ", "1.6 ", "1.7 ",
+ "1.8 ", "1.9 ", "2.0 ", "2.1 ", "2.2 ", "2.3 ", "2.4 ", "2.5 ", "2.6 ", "2.7 ", "2.8 ", "2.9 ", "3.0 ", "3.1 ", "3.2 ", "3.3 ",
+ "3.4 ", "3.5 ", "3.6 ", "3.7 ", "3.8 ", "3.9 ", "4.0 ", "4.1 ", "4.2 ", "4.3 ", "4.4 ", "4.5 ", "4.6 ", "4.7 ", "4.8 ", "4.9 ",
+ "5.0 ", "5.1 ", "5.2 ", "5.3 ", "5.4 ", "5.5 ", "5.6 ", "5.7 ", "5.8 ", "5.9 ", "6.0 ", "6.1 ", "6.2 ", "6.3 ", "6.4 ", "6.5 ",
+ "6.6 ", "6.7 ", "6.8 ", "6.9 ", "7.0 ", "7.1 ", "7.2 ", "7.3 ", "7.4 ", "7.5 ", "7.6 ", "7.7 ", "7.8 ", "7.9 ", "8.0 ", "8.1 ",
+ "8.2 ", "8.3 ", "8.4 ", "8.5 ", "8.6 ", "8.7 ", "8.8 ", "8.9 ", "9.0 ", "9.1 ", "9.2 ", "9.3 ", "9.4 ", "9.5 ", "9.6 ", "9.7 ",
+ "9.8 ", "9.9 ", "10.0 ");
+ Column长音持续时间.Name = "Column长音持续时间";
+ Column长音持续时间.Resizable = DataGridViewTriState.False;
+ componentResourceManager.ApplyResources(Column别名, "Column别名");
+ Column别名.MaxInputLength = 8;
+ Column别名.Name = "Column别名";
+ Column别名.Resizable = DataGridViewTriState.False;
+ Column别名.SortMode = DataGridViewColumnSortMode.NotSortable;
+ TabPage2.AccessibleDescription = null;
+ TabPage2.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage2, "TabPage2");
+ TabPage2.BackgroundImage = null;
+ TabPage2.Controls.Add(TabControl2);
+ TabPage2.Font = null;
+ TabPage2.Name = "TabPage2";
+ TabPage2.UseVisualStyleBackColor = true;
+ TabControl2.AccessibleDescription = null;
+ TabControl2.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabControl2, "TabControl2");
+ TabControl2.BackgroundImage = null;
+ TabControl2.Controls.Add(TabPage3);
+ TabControl2.Controls.Add(TabPage4);
+ TabControl2.Controls.Add(TabPage5);
+ TabControl2.Controls.Add(TabPage6);
+ TabControl2.Controls.Add(TabPage7);
+ TabControl2.Controls.Add(TabPage8);
+ TabControl2.Controls.Add(TabPage9);
+ TabControl2.Controls.Add(TabPage10);
+ TabControl2.Font = null;
+ TabControl2.Name = "TabControl2";
+ TabControl2.SelectedIndex = 0;
+ TabPage3.AccessibleDescription = null;
+ TabPage3.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage3, "TabPage3");
+ TabPage3.BackgroundImage = null;
+ TabPage3.Controls.Add(GroupBox4);
+ TabPage3.Controls.Add(NumericUpDown1_D);
+ TabPage3.Controls.Add(NumericUpDown1_C);
+ TabPage3.Controls.Add(NumericUpDown1_B);
+ TabPage3.Controls.Add(Label18);
+ TabPage3.Controls.Add(NumericUpDown1_A);
+ TabPage3.Controls.Add(Label17);
+ TabPage3.Controls.Add(Label16);
+ TabPage3.Controls.Add(Label15);
+ TabPage3.Controls.Add(GroupBox3);
+ TabPage3.Controls.Add(GroupBox2);
+ TabPage3.Controls.Add(GroupBox1);
+ TabPage3.Font = null;
+ TabPage3.Name = "TabPage3";
+ TabPage3.UseVisualStyleBackColor = true;
+ GroupBox4.AccessibleDescription = null;
+ GroupBox4.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox4, "GroupBox4");
+ GroupBox4.BackgroundImage = null;
+ GroupBox4.Controls.Add(ComboBox提示音1_4);
+ GroupBox4.Controls.Add(Label11);
+ GroupBox4.Controls.Add(ComboBox解开两音后的响应方式1_4);
+ GroupBox4.Controls.Add(Label12);
+ GroupBox4.Controls.Add(ComboBox两音的组合方式1_4);
+ GroupBox4.Controls.Add(Label13);
+ GroupBox4.Font = null;
+ GroupBox4.Name = "GroupBox4";
+ GroupBox4.TabStop = false;
+ ComboBox提示音1_4.AccessibleDescription = null;
+ ComboBox提示音1_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音1_4, "ComboBox提示音1_4");
+ ComboBox提示音1_4.BackgroundImage = null;
+ ComboBox提示音1_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音1_4.Font = null;
+ ComboBox提示音1_4.FormattingEnabled = true;
+ ComboBox提示音1_4.Name = "ComboBox提示音1_4";
+ Label11.AccessibleDescription = null;
+ Label11.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label11, "Label11");
+ Label11.Font = null;
+ Label11.Name = "Label11";
+ ComboBox解开两音后的响应方式1_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式1_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_4, "ComboBox解开两音后的响应方式1_4");
+ ComboBox解开两音后的响应方式1_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式1_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式1_4.Font = null;
+ ComboBox解开两音后的响应方式1_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式1_4.Items.AddRange(new object[4]
{
- true,
- false,
- false,
- true,
- false
- };
- var CopyBack = flagArray;
- NewLateBinding.LateCall(ascii, null, "GetBytes", Arguments2, null, null, CopyBack, true);
- if (flagArray[0])
- NewLateBinding.LateSetComplex(Instance1, null, "PadRight", new object[2]
- {
- num10,
- RuntimeHelpers.GetObjectValue(objArray5[0])
- }, null, null, true, true);
- if (flagArray[3])
- publicva.EEPROM_Byte = (byte[]) Conversions.ChangeType(RuntimeHelpers.GetObjectValue(objArray5[3]), typeof (byte[]));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_4.Items3")
+ });
+ ComboBox解开两音后的响应方式1_4.Name = "ComboBox解开两音后的响应方式1_4";
+ Label12.AccessibleDescription = null;
+ Label12.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label12, "Label12");
+ Label12.Font = null;
+ Label12.Name = "Label12";
+ ComboBox两音的组合方式1_4.AccessibleDescription = null;
+ ComboBox两音的组合方式1_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式1_4, "ComboBox两音的组合方式1_4");
+ ComboBox两音的组合方式1_4.BackgroundImage = null;
+ ComboBox两音的组合方式1_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式1_4.Font = null;
+ ComboBox两音的组合方式1_4.FormattingEnabled = true;
+ ComboBox两音的组合方式1_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_4.Items15")
+ });
+ ComboBox两音的组合方式1_4.Name = "ComboBox两音的组合方式1_4";
+ Label13.AccessibleDescription = null;
+ Label13.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label13, "Label13");
+ Label13.Font = null;
+ Label13.Name = "Label13";
+ NumericUpDown1_D.AccessibleDescription = null;
+ NumericUpDown1_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown1_D, "NumericUpDown1_D");
+ NumericUpDown1_D.DecimalPlaces = 1;
+ NumericUpDown1_D.Font = null;
+ var numericUpDown1D1 = NumericUpDown1_D;
+ var num1 = new Decimal(new int[4]
+ {
+ 1,
+ 0,
+ 0,
+ 65536
+ });
+ var num2 = num1;
+ numericUpDown1D1.Increment = num2;
+ var numericUpDown1D2 = NumericUpDown1_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num3 = num1;
+ numericUpDown1D2.Maximum = num3;
+ var numericUpDown1D3 = NumericUpDown1_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num4 = num1;
+ numericUpDown1D3.Minimum = num4;
+ NumericUpDown1_D.Name = "NumericUpDown1_D";
+ var numericUpDown1D4 = NumericUpDown1_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num5 = num1;
+ numericUpDown1D4.Value = num5;
+ NumericUpDown1_C.AccessibleDescription = null;
+ NumericUpDown1_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown1_C, "NumericUpDown1_C");
+ NumericUpDown1_C.DecimalPlaces = 1;
+ NumericUpDown1_C.Font = null;
+ var numericUpDown1C1 = NumericUpDown1_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num6 = num1;
+ numericUpDown1C1.Increment = num6;
+ var numericUpDown1C2 = NumericUpDown1_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num7 = num1;
+ numericUpDown1C2.Maximum = num7;
+ var numericUpDown1C3 = NumericUpDown1_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num8 = num1;
+ numericUpDown1C3.Minimum = num8;
+ NumericUpDown1_C.Name = "NumericUpDown1_C";
+ var numericUpDown1C4 = NumericUpDown1_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num9 = num1;
+ numericUpDown1C4.Value = num9;
+ NumericUpDown1_B.AccessibleDescription = null;
+ NumericUpDown1_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown1_B, "NumericUpDown1_B");
+ NumericUpDown1_B.DecimalPlaces = 1;
+ NumericUpDown1_B.Font = null;
+ var numericUpDown1B1 = NumericUpDown1_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num10 = num1;
+ numericUpDown1B1.Increment = num10;
+ var numericUpDown1B2 = NumericUpDown1_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num11 = num1;
+ numericUpDown1B2.Maximum = num11;
+ var numericUpDown1B3 = NumericUpDown1_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num12 = num1;
+ numericUpDown1B3.Minimum = num12;
+ NumericUpDown1_B.Name = "NumericUpDown1_B";
+ var numericUpDown1B4 = NumericUpDown1_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num13 = num1;
+ numericUpDown1B4.Value = num13;
+ Label18.AccessibleDescription = null;
+ Label18.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label18, "Label18");
+ Label18.Font = null;
+ Label18.Name = "Label18";
+ NumericUpDown1_A.AccessibleDescription = null;
+ NumericUpDown1_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown1_A, "NumericUpDown1_A");
+ NumericUpDown1_A.DecimalPlaces = 1;
+ NumericUpDown1_A.Font = null;
+ var numericUpDown1A1 = NumericUpDown1_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num14 = num1;
+ numericUpDown1A1.Increment = num14;
+ var numericUpDown1A2 = NumericUpDown1_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num15 = num1;
+ numericUpDown1A2.Maximum = num15;
+ var numericUpDown1A3 = NumericUpDown1_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num16 = num1;
+ numericUpDown1A3.Minimum = num16;
+ NumericUpDown1_A.Name = "NumericUpDown1_A";
+ var numericUpDown1A4 = NumericUpDown1_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num17 = num1;
+ numericUpDown1A4.Value = num17;
+ Label17.AccessibleDescription = null;
+ Label17.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label17, "Label17");
+ Label17.Font = null;
+ Label17.Name = "Label17";
+ Label16.AccessibleDescription = null;
+ Label16.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label16, "Label16");
+ Label16.Font = null;
+ Label16.Name = "Label16";
+ Label15.AccessibleDescription = null;
+ Label15.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label15, "Label15");
+ Label15.Font = null;
+ Label15.Name = "Label15";
+ GroupBox3.AccessibleDescription = null;
+ GroupBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
+ GroupBox3.BackgroundImage = null;
+ GroupBox3.Controls.Add(ComboBox提示音1_3);
+ GroupBox3.Controls.Add(Label8);
+ GroupBox3.Controls.Add(ComboBox解开两音后的响应方式1_3);
+ GroupBox3.Controls.Add(Label9);
+ GroupBox3.Controls.Add(ComboBox两音的组合方式1_3);
+ GroupBox3.Controls.Add(Label10);
+ GroupBox3.Font = null;
+ GroupBox3.Name = "GroupBox3";
+ GroupBox3.TabStop = false;
+ ComboBox提示音1_3.AccessibleDescription = null;
+ ComboBox提示音1_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音1_3, "ComboBox提示音1_3");
+ ComboBox提示音1_3.BackgroundImage = null;
+ ComboBox提示音1_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音1_3.Font = null;
+ ComboBox提示音1_3.FormattingEnabled = true;
+ ComboBox提示音1_3.Name = "ComboBox提示音1_3";
+ Label8.AccessibleDescription = null;
+ Label8.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label8, "Label8");
+ Label8.Font = null;
+ Label8.Name = "Label8";
+ ComboBox解开两音后的响应方式1_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式1_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_3, "ComboBox解开两音后的响应方式1_3");
+ ComboBox解开两音后的响应方式1_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式1_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式1_3.Font = null;
+ ComboBox解开两音后的响应方式1_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式1_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_3.Items3")
+ });
+ ComboBox解开两音后的响应方式1_3.Name = "ComboBox解开两音后的响应方式1_3";
+ Label9.AccessibleDescription = null;
+ Label9.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label9, "Label9");
+ Label9.Font = null;
+ Label9.Name = "Label9";
+ ComboBox两音的组合方式1_3.AccessibleDescription = null;
+ ComboBox两音的组合方式1_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式1_3, "ComboBox两音的组合方式1_3");
+ ComboBox两音的组合方式1_3.BackgroundImage = null;
+ ComboBox两音的组合方式1_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式1_3.Font = null;
+ ComboBox两音的组合方式1_3.FormattingEnabled = true;
+ ComboBox两音的组合方式1_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_3.Items15")
+ });
+ ComboBox两音的组合方式1_3.Name = "ComboBox两音的组合方式1_3";
+ Label10.AccessibleDescription = null;
+ Label10.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label10, "Label10");
+ Label10.Font = null;
+ Label10.Name = "Label10";
+ GroupBox2.AccessibleDescription = null;
+ GroupBox2.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
+ GroupBox2.BackgroundImage = null;
+ GroupBox2.Controls.Add(ComboBox提示音1_2);
+ GroupBox2.Controls.Add(Label5);
+ GroupBox2.Controls.Add(ComboBox解开两音后的响应方式1_2);
+ GroupBox2.Controls.Add(Label6);
+ GroupBox2.Controls.Add(ComboBox两音的组合方式1_2);
+ GroupBox2.Controls.Add(Label7);
+ GroupBox2.Font = null;
+ GroupBox2.Name = "GroupBox2";
+ GroupBox2.TabStop = false;
+ ComboBox提示音1_2.AccessibleDescription = null;
+ ComboBox提示音1_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音1_2, "ComboBox提示音1_2");
+ ComboBox提示音1_2.BackgroundImage = null;
+ ComboBox提示音1_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音1_2.Font = null;
+ ComboBox提示音1_2.FormattingEnabled = true;
+ ComboBox提示音1_2.Name = "ComboBox提示音1_2";
+ Label5.AccessibleDescription = null;
+ Label5.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label5, "Label5");
+ Label5.Font = null;
+ Label5.Name = "Label5";
+ ComboBox解开两音后的响应方式1_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式1_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_2, "ComboBox解开两音后的响应方式1_2");
+ ComboBox解开两音后的响应方式1_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式1_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式1_2.Font = null;
+ ComboBox解开两音后的响应方式1_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式1_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_2.Items3")
+ });
+ ComboBox解开两音后的响应方式1_2.Name = "ComboBox解开两音后的响应方式1_2";
+ Label6.AccessibleDescription = null;
+ Label6.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label6, "Label6");
+ Label6.Font = null;
+ Label6.Name = "Label6";
+ ComboBox两音的组合方式1_2.AccessibleDescription = null;
+ ComboBox两音的组合方式1_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式1_2, "ComboBox两音的组合方式1_2");
+ ComboBox两音的组合方式1_2.BackgroundImage = null;
+ ComboBox两音的组合方式1_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式1_2.Font = null;
+ ComboBox两音的组合方式1_2.FormattingEnabled = true;
+ ComboBox两音的组合方式1_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_2.Items15")
+ });
+ ComboBox两音的组合方式1_2.Name = "ComboBox两音的组合方式1_2";
+ Label7.AccessibleDescription = null;
+ Label7.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label7, "Label7");
+ Label7.Font = null;
+ Label7.Name = "Label7";
+ GroupBox1.AccessibleDescription = null;
+ GroupBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
+ GroupBox1.BackgroundImage = null;
+ GroupBox1.Controls.Add(ComboBox提示音1_1);
+ GroupBox1.Controls.Add(Label4);
+ GroupBox1.Controls.Add(ComboBox解开两音后的响应方式1_1);
+ GroupBox1.Controls.Add(Label3);
+ GroupBox1.Controls.Add(ComboBox两音的组合方式1_1);
+ GroupBox1.Controls.Add(Label2);
+ GroupBox1.Font = null;
+ GroupBox1.Name = "GroupBox1";
+ GroupBox1.TabStop = false;
+ ComboBox提示音1_1.AccessibleDescription = null;
+ ComboBox提示音1_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音1_1, "ComboBox提示音1_1");
+ ComboBox提示音1_1.BackgroundImage = null;
+ ComboBox提示音1_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音1_1.Font = null;
+ ComboBox提示音1_1.FormattingEnabled = true;
+ ComboBox提示音1_1.Name = "ComboBox提示音1_1";
+ Label4.AccessibleDescription = null;
+ Label4.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label4, "Label4");
+ Label4.Font = null;
+ Label4.Name = "Label4";
+ ComboBox解开两音后的响应方式1_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式1_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式1_1, "ComboBox解开两音后的响应方式1_1");
+ ComboBox解开两音后的响应方式1_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式1_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式1_1.Font = null;
+ ComboBox解开两音后的响应方式1_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式1_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式1_1.Items3")
+ });
+ ComboBox解开两音后的响应方式1_1.Name = "ComboBox解开两音后的响应方式1_1";
+ Label3.AccessibleDescription = null;
+ Label3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label3, "Label3");
+ Label3.Font = null;
+ Label3.Name = "Label3";
+ ComboBox两音的组合方式1_1.AccessibleDescription = null;
+ ComboBox两音的组合方式1_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式1_1, "ComboBox两音的组合方式1_1");
+ ComboBox两音的组合方式1_1.BackgroundImage = null;
+ ComboBox两音的组合方式1_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式1_1.Font = null;
+ ComboBox两音的组合方式1_1.FormattingEnabled = true;
+ ComboBox两音的组合方式1_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式1_1.Items15")
+ });
+ ComboBox两音的组合方式1_1.Name = "ComboBox两音的组合方式1_1";
+ Label2.AccessibleDescription = null;
+ Label2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label2, "Label2");
+ Label2.Font = null;
+ Label2.Name = "Label2";
+ TabPage4.AccessibleDescription = null;
+ TabPage4.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage4, "TabPage4");
+ TabPage4.BackgroundImage = null;
+ TabPage4.Controls.Add(GroupBox5);
+ TabPage4.Controls.Add(NumericUpDown2_D);
+ TabPage4.Controls.Add(NumericUpDown2_C);
+ TabPage4.Controls.Add(NumericUpDown2_B);
+ TabPage4.Controls.Add(Label22);
+ TabPage4.Controls.Add(NumericUpDown2_A);
+ TabPage4.Controls.Add(Label23);
+ TabPage4.Controls.Add(Label24);
+ TabPage4.Controls.Add(Label25);
+ TabPage4.Controls.Add(GroupBox6);
+ TabPage4.Controls.Add(GroupBox7);
+ TabPage4.Controls.Add(GroupBox8);
+ TabPage4.Font = null;
+ TabPage4.Name = "TabPage4";
+ TabPage4.UseVisualStyleBackColor = true;
+ GroupBox5.AccessibleDescription = null;
+ GroupBox5.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox5, "GroupBox5");
+ GroupBox5.BackgroundImage = null;
+ GroupBox5.Controls.Add(ComboBox提示音2_4);
+ GroupBox5.Controls.Add(Label19);
+ GroupBox5.Controls.Add(ComboBox解开两音后的响应方式2_4);
+ GroupBox5.Controls.Add(Label20);
+ GroupBox5.Controls.Add(ComboBox两音的组合方式2_4);
+ GroupBox5.Controls.Add(Label21);
+ GroupBox5.Font = null;
+ GroupBox5.Name = "GroupBox5";
+ GroupBox5.TabStop = false;
+ ComboBox提示音2_4.AccessibleDescription = null;
+ ComboBox提示音2_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音2_4, "ComboBox提示音2_4");
+ ComboBox提示音2_4.BackgroundImage = null;
+ ComboBox提示音2_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音2_4.Font = null;
+ ComboBox提示音2_4.FormattingEnabled = true;
+ ComboBox提示音2_4.Name = "ComboBox提示音2_4";
+ Label19.AccessibleDescription = null;
+ Label19.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label19, "Label19");
+ Label19.Font = null;
+ Label19.Name = "Label19";
+ ComboBox解开两音后的响应方式2_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式2_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_4, "ComboBox解开两音后的响应方式2_4");
+ ComboBox解开两音后的响应方式2_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式2_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式2_4.Font = null;
+ ComboBox解开两音后的响应方式2_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式2_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_4.Items3")
+ });
+ ComboBox解开两音后的响应方式2_4.Name = "ComboBox解开两音后的响应方式2_4";
+ Label20.AccessibleDescription = null;
+ Label20.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label20, "Label20");
+ Label20.Font = null;
+ Label20.Name = "Label20";
+ ComboBox两音的组合方式2_4.AccessibleDescription = null;
+ ComboBox两音的组合方式2_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式2_4, "ComboBox两音的组合方式2_4");
+ ComboBox两音的组合方式2_4.BackgroundImage = null;
+ ComboBox两音的组合方式2_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式2_4.Font = null;
+ ComboBox两音的组合方式2_4.FormattingEnabled = true;
+ ComboBox两音的组合方式2_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_4.Items15")
+ });
+ ComboBox两音的组合方式2_4.Name = "ComboBox两音的组合方式2_4";
+ Label21.AccessibleDescription = null;
+ Label21.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label21, "Label21");
+ Label21.Font = null;
+ Label21.Name = "Label21";
+ NumericUpDown2_D.AccessibleDescription = null;
+ NumericUpDown2_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown2_D, "NumericUpDown2_D");
+ NumericUpDown2_D.DecimalPlaces = 1;
+ NumericUpDown2_D.Font = null;
+ var numericUpDown2D1 = NumericUpDown2_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num18 = num1;
+ numericUpDown2D1.Increment = num18;
+ var numericUpDown2D2 = NumericUpDown2_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num19 = num1;
+ numericUpDown2D2.Maximum = num19;
+ var numericUpDown2D3 = NumericUpDown2_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num20 = num1;
+ numericUpDown2D3.Minimum = num20;
+ NumericUpDown2_D.Name = "NumericUpDown2_D";
+ var numericUpDown2D4 = NumericUpDown2_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num21 = num1;
+ numericUpDown2D4.Value = num21;
+ NumericUpDown2_C.AccessibleDescription = null;
+ NumericUpDown2_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown2_C, "NumericUpDown2_C");
+ NumericUpDown2_C.DecimalPlaces = 1;
+ NumericUpDown2_C.Font = null;
+ var numericUpDown2C1 = NumericUpDown2_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num22 = num1;
+ numericUpDown2C1.Increment = num22;
+ var numericUpDown2C2 = NumericUpDown2_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num23 = num1;
+ numericUpDown2C2.Maximum = num23;
+ var numericUpDown2C3 = NumericUpDown2_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num24 = num1;
+ numericUpDown2C3.Minimum = num24;
+ NumericUpDown2_C.Name = "NumericUpDown2_C";
+ var numericUpDown2C4 = NumericUpDown2_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num25 = num1;
+ numericUpDown2C4.Value = num25;
+ NumericUpDown2_B.AccessibleDescription = null;
+ NumericUpDown2_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown2_B, "NumericUpDown2_B");
+ NumericUpDown2_B.DecimalPlaces = 1;
+ NumericUpDown2_B.Font = null;
+ var numericUpDown2B1 = NumericUpDown2_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num26 = num1;
+ numericUpDown2B1.Increment = num26;
+ var numericUpDown2B2 = NumericUpDown2_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num27 = num1;
+ numericUpDown2B2.Maximum = num27;
+ var numericUpDown2B3 = NumericUpDown2_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num28 = num1;
+ numericUpDown2B3.Minimum = num28;
+ NumericUpDown2_B.Name = "NumericUpDown2_B";
+ var numericUpDown2B4 = NumericUpDown2_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num29 = num1;
+ numericUpDown2B4.Value = num29;
+ Label22.AccessibleDescription = null;
+ Label22.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label22, "Label22");
+ Label22.Font = null;
+ Label22.Name = "Label22";
+ NumericUpDown2_A.AccessibleDescription = null;
+ NumericUpDown2_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown2_A, "NumericUpDown2_A");
+ NumericUpDown2_A.DecimalPlaces = 1;
+ NumericUpDown2_A.Font = null;
+ var numericUpDown2A1 = NumericUpDown2_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num30 = num1;
+ numericUpDown2A1.Increment = num30;
+ var numericUpDown2A2 = NumericUpDown2_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num31 = num1;
+ numericUpDown2A2.Maximum = num31;
+ var numericUpDown2A3 = NumericUpDown2_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num32 = num1;
+ numericUpDown2A3.Minimum = num32;
+ NumericUpDown2_A.Name = "NumericUpDown2_A";
+ var numericUpDown2A4 = NumericUpDown2_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num33 = num1;
+ numericUpDown2A4.Value = num33;
+ Label23.AccessibleDescription = null;
+ Label23.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label23, "Label23");
+ Label23.Font = null;
+ Label23.Name = "Label23";
+ Label24.AccessibleDescription = null;
+ Label24.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label24, "Label24");
+ Label24.Font = null;
+ Label24.Name = "Label24";
+ Label25.AccessibleDescription = null;
+ Label25.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label25, "Label25");
+ Label25.Font = null;
+ Label25.Name = "Label25";
+ GroupBox6.AccessibleDescription = null;
+ GroupBox6.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox6, "GroupBox6");
+ GroupBox6.BackgroundImage = null;
+ GroupBox6.Controls.Add(ComboBox提示音2_3);
+ GroupBox6.Controls.Add(Label26);
+ GroupBox6.Controls.Add(ComboBox解开两音后的响应方式2_3);
+ GroupBox6.Controls.Add(Label27);
+ GroupBox6.Controls.Add(ComboBox两音的组合方式2_3);
+ GroupBox6.Controls.Add(Label28);
+ GroupBox6.Font = null;
+ GroupBox6.Name = "GroupBox6";
+ GroupBox6.TabStop = false;
+ ComboBox提示音2_3.AccessibleDescription = null;
+ ComboBox提示音2_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音2_3, "ComboBox提示音2_3");
+ ComboBox提示音2_3.BackgroundImage = null;
+ ComboBox提示音2_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音2_3.Font = null;
+ ComboBox提示音2_3.FormattingEnabled = true;
+ ComboBox提示音2_3.Name = "ComboBox提示音2_3";
+ Label26.AccessibleDescription = null;
+ Label26.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label26, "Label26");
+ Label26.Font = null;
+ Label26.Name = "Label26";
+ ComboBox解开两音后的响应方式2_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式2_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_3, "ComboBox解开两音后的响应方式2_3");
+ ComboBox解开两音后的响应方式2_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式2_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式2_3.Font = null;
+ ComboBox解开两音后的响应方式2_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式2_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_3.Items3")
+ });
+ ComboBox解开两音后的响应方式2_3.Name = "ComboBox解开两音后的响应方式2_3";
+ Label27.AccessibleDescription = null;
+ Label27.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label27, "Label27");
+ Label27.Font = null;
+ Label27.Name = "Label27";
+ ComboBox两音的组合方式2_3.AccessibleDescription = null;
+ ComboBox两音的组合方式2_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式2_3, "ComboBox两音的组合方式2_3");
+ ComboBox两音的组合方式2_3.BackgroundImage = null;
+ ComboBox两音的组合方式2_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式2_3.Font = null;
+ ComboBox两音的组合方式2_3.FormattingEnabled = true;
+ ComboBox两音的组合方式2_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_3.Items15")
+ });
+ ComboBox两音的组合方式2_3.Name = "ComboBox两音的组合方式2_3";
+ Label28.AccessibleDescription = null;
+ Label28.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label28, "Label28");
+ Label28.Font = null;
+ Label28.Name = "Label28";
+ GroupBox7.AccessibleDescription = null;
+ GroupBox7.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox7, "GroupBox7");
+ GroupBox7.BackgroundImage = null;
+ GroupBox7.Controls.Add(ComboBox提示音2_2);
+ GroupBox7.Controls.Add(Label29);
+ GroupBox7.Controls.Add(ComboBox解开两音后的响应方式2_2);
+ GroupBox7.Controls.Add(Label30);
+ GroupBox7.Controls.Add(ComboBox两音的组合方式2_2);
+ GroupBox7.Controls.Add(Label31);
+ GroupBox7.Font = null;
+ GroupBox7.Name = "GroupBox7";
+ GroupBox7.TabStop = false;
+ ComboBox提示音2_2.AccessibleDescription = null;
+ ComboBox提示音2_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音2_2, "ComboBox提示音2_2");
+ ComboBox提示音2_2.BackgroundImage = null;
+ ComboBox提示音2_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音2_2.Font = null;
+ ComboBox提示音2_2.FormattingEnabled = true;
+ ComboBox提示音2_2.Name = "ComboBox提示音2_2";
+ Label29.AccessibleDescription = null;
+ Label29.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label29, "Label29");
+ Label29.Font = null;
+ Label29.Name = "Label29";
+ ComboBox解开两音后的响应方式2_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式2_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_2, "ComboBox解开两音后的响应方式2_2");
+ ComboBox解开两音后的响应方式2_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式2_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式2_2.Font = null;
+ ComboBox解开两音后的响应方式2_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式2_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_2.Items3")
+ });
+ ComboBox解开两音后的响应方式2_2.Name = "ComboBox解开两音后的响应方式2_2";
+ Label30.AccessibleDescription = null;
+ Label30.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label30, "Label30");
+ Label30.Font = null;
+ Label30.Name = "Label30";
+ ComboBox两音的组合方式2_2.AccessibleDescription = null;
+ ComboBox两音的组合方式2_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式2_2, "ComboBox两音的组合方式2_2");
+ ComboBox两音的组合方式2_2.BackgroundImage = null;
+ ComboBox两音的组合方式2_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式2_2.Font = null;
+ ComboBox两音的组合方式2_2.FormattingEnabled = true;
+ ComboBox两音的组合方式2_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_2.Items15")
+ });
+ ComboBox两音的组合方式2_2.Name = "ComboBox两音的组合方式2_2";
+ Label31.AccessibleDescription = null;
+ Label31.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label31, "Label31");
+ Label31.Font = null;
+ Label31.Name = "Label31";
+ GroupBox8.AccessibleDescription = null;
+ GroupBox8.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox8, "GroupBox8");
+ GroupBox8.BackgroundImage = null;
+ GroupBox8.Controls.Add(ComboBox提示音2_1);
+ GroupBox8.Controls.Add(Label32);
+ GroupBox8.Controls.Add(ComboBox解开两音后的响应方式2_1);
+ GroupBox8.Controls.Add(Label33);
+ GroupBox8.Controls.Add(ComboBox两音的组合方式2_1);
+ GroupBox8.Controls.Add(Label34);
+ GroupBox8.Font = null;
+ GroupBox8.Name = "GroupBox8";
+ GroupBox8.TabStop = false;
+ ComboBox提示音2_1.AccessibleDescription = null;
+ ComboBox提示音2_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音2_1, "ComboBox提示音2_1");
+ ComboBox提示音2_1.BackgroundImage = null;
+ ComboBox提示音2_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音2_1.Font = null;
+ ComboBox提示音2_1.FormattingEnabled = true;
+ ComboBox提示音2_1.Name = "ComboBox提示音2_1";
+ Label32.AccessibleDescription = null;
+ Label32.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label32, "Label32");
+ Label32.Font = null;
+ Label32.Name = "Label32";
+ ComboBox解开两音后的响应方式2_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式2_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式2_1, "ComboBox解开两音后的响应方式2_1");
+ ComboBox解开两音后的响应方式2_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式2_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式2_1.Font = null;
+ ComboBox解开两音后的响应方式2_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式2_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式2_1.Items3")
+ });
+ ComboBox解开两音后的响应方式2_1.Name = "ComboBox解开两音后的响应方式2_1";
+ Label33.AccessibleDescription = null;
+ Label33.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label33, "Label33");
+ Label33.Font = null;
+ Label33.Name = "Label33";
+ ComboBox两音的组合方式2_1.AccessibleDescription = null;
+ ComboBox两音的组合方式2_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式2_1, "ComboBox两音的组合方式2_1");
+ ComboBox两音的组合方式2_1.BackgroundImage = null;
+ ComboBox两音的组合方式2_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式2_1.Font = null;
+ ComboBox两音的组合方式2_1.FormattingEnabled = true;
+ ComboBox两音的组合方式2_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式2_1.Items15")
+ });
+ ComboBox两音的组合方式2_1.Name = "ComboBox两音的组合方式2_1";
+ Label34.AccessibleDescription = null;
+ Label34.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label34, "Label34");
+ Label34.Font = null;
+ Label34.Name = "Label34";
+ TabPage5.AccessibleDescription = null;
+ TabPage5.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage5, "TabPage5");
+ TabPage5.BackgroundImage = null;
+ TabPage5.Controls.Add(GroupBox9);
+ TabPage5.Controls.Add(NumericUpDown3_D);
+ TabPage5.Controls.Add(NumericUpDown3_C);
+ TabPage5.Controls.Add(NumericUpDown3_B);
+ TabPage5.Controls.Add(Label38);
+ TabPage5.Controls.Add(NumericUpDown3_A);
+ TabPage5.Controls.Add(Label39);
+ TabPage5.Controls.Add(Label40);
+ TabPage5.Controls.Add(Label41);
+ TabPage5.Controls.Add(GroupBox10);
+ TabPage5.Controls.Add(GroupBox11);
+ TabPage5.Controls.Add(GroupBox12);
+ TabPage5.Font = null;
+ TabPage5.Name = "TabPage5";
+ TabPage5.UseVisualStyleBackColor = true;
+ GroupBox9.AccessibleDescription = null;
+ GroupBox9.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox9, "GroupBox9");
+ GroupBox9.BackgroundImage = null;
+ GroupBox9.Controls.Add(ComboBox提示音3_4);
+ GroupBox9.Controls.Add(Label35);
+ GroupBox9.Controls.Add(ComboBox解开两音后的响应方式3_4);
+ GroupBox9.Controls.Add(Label36);
+ GroupBox9.Controls.Add(ComboBox两音的组合方式3_4);
+ GroupBox9.Controls.Add(Label37);
+ GroupBox9.Font = null;
+ GroupBox9.Name = "GroupBox9";
+ GroupBox9.TabStop = false;
+ ComboBox提示音3_4.AccessibleDescription = null;
+ ComboBox提示音3_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音3_4, "ComboBox提示音3_4");
+ ComboBox提示音3_4.BackgroundImage = null;
+ ComboBox提示音3_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音3_4.Font = null;
+ ComboBox提示音3_4.FormattingEnabled = true;
+ ComboBox提示音3_4.Name = "ComboBox提示音3_4";
+ Label35.AccessibleDescription = null;
+ Label35.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label35, "Label35");
+ Label35.Font = null;
+ Label35.Name = "Label35";
+ ComboBox解开两音后的响应方式3_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式3_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_4, "ComboBox解开两音后的响应方式3_4");
+ ComboBox解开两音后的响应方式3_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式3_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式3_4.Font = null;
+ ComboBox解开两音后的响应方式3_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式3_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_4.Items3")
+ });
+ ComboBox解开两音后的响应方式3_4.Name = "ComboBox解开两音后的响应方式3_4";
+ Label36.AccessibleDescription = null;
+ Label36.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label36, "Label36");
+ Label36.Font = null;
+ Label36.Name = "Label36";
+ ComboBox两音的组合方式3_4.AccessibleDescription = null;
+ ComboBox两音的组合方式3_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式3_4, "ComboBox两音的组合方式3_4");
+ ComboBox两音的组合方式3_4.BackgroundImage = null;
+ ComboBox两音的组合方式3_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式3_4.Font = null;
+ ComboBox两音的组合方式3_4.FormattingEnabled = true;
+ ComboBox两音的组合方式3_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_4.Items15")
+ });
+ ComboBox两音的组合方式3_4.Name = "ComboBox两音的组合方式3_4";
+ Label37.AccessibleDescription = null;
+ Label37.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label37, "Label37");
+ Label37.Font = null;
+ Label37.Name = "Label37";
+ NumericUpDown3_D.AccessibleDescription = null;
+ NumericUpDown3_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown3_D, "NumericUpDown3_D");
+ NumericUpDown3_D.DecimalPlaces = 1;
+ NumericUpDown3_D.Font = null;
+ var numericUpDown3D1 = NumericUpDown3_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num34 = num1;
+ numericUpDown3D1.Increment = num34;
+ var numericUpDown3D2 = NumericUpDown3_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num35 = num1;
+ numericUpDown3D2.Maximum = num35;
+ var numericUpDown3D3 = NumericUpDown3_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num36 = num1;
+ numericUpDown3D3.Minimum = num36;
+ NumericUpDown3_D.Name = "NumericUpDown3_D";
+ var numericUpDown3D4 = NumericUpDown3_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num37 = num1;
+ numericUpDown3D4.Value = num37;
+ NumericUpDown3_C.AccessibleDescription = null;
+ NumericUpDown3_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown3_C, "NumericUpDown3_C");
+ NumericUpDown3_C.DecimalPlaces = 1;
+ NumericUpDown3_C.Font = null;
+ var numericUpDown3C1 = NumericUpDown3_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num38 = num1;
+ numericUpDown3C1.Increment = num38;
+ var numericUpDown3C2 = NumericUpDown3_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num39 = num1;
+ numericUpDown3C2.Maximum = num39;
+ var numericUpDown3C3 = NumericUpDown3_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num40 = num1;
+ numericUpDown3C3.Minimum = num40;
+ NumericUpDown3_C.Name = "NumericUpDown3_C";
+ var numericUpDown3C4 = NumericUpDown3_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num41 = num1;
+ numericUpDown3C4.Value = num41;
+ NumericUpDown3_B.AccessibleDescription = null;
+ NumericUpDown3_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown3_B, "NumericUpDown3_B");
+ NumericUpDown3_B.DecimalPlaces = 1;
+ NumericUpDown3_B.Font = null;
+ var numericUpDown3B1 = NumericUpDown3_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num42 = num1;
+ numericUpDown3B1.Increment = num42;
+ var numericUpDown3B2 = NumericUpDown3_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num43 = num1;
+ numericUpDown3B2.Maximum = num43;
+ var numericUpDown3B3 = NumericUpDown3_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num44 = num1;
+ numericUpDown3B3.Minimum = num44;
+ NumericUpDown3_B.Name = "NumericUpDown3_B";
+ var numericUpDown3B4 = NumericUpDown3_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num45 = num1;
+ numericUpDown3B4.Value = num45;
+ Label38.AccessibleDescription = null;
+ Label38.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label38, "Label38");
+ Label38.Font = null;
+ Label38.Name = "Label38";
+ NumericUpDown3_A.AccessibleDescription = null;
+ NumericUpDown3_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown3_A, "NumericUpDown3_A");
+ NumericUpDown3_A.DecimalPlaces = 1;
+ NumericUpDown3_A.Font = null;
+ var numericUpDown3A1 = NumericUpDown3_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num46 = num1;
+ numericUpDown3A1.Increment = num46;
+ var numericUpDown3A2 = NumericUpDown3_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num47 = num1;
+ numericUpDown3A2.Maximum = num47;
+ var numericUpDown3A3 = NumericUpDown3_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num48 = num1;
+ numericUpDown3A3.Minimum = num48;
+ NumericUpDown3_A.Name = "NumericUpDown3_A";
+ var numericUpDown3A4 = NumericUpDown3_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num49 = num1;
+ numericUpDown3A4.Value = num49;
+ Label39.AccessibleDescription = null;
+ Label39.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label39, "Label39");
+ Label39.Font = null;
+ Label39.Name = "Label39";
+ Label40.AccessibleDescription = null;
+ Label40.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label40, "Label40");
+ Label40.Font = null;
+ Label40.Name = "Label40";
+ Label41.AccessibleDescription = null;
+ Label41.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label41, "Label41");
+ Label41.Font = null;
+ Label41.Name = "Label41";
+ GroupBox10.AccessibleDescription = null;
+ GroupBox10.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox10, "GroupBox10");
+ GroupBox10.BackgroundImage = null;
+ GroupBox10.Controls.Add(ComboBox提示音3_3);
+ GroupBox10.Controls.Add(Label42);
+ GroupBox10.Controls.Add(ComboBox解开两音后的响应方式3_3);
+ GroupBox10.Controls.Add(Label43);
+ GroupBox10.Controls.Add(ComboBox两音的组合方式3_3);
+ GroupBox10.Controls.Add(Label44);
+ GroupBox10.Font = null;
+ GroupBox10.Name = "GroupBox10";
+ GroupBox10.TabStop = false;
+ ComboBox提示音3_3.AccessibleDescription = null;
+ ComboBox提示音3_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音3_3, "ComboBox提示音3_3");
+ ComboBox提示音3_3.BackgroundImage = null;
+ ComboBox提示音3_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音3_3.Font = null;
+ ComboBox提示音3_3.FormattingEnabled = true;
+ ComboBox提示音3_3.Name = "ComboBox提示音3_3";
+ Label42.AccessibleDescription = null;
+ Label42.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label42, "Label42");
+ Label42.Font = null;
+ Label42.Name = "Label42";
+ ComboBox解开两音后的响应方式3_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式3_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_3, "ComboBox解开两音后的响应方式3_3");
+ ComboBox解开两音后的响应方式3_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式3_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式3_3.Font = null;
+ ComboBox解开两音后的响应方式3_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式3_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_3.Items3")
+ });
+ ComboBox解开两音后的响应方式3_3.Name = "ComboBox解开两音后的响应方式3_3";
+ Label43.AccessibleDescription = null;
+ Label43.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label43, "Label43");
+ Label43.Font = null;
+ Label43.Name = "Label43";
+ ComboBox两音的组合方式3_3.AccessibleDescription = null;
+ ComboBox两音的组合方式3_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式3_3, "ComboBox两音的组合方式3_3");
+ ComboBox两音的组合方式3_3.BackgroundImage = null;
+ ComboBox两音的组合方式3_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式3_3.Font = null;
+ ComboBox两音的组合方式3_3.FormattingEnabled = true;
+ ComboBox两音的组合方式3_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_3.Items15")
+ });
+ ComboBox两音的组合方式3_3.Name = "ComboBox两音的组合方式3_3";
+ Label44.AccessibleDescription = null;
+ Label44.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label44, "Label44");
+ Label44.Font = null;
+ Label44.Name = "Label44";
+ GroupBox11.AccessibleDescription = null;
+ GroupBox11.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox11, "GroupBox11");
+ GroupBox11.BackgroundImage = null;
+ GroupBox11.Controls.Add(ComboBox提示音3_2);
+ GroupBox11.Controls.Add(Label45);
+ GroupBox11.Controls.Add(ComboBox解开两音后的响应方式3_2);
+ GroupBox11.Controls.Add(Label46);
+ GroupBox11.Controls.Add(ComboBox两音的组合方式3_2);
+ GroupBox11.Controls.Add(Label47);
+ GroupBox11.Font = null;
+ GroupBox11.Name = "GroupBox11";
+ GroupBox11.TabStop = false;
+ ComboBox提示音3_2.AccessibleDescription = null;
+ ComboBox提示音3_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音3_2, "ComboBox提示音3_2");
+ ComboBox提示音3_2.BackgroundImage = null;
+ ComboBox提示音3_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音3_2.Font = null;
+ ComboBox提示音3_2.FormattingEnabled = true;
+ ComboBox提示音3_2.Name = "ComboBox提示音3_2";
+ Label45.AccessibleDescription = null;
+ Label45.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label45, "Label45");
+ Label45.Font = null;
+ Label45.Name = "Label45";
+ ComboBox解开两音后的响应方式3_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式3_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_2, "ComboBox解开两音后的响应方式3_2");
+ ComboBox解开两音后的响应方式3_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式3_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式3_2.Font = null;
+ ComboBox解开两音后的响应方式3_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式3_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_2.Items3")
+ });
+ ComboBox解开两音后的响应方式3_2.Name = "ComboBox解开两音后的响应方式3_2";
+ Label46.AccessibleDescription = null;
+ Label46.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label46, "Label46");
+ Label46.Font = null;
+ Label46.Name = "Label46";
+ ComboBox两音的组合方式3_2.AccessibleDescription = null;
+ ComboBox两音的组合方式3_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式3_2, "ComboBox两音的组合方式3_2");
+ ComboBox两音的组合方式3_2.BackgroundImage = null;
+ ComboBox两音的组合方式3_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式3_2.Font = null;
+ ComboBox两音的组合方式3_2.FormattingEnabled = true;
+ ComboBox两音的组合方式3_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_2.Items15")
+ });
+ ComboBox两音的组合方式3_2.Name = "ComboBox两音的组合方式3_2";
+ Label47.AccessibleDescription = null;
+ Label47.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label47, "Label47");
+ Label47.Font = null;
+ Label47.Name = "Label47";
+ GroupBox12.AccessibleDescription = null;
+ GroupBox12.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox12, "GroupBox12");
+ GroupBox12.BackgroundImage = null;
+ GroupBox12.Controls.Add(ComboBox提示音3_1);
+ GroupBox12.Controls.Add(Label48);
+ GroupBox12.Controls.Add(ComboBox解开两音后的响应方式3_1);
+ GroupBox12.Controls.Add(Label49);
+ GroupBox12.Controls.Add(ComboBox两音的组合方式3_1);
+ GroupBox12.Controls.Add(Label50);
+ GroupBox12.Font = null;
+ GroupBox12.Name = "GroupBox12";
+ GroupBox12.TabStop = false;
+ ComboBox提示音3_1.AccessibleDescription = null;
+ ComboBox提示音3_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音3_1, "ComboBox提示音3_1");
+ ComboBox提示音3_1.BackgroundImage = null;
+ ComboBox提示音3_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音3_1.Font = null;
+ ComboBox提示音3_1.FormattingEnabled = true;
+ ComboBox提示音3_1.Name = "ComboBox提示音3_1";
+ Label48.AccessibleDescription = null;
+ Label48.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label48, "Label48");
+ Label48.Font = null;
+ Label48.Name = "Label48";
+ ComboBox解开两音后的响应方式3_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式3_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式3_1, "ComboBox解开两音后的响应方式3_1");
+ ComboBox解开两音后的响应方式3_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式3_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式3_1.Font = null;
+ ComboBox解开两音后的响应方式3_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式3_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式3_1.Items3")
+ });
+ ComboBox解开两音后的响应方式3_1.Name = "ComboBox解开两音后的响应方式3_1";
+ Label49.AccessibleDescription = null;
+ Label49.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label49, "Label49");
+ Label49.Font = null;
+ Label49.Name = "Label49";
+ ComboBox两音的组合方式3_1.AccessibleDescription = null;
+ ComboBox两音的组合方式3_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式3_1, "ComboBox两音的组合方式3_1");
+ ComboBox两音的组合方式3_1.BackgroundImage = null;
+ ComboBox两音的组合方式3_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式3_1.Font = null;
+ ComboBox两音的组合方式3_1.FormattingEnabled = true;
+ ComboBox两音的组合方式3_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式3_1.Items15")
+ });
+ ComboBox两音的组合方式3_1.Name = "ComboBox两音的组合方式3_1";
+ Label50.AccessibleDescription = null;
+ Label50.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label50, "Label50");
+ Label50.Font = null;
+ Label50.Name = "Label50";
+ TabPage6.AccessibleDescription = null;
+ TabPage6.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage6, "TabPage6");
+ TabPage6.BackgroundImage = null;
+ TabPage6.Controls.Add(GroupBox13);
+ TabPage6.Controls.Add(NumericUpDown4_D);
+ TabPage6.Controls.Add(NumericUpDown4_C);
+ TabPage6.Controls.Add(NumericUpDown4_B);
+ TabPage6.Controls.Add(Label54);
+ TabPage6.Controls.Add(NumericUpDown4_A);
+ TabPage6.Controls.Add(Label55);
+ TabPage6.Controls.Add(Label56);
+ TabPage6.Controls.Add(Label57);
+ TabPage6.Controls.Add(GroupBox14);
+ TabPage6.Controls.Add(GroupBox15);
+ TabPage6.Controls.Add(GroupBox16);
+ TabPage6.Font = null;
+ TabPage6.Name = "TabPage6";
+ TabPage6.UseVisualStyleBackColor = true;
+ GroupBox13.AccessibleDescription = null;
+ GroupBox13.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox13, "GroupBox13");
+ GroupBox13.BackgroundImage = null;
+ GroupBox13.Controls.Add(ComboBox提示音4_4);
+ GroupBox13.Controls.Add(Label51);
+ GroupBox13.Controls.Add(ComboBox解开两音后的响应方式4_4);
+ GroupBox13.Controls.Add(Label52);
+ GroupBox13.Controls.Add(ComboBox两音的组合方式4_4);
+ GroupBox13.Controls.Add(Label53);
+ GroupBox13.Font = null;
+ GroupBox13.Name = "GroupBox13";
+ GroupBox13.TabStop = false;
+ ComboBox提示音4_4.AccessibleDescription = null;
+ ComboBox提示音4_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音4_4, "ComboBox提示音4_4");
+ ComboBox提示音4_4.BackgroundImage = null;
+ ComboBox提示音4_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音4_4.Font = null;
+ ComboBox提示音4_4.FormattingEnabled = true;
+ ComboBox提示音4_4.Name = "ComboBox提示音4_4";
+ Label51.AccessibleDescription = null;
+ Label51.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label51, "Label51");
+ Label51.Font = null;
+ Label51.Name = "Label51";
+ ComboBox解开两音后的响应方式4_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式4_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_4, "ComboBox解开两音后的响应方式4_4");
+ ComboBox解开两音后的响应方式4_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式4_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式4_4.Font = null;
+ ComboBox解开两音后的响应方式4_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式4_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_4.Items3")
+ });
+ ComboBox解开两音后的响应方式4_4.Name = "ComboBox解开两音后的响应方式4_4";
+ Label52.AccessibleDescription = null;
+ Label52.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label52, "Label52");
+ Label52.Font = null;
+ Label52.Name = "Label52";
+ ComboBox两音的组合方式4_4.AccessibleDescription = null;
+ ComboBox两音的组合方式4_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式4_4, "ComboBox两音的组合方式4_4");
+ ComboBox两音的组合方式4_4.BackgroundImage = null;
+ ComboBox两音的组合方式4_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式4_4.Font = null;
+ ComboBox两音的组合方式4_4.FormattingEnabled = true;
+ ComboBox两音的组合方式4_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_4.Items15")
+ });
+ ComboBox两音的组合方式4_4.Name = "ComboBox两音的组合方式4_4";
+ Label53.AccessibleDescription = null;
+ Label53.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label53, "Label53");
+ Label53.Font = null;
+ Label53.Name = "Label53";
+ NumericUpDown4_D.AccessibleDescription = null;
+ NumericUpDown4_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown4_D, "NumericUpDown4_D");
+ NumericUpDown4_D.DecimalPlaces = 1;
+ NumericUpDown4_D.Font = null;
+ var numericUpDown4D1 = NumericUpDown4_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num50 = num1;
+ numericUpDown4D1.Increment = num50;
+ var numericUpDown4D2 = NumericUpDown4_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num51 = num1;
+ numericUpDown4D2.Maximum = num51;
+ var numericUpDown4D3 = NumericUpDown4_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num52 = num1;
+ numericUpDown4D3.Minimum = num52;
+ NumericUpDown4_D.Name = "NumericUpDown4_D";
+ var numericUpDown4D4 = NumericUpDown4_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num53 = num1;
+ numericUpDown4D4.Value = num53;
+ NumericUpDown4_C.AccessibleDescription = null;
+ NumericUpDown4_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown4_C, "NumericUpDown4_C");
+ NumericUpDown4_C.DecimalPlaces = 1;
+ NumericUpDown4_C.Font = null;
+ var numericUpDown4C1 = NumericUpDown4_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num54 = num1;
+ numericUpDown4C1.Increment = num54;
+ var numericUpDown4C2 = NumericUpDown4_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num55 = num1;
+ numericUpDown4C2.Maximum = num55;
+ var numericUpDown4C3 = NumericUpDown4_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num56 = num1;
+ numericUpDown4C3.Minimum = num56;
+ NumericUpDown4_C.Name = "NumericUpDown4_C";
+ var numericUpDown4C4 = NumericUpDown4_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num57 = num1;
+ numericUpDown4C4.Value = num57;
+ NumericUpDown4_B.AccessibleDescription = null;
+ NumericUpDown4_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown4_B, "NumericUpDown4_B");
+ NumericUpDown4_B.DecimalPlaces = 1;
+ NumericUpDown4_B.Font = null;
+ var numericUpDown4B1 = NumericUpDown4_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num58 = num1;
+ numericUpDown4B1.Increment = num58;
+ var numericUpDown4B2 = NumericUpDown4_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num59 = num1;
+ numericUpDown4B2.Maximum = num59;
+ var numericUpDown4B3 = NumericUpDown4_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num60 = num1;
+ numericUpDown4B3.Minimum = num60;
+ NumericUpDown4_B.Name = "NumericUpDown4_B";
+ var numericUpDown4B4 = NumericUpDown4_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num61 = num1;
+ numericUpDown4B4.Value = num61;
+ Label54.AccessibleDescription = null;
+ Label54.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label54, "Label54");
+ Label54.Font = null;
+ Label54.Name = "Label54";
+ NumericUpDown4_A.AccessibleDescription = null;
+ NumericUpDown4_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown4_A, "NumericUpDown4_A");
+ NumericUpDown4_A.DecimalPlaces = 1;
+ NumericUpDown4_A.Font = null;
+ var numericUpDown4A1 = NumericUpDown4_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num62 = num1;
+ numericUpDown4A1.Increment = num62;
+ var numericUpDown4A2 = NumericUpDown4_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num63 = num1;
+ numericUpDown4A2.Maximum = num63;
+ var numericUpDown4A3 = NumericUpDown4_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num64 = num1;
+ numericUpDown4A3.Minimum = num64;
+ NumericUpDown4_A.Name = "NumericUpDown4_A";
+ var numericUpDown4A4 = NumericUpDown4_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num65 = num1;
+ numericUpDown4A4.Value = num65;
+ Label55.AccessibleDescription = null;
+ Label55.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label55, "Label55");
+ Label55.Font = null;
+ Label55.Name = "Label55";
+ Label56.AccessibleDescription = null;
+ Label56.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label56, "Label56");
+ Label56.Font = null;
+ Label56.Name = "Label56";
+ Label57.AccessibleDescription = null;
+ Label57.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label57, "Label57");
+ Label57.Font = null;
+ Label57.Name = "Label57";
+ GroupBox14.AccessibleDescription = null;
+ GroupBox14.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox14, "GroupBox14");
+ GroupBox14.BackgroundImage = null;
+ GroupBox14.Controls.Add(ComboBox提示音4_3);
+ GroupBox14.Controls.Add(Label58);
+ GroupBox14.Controls.Add(ComboBox解开两音后的响应方式4_3);
+ GroupBox14.Controls.Add(Label59);
+ GroupBox14.Controls.Add(ComboBox两音的组合方式4_3);
+ GroupBox14.Controls.Add(Label60);
+ GroupBox14.Font = null;
+ GroupBox14.Name = "GroupBox14";
+ GroupBox14.TabStop = false;
+ ComboBox提示音4_3.AccessibleDescription = null;
+ ComboBox提示音4_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音4_3, "ComboBox提示音4_3");
+ ComboBox提示音4_3.BackgroundImage = null;
+ ComboBox提示音4_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音4_3.Font = null;
+ ComboBox提示音4_3.FormattingEnabled = true;
+ ComboBox提示音4_3.Name = "ComboBox提示音4_3";
+ Label58.AccessibleDescription = null;
+ Label58.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label58, "Label58");
+ Label58.Font = null;
+ Label58.Name = "Label58";
+ ComboBox解开两音后的响应方式4_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式4_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_3, "ComboBox解开两音后的响应方式4_3");
+ ComboBox解开两音后的响应方式4_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式4_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式4_3.Font = null;
+ ComboBox解开两音后的响应方式4_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式4_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_3.Items3")
+ });
+ ComboBox解开两音后的响应方式4_3.Name = "ComboBox解开两音后的响应方式4_3";
+ Label59.AccessibleDescription = null;
+ Label59.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label59, "Label59");
+ Label59.Font = null;
+ Label59.Name = "Label59";
+ ComboBox两音的组合方式4_3.AccessibleDescription = null;
+ ComboBox两音的组合方式4_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式4_3, "ComboBox两音的组合方式4_3");
+ ComboBox两音的组合方式4_3.BackgroundImage = null;
+ ComboBox两音的组合方式4_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式4_3.Font = null;
+ ComboBox两音的组合方式4_3.FormattingEnabled = true;
+ ComboBox两音的组合方式4_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_3.Items15")
+ });
+ ComboBox两音的组合方式4_3.Name = "ComboBox两音的组合方式4_3";
+ Label60.AccessibleDescription = null;
+ Label60.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label60, "Label60");
+ Label60.Font = null;
+ Label60.Name = "Label60";
+ GroupBox15.AccessibleDescription = null;
+ GroupBox15.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox15, "GroupBox15");
+ GroupBox15.BackgroundImage = null;
+ GroupBox15.Controls.Add(ComboBox提示音4_2);
+ GroupBox15.Controls.Add(Label61);
+ GroupBox15.Controls.Add(ComboBox解开两音后的响应方式4_2);
+ GroupBox15.Controls.Add(Label62);
+ GroupBox15.Controls.Add(ComboBox两音的组合方式4_2);
+ GroupBox15.Controls.Add(Label63);
+ GroupBox15.Font = null;
+ GroupBox15.Name = "GroupBox15";
+ GroupBox15.TabStop = false;
+ ComboBox提示音4_2.AccessibleDescription = null;
+ ComboBox提示音4_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音4_2, "ComboBox提示音4_2");
+ ComboBox提示音4_2.BackgroundImage = null;
+ ComboBox提示音4_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音4_2.Font = null;
+ ComboBox提示音4_2.FormattingEnabled = true;
+ ComboBox提示音4_2.Name = "ComboBox提示音4_2";
+ Label61.AccessibleDescription = null;
+ Label61.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label61, "Label61");
+ Label61.Font = null;
+ Label61.Name = "Label61";
+ ComboBox解开两音后的响应方式4_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式4_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_2, "ComboBox解开两音后的响应方式4_2");
+ ComboBox解开两音后的响应方式4_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式4_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式4_2.Font = null;
+ ComboBox解开两音后的响应方式4_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式4_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_2.Items3")
+ });
+ ComboBox解开两音后的响应方式4_2.Name = "ComboBox解开两音后的响应方式4_2";
+ Label62.AccessibleDescription = null;
+ Label62.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label62, "Label62");
+ Label62.Font = null;
+ Label62.Name = "Label62";
+ ComboBox两音的组合方式4_2.AccessibleDescription = null;
+ ComboBox两音的组合方式4_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式4_2, "ComboBox两音的组合方式4_2");
+ ComboBox两音的组合方式4_2.BackgroundImage = null;
+ ComboBox两音的组合方式4_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式4_2.Font = null;
+ ComboBox两音的组合方式4_2.FormattingEnabled = true;
+ ComboBox两音的组合方式4_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_2.Items15")
+ });
+ ComboBox两音的组合方式4_2.Name = "ComboBox两音的组合方式4_2";
+ Label63.AccessibleDescription = null;
+ Label63.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label63, "Label63");
+ Label63.Font = null;
+ Label63.Name = "Label63";
+ GroupBox16.AccessibleDescription = null;
+ GroupBox16.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox16, "GroupBox16");
+ GroupBox16.BackgroundImage = null;
+ GroupBox16.Controls.Add(ComboBox提示音4_1);
+ GroupBox16.Controls.Add(Label64);
+ GroupBox16.Controls.Add(ComboBox解开两音后的响应方式4_1);
+ GroupBox16.Controls.Add(Label65);
+ GroupBox16.Controls.Add(ComboBox两音的组合方式4_1);
+ GroupBox16.Controls.Add(Label66);
+ GroupBox16.Font = null;
+ GroupBox16.Name = "GroupBox16";
+ GroupBox16.TabStop = false;
+ ComboBox提示音4_1.AccessibleDescription = null;
+ ComboBox提示音4_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音4_1, "ComboBox提示音4_1");
+ ComboBox提示音4_1.BackgroundImage = null;
+ ComboBox提示音4_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音4_1.Font = null;
+ ComboBox提示音4_1.FormattingEnabled = true;
+ ComboBox提示音4_1.Name = "ComboBox提示音4_1";
+ Label64.AccessibleDescription = null;
+ Label64.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label64, "Label64");
+ Label64.Font = null;
+ Label64.Name = "Label64";
+ ComboBox解开两音后的响应方式4_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式4_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式4_1, "ComboBox解开两音后的响应方式4_1");
+ ComboBox解开两音后的响应方式4_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式4_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式4_1.Font = null;
+ ComboBox解开两音后的响应方式4_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式4_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式4_1.Items3")
+ });
+ ComboBox解开两音后的响应方式4_1.Name = "ComboBox解开两音后的响应方式4_1";
+ Label65.AccessibleDescription = null;
+ Label65.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label65, "Label65");
+ Label65.Font = null;
+ Label65.Name = "Label65";
+ ComboBox两音的组合方式4_1.AccessibleDescription = null;
+ ComboBox两音的组合方式4_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式4_1, "ComboBox两音的组合方式4_1");
+ ComboBox两音的组合方式4_1.BackgroundImage = null;
+ ComboBox两音的组合方式4_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式4_1.Font = null;
+ ComboBox两音的组合方式4_1.FormattingEnabled = true;
+ ComboBox两音的组合方式4_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式4_1.Items15")
+ });
+ ComboBox两音的组合方式4_1.Name = "ComboBox两音的组合方式4_1";
+ Label66.AccessibleDescription = null;
+ Label66.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label66, "Label66");
+ Label66.Font = null;
+ Label66.Name = "Label66";
+ TabPage7.AccessibleDescription = null;
+ TabPage7.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage7, "TabPage7");
+ TabPage7.BackgroundImage = null;
+ TabPage7.Controls.Add(GroupBox17);
+ TabPage7.Controls.Add(NumericUpDown5_D);
+ TabPage7.Controls.Add(NumericUpDown5_C);
+ TabPage7.Controls.Add(NumericUpDown5_B);
+ TabPage7.Controls.Add(Label73);
+ TabPage7.Controls.Add(NumericUpDown5_A);
+ TabPage7.Controls.Add(Label83);
+ TabPage7.Controls.Add(Label84);
+ TabPage7.Controls.Add(Label85);
+ TabPage7.Controls.Add(GroupBox18);
+ TabPage7.Controls.Add(GroupBox19);
+ TabPage7.Controls.Add(GroupBox20);
+ TabPage7.Font = null;
+ TabPage7.Name = "TabPage7";
+ TabPage7.UseVisualStyleBackColor = true;
+ GroupBox17.AccessibleDescription = null;
+ GroupBox17.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox17, "GroupBox17");
+ GroupBox17.BackgroundImage = null;
+ GroupBox17.Controls.Add(ComboBox提示音5_4);
+ GroupBox17.Controls.Add(Label70);
+ GroupBox17.Controls.Add(ComboBox解开两音后的响应方式5_4);
+ GroupBox17.Controls.Add(Label71);
+ GroupBox17.Controls.Add(ComboBox两音的组合方式5_4);
+ GroupBox17.Controls.Add(Label72);
+ GroupBox17.Font = null;
+ GroupBox17.Name = "GroupBox17";
+ GroupBox17.TabStop = false;
+ ComboBox提示音5_4.AccessibleDescription = null;
+ ComboBox提示音5_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音5_4, "ComboBox提示音5_4");
+ ComboBox提示音5_4.BackgroundImage = null;
+ ComboBox提示音5_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音5_4.Font = null;
+ ComboBox提示音5_4.FormattingEnabled = true;
+ ComboBox提示音5_4.Name = "ComboBox提示音5_4";
+ Label70.AccessibleDescription = null;
+ Label70.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label70, "Label70");
+ Label70.Font = null;
+ Label70.Name = "Label70";
+ ComboBox解开两音后的响应方式5_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式5_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_4, "ComboBox解开两音后的响应方式5_4");
+ ComboBox解开两音后的响应方式5_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式5_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式5_4.Font = null;
+ ComboBox解开两音后的响应方式5_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式5_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_4.Items3")
+ });
+ ComboBox解开两音后的响应方式5_4.Name = "ComboBox解开两音后的响应方式5_4";
+ Label71.AccessibleDescription = null;
+ Label71.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label71, "Label71");
+ Label71.Font = null;
+ Label71.Name = "Label71";
+ ComboBox两音的组合方式5_4.AccessibleDescription = null;
+ ComboBox两音的组合方式5_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式5_4, "ComboBox两音的组合方式5_4");
+ ComboBox两音的组合方式5_4.BackgroundImage = null;
+ ComboBox两音的组合方式5_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式5_4.Font = null;
+ ComboBox两音的组合方式5_4.FormattingEnabled = true;
+ ComboBox两音的组合方式5_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_4.Items15")
+ });
+ ComboBox两音的组合方式5_4.Name = "ComboBox两音的组合方式5_4";
+ Label72.AccessibleDescription = null;
+ Label72.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label72, "Label72");
+ Label72.Font = null;
+ Label72.Name = "Label72";
+ NumericUpDown5_D.AccessibleDescription = null;
+ NumericUpDown5_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown5_D, "NumericUpDown5_D");
+ NumericUpDown5_D.DecimalPlaces = 1;
+ NumericUpDown5_D.Font = null;
+ var numericUpDown5D1 = NumericUpDown5_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num66 = num1;
+ numericUpDown5D1.Increment = num66;
+ var numericUpDown5D2 = NumericUpDown5_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num67 = num1;
+ numericUpDown5D2.Maximum = num67;
+ var numericUpDown5D3 = NumericUpDown5_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num68 = num1;
+ numericUpDown5D3.Minimum = num68;
+ NumericUpDown5_D.Name = "NumericUpDown5_D";
+ var numericUpDown5D4 = NumericUpDown5_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num69 = num1;
+ numericUpDown5D4.Value = num69;
+ NumericUpDown5_C.AccessibleDescription = null;
+ NumericUpDown5_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown5_C, "NumericUpDown5_C");
+ NumericUpDown5_C.DecimalPlaces = 1;
+ NumericUpDown5_C.Font = null;
+ var numericUpDown5C1 = NumericUpDown5_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num70 = num1;
+ numericUpDown5C1.Increment = num70;
+ var numericUpDown5C2 = NumericUpDown5_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num71 = num1;
+ numericUpDown5C2.Maximum = num71;
+ var numericUpDown5C3 = NumericUpDown5_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num72 = num1;
+ numericUpDown5C3.Minimum = num72;
+ NumericUpDown5_C.Name = "NumericUpDown5_C";
+ var numericUpDown5C4 = NumericUpDown5_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num73 = num1;
+ numericUpDown5C4.Value = num73;
+ NumericUpDown5_B.AccessibleDescription = null;
+ NumericUpDown5_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown5_B, "NumericUpDown5_B");
+ NumericUpDown5_B.DecimalPlaces = 1;
+ NumericUpDown5_B.Font = null;
+ var numericUpDown5B1 = NumericUpDown5_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num74 = num1;
+ numericUpDown5B1.Increment = num74;
+ var numericUpDown5B2 = NumericUpDown5_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num75 = num1;
+ numericUpDown5B2.Maximum = num75;
+ var numericUpDown5B3 = NumericUpDown5_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num76 = num1;
+ numericUpDown5B3.Minimum = num76;
+ NumericUpDown5_B.Name = "NumericUpDown5_B";
+ var numericUpDown5B4 = NumericUpDown5_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num77 = num1;
+ numericUpDown5B4.Value = num77;
+ Label73.AccessibleDescription = null;
+ Label73.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label73, "Label73");
+ Label73.Font = null;
+ Label73.Name = "Label73";
+ NumericUpDown5_A.AccessibleDescription = null;
+ NumericUpDown5_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown5_A, "NumericUpDown5_A");
+ NumericUpDown5_A.DecimalPlaces = 1;
+ NumericUpDown5_A.Font = null;
+ var numericUpDown5A1 = NumericUpDown5_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num78 = num1;
+ numericUpDown5A1.Increment = num78;
+ var numericUpDown5A2 = NumericUpDown5_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num79 = num1;
+ numericUpDown5A2.Maximum = num79;
+ var numericUpDown5A3 = NumericUpDown5_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num80 = num1;
+ numericUpDown5A3.Minimum = num80;
+ NumericUpDown5_A.Name = "NumericUpDown5_A";
+ var numericUpDown5A4 = NumericUpDown5_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num81 = num1;
+ numericUpDown5A4.Value = num81;
+ Label83.AccessibleDescription = null;
+ Label83.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label83, "Label83");
+ Label83.Font = null;
+ Label83.Name = "Label83";
+ Label84.AccessibleDescription = null;
+ Label84.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label84, "Label84");
+ Label84.Font = null;
+ Label84.Name = "Label84";
+ Label85.AccessibleDescription = null;
+ Label85.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label85, "Label85");
+ Label85.Font = null;
+ Label85.Name = "Label85";
+ GroupBox18.AccessibleDescription = null;
+ GroupBox18.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox18, "GroupBox18");
+ GroupBox18.BackgroundImage = null;
+ GroupBox18.Controls.Add(ComboBox提示音5_3);
+ GroupBox18.Controls.Add(Label86);
+ GroupBox18.Controls.Add(ComboBox解开两音后的响应方式5_3);
+ GroupBox18.Controls.Add(Label87);
+ GroupBox18.Controls.Add(ComboBox两音的组合方式5_3);
+ GroupBox18.Controls.Add(Label88);
+ GroupBox18.Font = null;
+ GroupBox18.Name = "GroupBox18";
+ GroupBox18.TabStop = false;
+ ComboBox提示音5_3.AccessibleDescription = null;
+ ComboBox提示音5_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音5_3, "ComboBox提示音5_3");
+ ComboBox提示音5_3.BackgroundImage = null;
+ ComboBox提示音5_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音5_3.Font = null;
+ ComboBox提示音5_3.FormattingEnabled = true;
+ ComboBox提示音5_3.Name = "ComboBox提示音5_3";
+ Label86.AccessibleDescription = null;
+ Label86.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label86, "Label86");
+ Label86.Font = null;
+ Label86.Name = "Label86";
+ ComboBox解开两音后的响应方式5_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式5_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_3, "ComboBox解开两音后的响应方式5_3");
+ ComboBox解开两音后的响应方式5_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式5_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式5_3.Font = null;
+ ComboBox解开两音后的响应方式5_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式5_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_3.Items3")
+ });
+ ComboBox解开两音后的响应方式5_3.Name = "ComboBox解开两音后的响应方式5_3";
+ Label87.AccessibleDescription = null;
+ Label87.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label87, "Label87");
+ Label87.Font = null;
+ Label87.Name = "Label87";
+ ComboBox两音的组合方式5_3.AccessibleDescription = null;
+ ComboBox两音的组合方式5_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式5_3, "ComboBox两音的组合方式5_3");
+ ComboBox两音的组合方式5_3.BackgroundImage = null;
+ ComboBox两音的组合方式5_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式5_3.Font = null;
+ ComboBox两音的组合方式5_3.FormattingEnabled = true;
+ ComboBox两音的组合方式5_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_3.Items15")
+ });
+ ComboBox两音的组合方式5_3.Name = "ComboBox两音的组合方式5_3";
+ Label88.AccessibleDescription = null;
+ Label88.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label88, "Label88");
+ Label88.Font = null;
+ Label88.Name = "Label88";
+ GroupBox19.AccessibleDescription = null;
+ GroupBox19.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox19, "GroupBox19");
+ GroupBox19.BackgroundImage = null;
+ GroupBox19.Controls.Add(ComboBox提示音5_2);
+ GroupBox19.Controls.Add(Label89);
+ GroupBox19.Controls.Add(ComboBox解开两音后的响应方式5_2);
+ GroupBox19.Controls.Add(Label90);
+ GroupBox19.Controls.Add(ComboBox两音的组合方式5_2);
+ GroupBox19.Controls.Add(Label91);
+ GroupBox19.Font = null;
+ GroupBox19.Name = "GroupBox19";
+ GroupBox19.TabStop = false;
+ ComboBox提示音5_2.AccessibleDescription = null;
+ ComboBox提示音5_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音5_2, "ComboBox提示音5_2");
+ ComboBox提示音5_2.BackgroundImage = null;
+ ComboBox提示音5_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音5_2.Font = null;
+ ComboBox提示音5_2.FormattingEnabled = true;
+ ComboBox提示音5_2.Name = "ComboBox提示音5_2";
+ Label89.AccessibleDescription = null;
+ Label89.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label89, "Label89");
+ Label89.Font = null;
+ Label89.Name = "Label89";
+ ComboBox解开两音后的响应方式5_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式5_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_2, "ComboBox解开两音后的响应方式5_2");
+ ComboBox解开两音后的响应方式5_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式5_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式5_2.Font = null;
+ ComboBox解开两音后的响应方式5_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式5_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_2.Items3")
+ });
+ ComboBox解开两音后的响应方式5_2.Name = "ComboBox解开两音后的响应方式5_2";
+ Label90.AccessibleDescription = null;
+ Label90.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label90, "Label90");
+ Label90.Font = null;
+ Label90.Name = "Label90";
+ ComboBox两音的组合方式5_2.AccessibleDescription = null;
+ ComboBox两音的组合方式5_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式5_2, "ComboBox两音的组合方式5_2");
+ ComboBox两音的组合方式5_2.BackgroundImage = null;
+ ComboBox两音的组合方式5_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式5_2.Font = null;
+ ComboBox两音的组合方式5_2.FormattingEnabled = true;
+ ComboBox两音的组合方式5_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_2.Items15")
+ });
+ ComboBox两音的组合方式5_2.Name = "ComboBox两音的组合方式5_2";
+ Label91.AccessibleDescription = null;
+ Label91.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label91, "Label91");
+ Label91.Font = null;
+ Label91.Name = "Label91";
+ GroupBox20.AccessibleDescription = null;
+ GroupBox20.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox20, "GroupBox20");
+ GroupBox20.BackgroundImage = null;
+ GroupBox20.Controls.Add(ComboBox提示音5_1);
+ GroupBox20.Controls.Add(Label92);
+ GroupBox20.Controls.Add(ComboBox解开两音后的响应方式5_1);
+ GroupBox20.Controls.Add(Label93);
+ GroupBox20.Controls.Add(ComboBox两音的组合方式5_1);
+ GroupBox20.Controls.Add(Label94);
+ GroupBox20.Font = null;
+ GroupBox20.Name = "GroupBox20";
+ GroupBox20.TabStop = false;
+ ComboBox提示音5_1.AccessibleDescription = null;
+ ComboBox提示音5_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音5_1, "ComboBox提示音5_1");
+ ComboBox提示音5_1.BackgroundImage = null;
+ ComboBox提示音5_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音5_1.Font = null;
+ ComboBox提示音5_1.FormattingEnabled = true;
+ ComboBox提示音5_1.Name = "ComboBox提示音5_1";
+ Label92.AccessibleDescription = null;
+ Label92.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label92, "Label92");
+ Label92.Font = null;
+ Label92.Name = "Label92";
+ ComboBox解开两音后的响应方式5_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式5_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式5_1, "ComboBox解开两音后的响应方式5_1");
+ ComboBox解开两音后的响应方式5_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式5_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式5_1.Font = null;
+ ComboBox解开两音后的响应方式5_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式5_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式5_1.Items3")
+ });
+ ComboBox解开两音后的响应方式5_1.Name = "ComboBox解开两音后的响应方式5_1";
+ Label93.AccessibleDescription = null;
+ Label93.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label93, "Label93");
+ Label93.Font = null;
+ Label93.Name = "Label93";
+ ComboBox两音的组合方式5_1.AccessibleDescription = null;
+ ComboBox两音的组合方式5_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式5_1, "ComboBox两音的组合方式5_1");
+ ComboBox两音的组合方式5_1.BackgroundImage = null;
+ ComboBox两音的组合方式5_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式5_1.Font = null;
+ ComboBox两音的组合方式5_1.FormattingEnabled = true;
+ ComboBox两音的组合方式5_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式5_1.Items15")
+ });
+ ComboBox两音的组合方式5_1.Name = "ComboBox两音的组合方式5_1";
+ Label94.AccessibleDescription = null;
+ Label94.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label94, "Label94");
+ Label94.Font = null;
+ Label94.Name = "Label94";
+ TabPage8.AccessibleDescription = null;
+ TabPage8.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage8, "TabPage8");
+ TabPage8.BackgroundImage = null;
+ TabPage8.Controls.Add(GroupBox21);
+ TabPage8.Controls.Add(NumericUpDown6_D);
+ TabPage8.Controls.Add(NumericUpDown6_C);
+ TabPage8.Controls.Add(NumericUpDown6_B);
+ TabPage8.Controls.Add(Label98);
+ TabPage8.Controls.Add(NumericUpDown6_A);
+ TabPage8.Controls.Add(Label99);
+ TabPage8.Controls.Add(Label100);
+ TabPage8.Controls.Add(Label101);
+ TabPage8.Controls.Add(GroupBox22);
+ TabPage8.Controls.Add(GroupBox23);
+ TabPage8.Controls.Add(GroupBox24);
+ TabPage8.Font = null;
+ TabPage8.Name = "TabPage8";
+ TabPage8.UseVisualStyleBackColor = true;
+ GroupBox21.AccessibleDescription = null;
+ GroupBox21.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox21, "GroupBox21");
+ GroupBox21.BackgroundImage = null;
+ GroupBox21.Controls.Add(ComboBox提示音6_4);
+ GroupBox21.Controls.Add(Label95);
+ GroupBox21.Controls.Add(ComboBox解开两音后的响应方式6_4);
+ GroupBox21.Controls.Add(Label96);
+ GroupBox21.Controls.Add(ComboBox两音的组合方式6_4);
+ GroupBox21.Controls.Add(Label97);
+ GroupBox21.Font = null;
+ GroupBox21.Name = "GroupBox21";
+ GroupBox21.TabStop = false;
+ ComboBox提示音6_4.AccessibleDescription = null;
+ ComboBox提示音6_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音6_4, "ComboBox提示音6_4");
+ ComboBox提示音6_4.BackgroundImage = null;
+ ComboBox提示音6_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音6_4.Font = null;
+ ComboBox提示音6_4.FormattingEnabled = true;
+ ComboBox提示音6_4.Name = "ComboBox提示音6_4";
+ Label95.AccessibleDescription = null;
+ Label95.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label95, "Label95");
+ Label95.Font = null;
+ Label95.Name = "Label95";
+ ComboBox解开两音后的响应方式6_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式6_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_4, "ComboBox解开两音后的响应方式6_4");
+ ComboBox解开两音后的响应方式6_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式6_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式6_4.Font = null;
+ ComboBox解开两音后的响应方式6_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式6_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_4.Items3")
+ });
+ ComboBox解开两音后的响应方式6_4.Name = "ComboBox解开两音后的响应方式6_4";
+ Label96.AccessibleDescription = null;
+ Label96.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label96, "Label96");
+ Label96.Font = null;
+ Label96.Name = "Label96";
+ ComboBox两音的组合方式6_4.AccessibleDescription = null;
+ ComboBox两音的组合方式6_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式6_4, "ComboBox两音的组合方式6_4");
+ ComboBox两音的组合方式6_4.BackgroundImage = null;
+ ComboBox两音的组合方式6_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式6_4.Font = null;
+ ComboBox两音的组合方式6_4.FormattingEnabled = true;
+ ComboBox两音的组合方式6_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_4.Items15")
+ });
+ ComboBox两音的组合方式6_4.Name = "ComboBox两音的组合方式6_4";
+ Label97.AccessibleDescription = null;
+ Label97.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label97, "Label97");
+ Label97.Font = null;
+ Label97.Name = "Label97";
+ NumericUpDown6_D.AccessibleDescription = null;
+ NumericUpDown6_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown6_D, "NumericUpDown6_D");
+ NumericUpDown6_D.DecimalPlaces = 1;
+ NumericUpDown6_D.Font = null;
+ var numericUpDown6D1 = NumericUpDown6_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num82 = num1;
+ numericUpDown6D1.Increment = num82;
+ var numericUpDown6D2 = NumericUpDown6_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num83 = num1;
+ numericUpDown6D2.Maximum = num83;
+ var numericUpDown6D3 = NumericUpDown6_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num84 = num1;
+ numericUpDown6D3.Minimum = num84;
+ NumericUpDown6_D.Name = "NumericUpDown6_D";
+ var numericUpDown6D4 = NumericUpDown6_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num85 = num1;
+ numericUpDown6D4.Value = num85;
+ NumericUpDown6_C.AccessibleDescription = null;
+ NumericUpDown6_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown6_C, "NumericUpDown6_C");
+ NumericUpDown6_C.DecimalPlaces = 1;
+ NumericUpDown6_C.Font = null;
+ var numericUpDown6C1 = NumericUpDown6_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num86 = num1;
+ numericUpDown6C1.Increment = num86;
+ var numericUpDown6C2 = NumericUpDown6_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num87 = num1;
+ numericUpDown6C2.Maximum = num87;
+ var numericUpDown6C3 = NumericUpDown6_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num88 = num1;
+ numericUpDown6C3.Minimum = num88;
+ NumericUpDown6_C.Name = "NumericUpDown6_C";
+ var numericUpDown6C4 = NumericUpDown6_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num89 = num1;
+ numericUpDown6C4.Value = num89;
+ NumericUpDown6_B.AccessibleDescription = null;
+ NumericUpDown6_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown6_B, "NumericUpDown6_B");
+ NumericUpDown6_B.DecimalPlaces = 1;
+ NumericUpDown6_B.Font = null;
+ var numericUpDown6B1 = NumericUpDown6_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num90 = num1;
+ numericUpDown6B1.Increment = num90;
+ var numericUpDown6B2 = NumericUpDown6_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num91 = num1;
+ numericUpDown6B2.Maximum = num91;
+ var numericUpDown6B3 = NumericUpDown6_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num92 = num1;
+ numericUpDown6B3.Minimum = num92;
+ NumericUpDown6_B.Name = "NumericUpDown6_B";
+ var numericUpDown6B4 = NumericUpDown6_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num93 = num1;
+ numericUpDown6B4.Value = num93;
+ Label98.AccessibleDescription = null;
+ Label98.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label98, "Label98");
+ Label98.Font = null;
+ Label98.Name = "Label98";
+ NumericUpDown6_A.AccessibleDescription = null;
+ NumericUpDown6_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown6_A, "NumericUpDown6_A");
+ NumericUpDown6_A.DecimalPlaces = 1;
+ NumericUpDown6_A.Font = null;
+ var numericUpDown6A1 = NumericUpDown6_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num94 = num1;
+ numericUpDown6A1.Increment = num94;
+ var numericUpDown6A2 = NumericUpDown6_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num95 = num1;
+ numericUpDown6A2.Maximum = num95;
+ var numericUpDown6A3 = NumericUpDown6_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num96 = num1;
+ numericUpDown6A3.Minimum = num96;
+ NumericUpDown6_A.Name = "NumericUpDown6_A";
+ var numericUpDown6A4 = NumericUpDown6_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num97 = num1;
+ numericUpDown6A4.Value = num97;
+ Label99.AccessibleDescription = null;
+ Label99.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label99, "Label99");
+ Label99.Font = null;
+ Label99.Name = "Label99";
+ Label100.AccessibleDescription = null;
+ Label100.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label100, "Label100");
+ Label100.Font = null;
+ Label100.Name = "Label100";
+ Label101.AccessibleDescription = null;
+ Label101.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label101, "Label101");
+ Label101.Font = null;
+ Label101.Name = "Label101";
+ GroupBox22.AccessibleDescription = null;
+ GroupBox22.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox22, "GroupBox22");
+ GroupBox22.BackgroundImage = null;
+ GroupBox22.Controls.Add(ComboBox提示音6_3);
+ GroupBox22.Controls.Add(Label102);
+ GroupBox22.Controls.Add(ComboBox解开两音后的响应方式6_3);
+ GroupBox22.Controls.Add(Label103);
+ GroupBox22.Controls.Add(ComboBox两音的组合方式6_3);
+ GroupBox22.Controls.Add(Label104);
+ GroupBox22.Font = null;
+ GroupBox22.Name = "GroupBox22";
+ GroupBox22.TabStop = false;
+ ComboBox提示音6_3.AccessibleDescription = null;
+ ComboBox提示音6_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音6_3, "ComboBox提示音6_3");
+ ComboBox提示音6_3.BackgroundImage = null;
+ ComboBox提示音6_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音6_3.Font = null;
+ ComboBox提示音6_3.FormattingEnabled = true;
+ ComboBox提示音6_3.Name = "ComboBox提示音6_3";
+ Label102.AccessibleDescription = null;
+ Label102.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label102, "Label102");
+ Label102.Font = null;
+ Label102.Name = "Label102";
+ ComboBox解开两音后的响应方式6_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式6_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_3, "ComboBox解开两音后的响应方式6_3");
+ ComboBox解开两音后的响应方式6_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式6_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式6_3.Font = null;
+ ComboBox解开两音后的响应方式6_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式6_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_3.Items3")
+ });
+ ComboBox解开两音后的响应方式6_3.Name = "ComboBox解开两音后的响应方式6_3";
+ Label103.AccessibleDescription = null;
+ Label103.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label103, "Label103");
+ Label103.Font = null;
+ Label103.Name = "Label103";
+ ComboBox两音的组合方式6_3.AccessibleDescription = null;
+ ComboBox两音的组合方式6_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式6_3, "ComboBox两音的组合方式6_3");
+ ComboBox两音的组合方式6_3.BackgroundImage = null;
+ ComboBox两音的组合方式6_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式6_3.Font = null;
+ ComboBox两音的组合方式6_3.FormattingEnabled = true;
+ ComboBox两音的组合方式6_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_3.Items15")
+ });
+ ComboBox两音的组合方式6_3.Name = "ComboBox两音的组合方式6_3";
+ Label104.AccessibleDescription = null;
+ Label104.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label104, "Label104");
+ Label104.Font = null;
+ Label104.Name = "Label104";
+ GroupBox23.AccessibleDescription = null;
+ GroupBox23.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox23, "GroupBox23");
+ GroupBox23.BackgroundImage = null;
+ GroupBox23.Controls.Add(ComboBox提示音6_2);
+ GroupBox23.Controls.Add(Label105);
+ GroupBox23.Controls.Add(ComboBox解开两音后的响应方式6_2);
+ GroupBox23.Controls.Add(Label106);
+ GroupBox23.Controls.Add(ComboBox两音的组合方式6_2);
+ GroupBox23.Controls.Add(Label107);
+ GroupBox23.Font = null;
+ GroupBox23.Name = "GroupBox23";
+ GroupBox23.TabStop = false;
+ ComboBox提示音6_2.AccessibleDescription = null;
+ ComboBox提示音6_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音6_2, "ComboBox提示音6_2");
+ ComboBox提示音6_2.BackgroundImage = null;
+ ComboBox提示音6_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音6_2.Font = null;
+ ComboBox提示音6_2.FormattingEnabled = true;
+ ComboBox提示音6_2.Name = "ComboBox提示音6_2";
+ Label105.AccessibleDescription = null;
+ Label105.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label105, "Label105");
+ Label105.Font = null;
+ Label105.Name = "Label105";
+ ComboBox解开两音后的响应方式6_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式6_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_2, "ComboBox解开两音后的响应方式6_2");
+ ComboBox解开两音后的响应方式6_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式6_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式6_2.Font = null;
+ ComboBox解开两音后的响应方式6_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式6_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_2.Items3")
+ });
+ ComboBox解开两音后的响应方式6_2.Name = "ComboBox解开两音后的响应方式6_2";
+ Label106.AccessibleDescription = null;
+ Label106.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label106, "Label106");
+ Label106.Font = null;
+ Label106.Name = "Label106";
+ ComboBox两音的组合方式6_2.AccessibleDescription = null;
+ ComboBox两音的组合方式6_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式6_2, "ComboBox两音的组合方式6_2");
+ ComboBox两音的组合方式6_2.BackgroundImage = null;
+ ComboBox两音的组合方式6_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式6_2.Font = null;
+ ComboBox两音的组合方式6_2.FormattingEnabled = true;
+ ComboBox两音的组合方式6_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_2.Items15")
+ });
+ ComboBox两音的组合方式6_2.Name = "ComboBox两音的组合方式6_2";
+ Label107.AccessibleDescription = null;
+ Label107.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label107, "Label107");
+ Label107.Font = null;
+ Label107.Name = "Label107";
+ GroupBox24.AccessibleDescription = null;
+ GroupBox24.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox24, "GroupBox24");
+ GroupBox24.BackgroundImage = null;
+ GroupBox24.Controls.Add(ComboBox提示音6_1);
+ GroupBox24.Controls.Add(Label108);
+ GroupBox24.Controls.Add(ComboBox解开两音后的响应方式6_1);
+ GroupBox24.Controls.Add(Label109);
+ GroupBox24.Controls.Add(ComboBox两音的组合方式6_1);
+ GroupBox24.Controls.Add(Label110);
+ GroupBox24.Font = null;
+ GroupBox24.Name = "GroupBox24";
+ GroupBox24.TabStop = false;
+ ComboBox提示音6_1.AccessibleDescription = null;
+ ComboBox提示音6_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音6_1, "ComboBox提示音6_1");
+ ComboBox提示音6_1.BackgroundImage = null;
+ ComboBox提示音6_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音6_1.Font = null;
+ ComboBox提示音6_1.FormattingEnabled = true;
+ ComboBox提示音6_1.Name = "ComboBox提示音6_1";
+ Label108.AccessibleDescription = null;
+ Label108.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label108, "Label108");
+ Label108.Font = null;
+ Label108.Name = "Label108";
+ ComboBox解开两音后的响应方式6_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式6_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式6_1, "ComboBox解开两音后的响应方式6_1");
+ ComboBox解开两音后的响应方式6_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式6_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式6_1.Font = null;
+ ComboBox解开两音后的响应方式6_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式6_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式6_1.Items3")
+ });
+ ComboBox解开两音后的响应方式6_1.Name = "ComboBox解开两音后的响应方式6_1";
+ Label109.AccessibleDescription = null;
+ Label109.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label109, "Label109");
+ Label109.Font = null;
+ Label109.Name = "Label109";
+ ComboBox两音的组合方式6_1.AccessibleDescription = null;
+ ComboBox两音的组合方式6_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式6_1, "ComboBox两音的组合方式6_1");
+ ComboBox两音的组合方式6_1.BackgroundImage = null;
+ ComboBox两音的组合方式6_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式6_1.Font = null;
+ ComboBox两音的组合方式6_1.FormattingEnabled = true;
+ ComboBox两音的组合方式6_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式6_1.Items15")
+ });
+ ComboBox两音的组合方式6_1.Name = "ComboBox两音的组合方式6_1";
+ Label110.AccessibleDescription = null;
+ Label110.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label110, "Label110");
+ Label110.Font = null;
+ Label110.Name = "Label110";
+ TabPage9.AccessibleDescription = null;
+ TabPage9.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage9, "TabPage9");
+ TabPage9.BackgroundImage = null;
+ TabPage9.Controls.Add(GroupBox25);
+ TabPage9.Controls.Add(NumericUpDown7_D);
+ TabPage9.Controls.Add(NumericUpDown7_C);
+ TabPage9.Controls.Add(NumericUpDown7_B);
+ TabPage9.Controls.Add(Label114);
+ TabPage9.Controls.Add(NumericUpDown7_A);
+ TabPage9.Controls.Add(Label115);
+ TabPage9.Controls.Add(Label116);
+ TabPage9.Controls.Add(Label117);
+ TabPage9.Controls.Add(GroupBox26);
+ TabPage9.Controls.Add(GroupBox27);
+ TabPage9.Controls.Add(GroupBox28);
+ TabPage9.Font = null;
+ TabPage9.Name = "TabPage9";
+ TabPage9.UseVisualStyleBackColor = true;
+ GroupBox25.AccessibleDescription = null;
+ GroupBox25.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox25, "GroupBox25");
+ GroupBox25.BackgroundImage = null;
+ GroupBox25.Controls.Add(ComboBox提示音7_4);
+ GroupBox25.Controls.Add(Label111);
+ GroupBox25.Controls.Add(ComboBox解开两音后的响应方式7_4);
+ GroupBox25.Controls.Add(Label112);
+ GroupBox25.Controls.Add(ComboBox两音的组合方式7_4);
+ GroupBox25.Controls.Add(Label113);
+ GroupBox25.Font = null;
+ GroupBox25.Name = "GroupBox25";
+ GroupBox25.TabStop = false;
+ ComboBox提示音7_4.AccessibleDescription = null;
+ ComboBox提示音7_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音7_4, "ComboBox提示音7_4");
+ ComboBox提示音7_4.BackgroundImage = null;
+ ComboBox提示音7_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音7_4.Font = null;
+ ComboBox提示音7_4.FormattingEnabled = true;
+ ComboBox提示音7_4.Name = "ComboBox提示音7_4";
+ Label111.AccessibleDescription = null;
+ Label111.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label111, "Label111");
+ Label111.Font = null;
+ Label111.Name = "Label111";
+ ComboBox解开两音后的响应方式7_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式7_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_4, "ComboBox解开两音后的响应方式7_4");
+ ComboBox解开两音后的响应方式7_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式7_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式7_4.Font = null;
+ ComboBox解开两音后的响应方式7_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式7_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_4.Items3")
+ });
+ ComboBox解开两音后的响应方式7_4.Name = "ComboBox解开两音后的响应方式7_4";
+ Label112.AccessibleDescription = null;
+ Label112.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label112, "Label112");
+ Label112.Font = null;
+ Label112.Name = "Label112";
+ ComboBox两音的组合方式7_4.AccessibleDescription = null;
+ ComboBox两音的组合方式7_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式7_4, "ComboBox两音的组合方式7_4");
+ ComboBox两音的组合方式7_4.BackgroundImage = null;
+ ComboBox两音的组合方式7_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式7_4.Font = null;
+ ComboBox两音的组合方式7_4.FormattingEnabled = true;
+ ComboBox两音的组合方式7_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_4.Items15")
+ });
+ ComboBox两音的组合方式7_4.Name = "ComboBox两音的组合方式7_4";
+ Label113.AccessibleDescription = null;
+ Label113.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label113, "Label113");
+ Label113.Font = null;
+ Label113.Name = "Label113";
+ NumericUpDown7_D.AccessibleDescription = null;
+ NumericUpDown7_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown7_D, "NumericUpDown7_D");
+ NumericUpDown7_D.DecimalPlaces = 1;
+ NumericUpDown7_D.Font = null;
+ var numericUpDown7D1 = NumericUpDown7_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num98 = num1;
+ numericUpDown7D1.Increment = num98;
+ var numericUpDown7D2 = NumericUpDown7_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num99 = num1;
+ numericUpDown7D2.Maximum = num99;
+ var numericUpDown7D3 = NumericUpDown7_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num100 = num1;
+ numericUpDown7D3.Minimum = num100;
+ NumericUpDown7_D.Name = "NumericUpDown7_D";
+ var numericUpDown7D4 = NumericUpDown7_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num101 = num1;
+ numericUpDown7D4.Value = num101;
+ NumericUpDown7_C.AccessibleDescription = null;
+ NumericUpDown7_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown7_C, "NumericUpDown7_C");
+ NumericUpDown7_C.DecimalPlaces = 1;
+ NumericUpDown7_C.Font = null;
+ var numericUpDown7C1 = NumericUpDown7_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num102 = num1;
+ numericUpDown7C1.Increment = num102;
+ var numericUpDown7C2 = NumericUpDown7_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num103 = num1;
+ numericUpDown7C2.Maximum = num103;
+ var numericUpDown7C3 = NumericUpDown7_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num104 = num1;
+ numericUpDown7C3.Minimum = num104;
+ NumericUpDown7_C.Name = "NumericUpDown7_C";
+ var numericUpDown7C4 = NumericUpDown7_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num105 = num1;
+ numericUpDown7C4.Value = num105;
+ NumericUpDown7_B.AccessibleDescription = null;
+ NumericUpDown7_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown7_B, "NumericUpDown7_B");
+ NumericUpDown7_B.DecimalPlaces = 1;
+ NumericUpDown7_B.Font = null;
+ var numericUpDown7B1 = NumericUpDown7_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num106 = num1;
+ numericUpDown7B1.Increment = num106;
+ var numericUpDown7B2 = NumericUpDown7_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num107 = num1;
+ numericUpDown7B2.Maximum = num107;
+ var numericUpDown7B3 = NumericUpDown7_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num108 = num1;
+ numericUpDown7B3.Minimum = num108;
+ NumericUpDown7_B.Name = "NumericUpDown7_B";
+ var numericUpDown7B4 = NumericUpDown7_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num109 = num1;
+ numericUpDown7B4.Value = num109;
+ Label114.AccessibleDescription = null;
+ Label114.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label114, "Label114");
+ Label114.Font = null;
+ Label114.Name = "Label114";
+ NumericUpDown7_A.AccessibleDescription = null;
+ NumericUpDown7_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown7_A, "NumericUpDown7_A");
+ NumericUpDown7_A.DecimalPlaces = 1;
+ NumericUpDown7_A.Font = null;
+ var numericUpDown7A1 = NumericUpDown7_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num110 = num1;
+ numericUpDown7A1.Increment = num110;
+ var numericUpDown7A2 = NumericUpDown7_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num111 = num1;
+ numericUpDown7A2.Maximum = num111;
+ var numericUpDown7A3 = NumericUpDown7_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num112 = num1;
+ numericUpDown7A3.Minimum = num112;
+ NumericUpDown7_A.Name = "NumericUpDown7_A";
+ var numericUpDown7A4 = NumericUpDown7_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num113 = num1;
+ numericUpDown7A4.Value = num113;
+ Label115.AccessibleDescription = null;
+ Label115.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label115, "Label115");
+ Label115.Font = null;
+ Label115.Name = "Label115";
+ Label116.AccessibleDescription = null;
+ Label116.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label116, "Label116");
+ Label116.Font = null;
+ Label116.Name = "Label116";
+ Label117.AccessibleDescription = null;
+ Label117.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label117, "Label117");
+ Label117.Font = null;
+ Label117.Name = "Label117";
+ GroupBox26.AccessibleDescription = null;
+ GroupBox26.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox26, "GroupBox26");
+ GroupBox26.BackgroundImage = null;
+ GroupBox26.Controls.Add(ComboBox提示音7_3);
+ GroupBox26.Controls.Add(Label118);
+ GroupBox26.Controls.Add(ComboBox解开两音后的响应方式7_3);
+ GroupBox26.Controls.Add(Label119);
+ GroupBox26.Controls.Add(ComboBox两音的组合方式7_3);
+ GroupBox26.Controls.Add(Label120);
+ GroupBox26.Font = null;
+ GroupBox26.Name = "GroupBox26";
+ GroupBox26.TabStop = false;
+ ComboBox提示音7_3.AccessibleDescription = null;
+ ComboBox提示音7_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音7_3, "ComboBox提示音7_3");
+ ComboBox提示音7_3.BackgroundImage = null;
+ ComboBox提示音7_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音7_3.Font = null;
+ ComboBox提示音7_3.FormattingEnabled = true;
+ ComboBox提示音7_3.Name = "ComboBox提示音7_3";
+ Label118.AccessibleDescription = null;
+ Label118.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label118, "Label118");
+ Label118.Font = null;
+ Label118.Name = "Label118";
+ ComboBox解开两音后的响应方式7_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式7_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_3, "ComboBox解开两音后的响应方式7_3");
+ ComboBox解开两音后的响应方式7_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式7_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式7_3.Font = null;
+ ComboBox解开两音后的响应方式7_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式7_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_3.Items3")
+ });
+ ComboBox解开两音后的响应方式7_3.Name = "ComboBox解开两音后的响应方式7_3";
+ Label119.AccessibleDescription = null;
+ Label119.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label119, "Label119");
+ Label119.Font = null;
+ Label119.Name = "Label119";
+ ComboBox两音的组合方式7_3.AccessibleDescription = null;
+ ComboBox两音的组合方式7_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式7_3, "ComboBox两音的组合方式7_3");
+ ComboBox两音的组合方式7_3.BackgroundImage = null;
+ ComboBox两音的组合方式7_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式7_3.Font = null;
+ ComboBox两音的组合方式7_3.FormattingEnabled = true;
+ ComboBox两音的组合方式7_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_3.Items15")
+ });
+ ComboBox两音的组合方式7_3.Name = "ComboBox两音的组合方式7_3";
+ Label120.AccessibleDescription = null;
+ Label120.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label120, "Label120");
+ Label120.Font = null;
+ Label120.Name = "Label120";
+ GroupBox27.AccessibleDescription = null;
+ GroupBox27.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox27, "GroupBox27");
+ GroupBox27.BackgroundImage = null;
+ GroupBox27.Controls.Add(ComboBox提示音7_2);
+ GroupBox27.Controls.Add(Label121);
+ GroupBox27.Controls.Add(ComboBox解开两音后的响应方式7_2);
+ GroupBox27.Controls.Add(Label122);
+ GroupBox27.Controls.Add(ComboBox两音的组合方式7_2);
+ GroupBox27.Controls.Add(Label123);
+ GroupBox27.Font = null;
+ GroupBox27.Name = "GroupBox27";
+ GroupBox27.TabStop = false;
+ ComboBox提示音7_2.AccessibleDescription = null;
+ ComboBox提示音7_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音7_2, "ComboBox提示音7_2");
+ ComboBox提示音7_2.BackgroundImage = null;
+ ComboBox提示音7_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音7_2.Font = null;
+ ComboBox提示音7_2.FormattingEnabled = true;
+ ComboBox提示音7_2.Name = "ComboBox提示音7_2";
+ Label121.AccessibleDescription = null;
+ Label121.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label121, "Label121");
+ Label121.Font = null;
+ Label121.Name = "Label121";
+ ComboBox解开两音后的响应方式7_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式7_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_2, "ComboBox解开两音后的响应方式7_2");
+ ComboBox解开两音后的响应方式7_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式7_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式7_2.Font = null;
+ ComboBox解开两音后的响应方式7_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式7_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_2.Items3")
+ });
+ ComboBox解开两音后的响应方式7_2.Name = "ComboBox解开两音后的响应方式7_2";
+ Label122.AccessibleDescription = null;
+ Label122.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label122, "Label122");
+ Label122.Font = null;
+ Label122.Name = "Label122";
+ ComboBox两音的组合方式7_2.AccessibleDescription = null;
+ ComboBox两音的组合方式7_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式7_2, "ComboBox两音的组合方式7_2");
+ ComboBox两音的组合方式7_2.BackgroundImage = null;
+ ComboBox两音的组合方式7_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式7_2.Font = null;
+ ComboBox两音的组合方式7_2.FormattingEnabled = true;
+ ComboBox两音的组合方式7_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_2.Items15")
+ });
+ ComboBox两音的组合方式7_2.Name = "ComboBox两音的组合方式7_2";
+ Label123.AccessibleDescription = null;
+ Label123.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label123, "Label123");
+ Label123.Font = null;
+ Label123.Name = "Label123";
+ GroupBox28.AccessibleDescription = null;
+ GroupBox28.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox28, "GroupBox28");
+ GroupBox28.BackgroundImage = null;
+ GroupBox28.Controls.Add(ComboBox提示音7_1);
+ GroupBox28.Controls.Add(Label124);
+ GroupBox28.Controls.Add(ComboBox解开两音后的响应方式7_1);
+ GroupBox28.Controls.Add(Label125);
+ GroupBox28.Controls.Add(ComboBox两音的组合方式7_1);
+ GroupBox28.Controls.Add(Label126);
+ GroupBox28.Font = null;
+ GroupBox28.Name = "GroupBox28";
+ GroupBox28.TabStop = false;
+ ComboBox提示音7_1.AccessibleDescription = null;
+ ComboBox提示音7_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音7_1, "ComboBox提示音7_1");
+ ComboBox提示音7_1.BackgroundImage = null;
+ ComboBox提示音7_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音7_1.Font = null;
+ ComboBox提示音7_1.FormattingEnabled = true;
+ ComboBox提示音7_1.Name = "ComboBox提示音7_1";
+ Label124.AccessibleDescription = null;
+ Label124.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label124, "Label124");
+ Label124.Font = null;
+ Label124.Name = "Label124";
+ ComboBox解开两音后的响应方式7_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式7_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式7_1, "ComboBox解开两音后的响应方式7_1");
+ ComboBox解开两音后的响应方式7_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式7_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式7_1.Font = null;
+ ComboBox解开两音后的响应方式7_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式7_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式7_1.Items3")
+ });
+ ComboBox解开两音后的响应方式7_1.Name = "ComboBox解开两音后的响应方式7_1";
+ Label125.AccessibleDescription = null;
+ Label125.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label125, "Label125");
+ Label125.Font = null;
+ Label125.Name = "Label125";
+ ComboBox两音的组合方式7_1.AccessibleDescription = null;
+ ComboBox两音的组合方式7_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式7_1, "ComboBox两音的组合方式7_1");
+ ComboBox两音的组合方式7_1.BackgroundImage = null;
+ ComboBox两音的组合方式7_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式7_1.Font = null;
+ ComboBox两音的组合方式7_1.FormattingEnabled = true;
+ ComboBox两音的组合方式7_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式7_1.Items15")
+ });
+ ComboBox两音的组合方式7_1.Name = "ComboBox两音的组合方式7_1";
+ Label126.AccessibleDescription = null;
+ Label126.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label126, "Label126");
+ Label126.Font = null;
+ Label126.Name = "Label126";
+ TabPage10.AccessibleDescription = null;
+ TabPage10.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage10, "TabPage10");
+ TabPage10.BackgroundImage = null;
+ TabPage10.Controls.Add(GroupBox29);
+ TabPage10.Controls.Add(NumericUpDown8_D);
+ TabPage10.Controls.Add(NumericUpDown8_C);
+ TabPage10.Controls.Add(NumericUpDown8_B);
+ TabPage10.Controls.Add(Label130);
+ TabPage10.Controls.Add(NumericUpDown8_A);
+ TabPage10.Controls.Add(Label131);
+ TabPage10.Controls.Add(Label132);
+ TabPage10.Controls.Add(Label133);
+ TabPage10.Controls.Add(GroupBox30);
+ TabPage10.Controls.Add(GroupBox31);
+ TabPage10.Controls.Add(GroupBox32);
+ TabPage10.Font = null;
+ TabPage10.Name = "TabPage10";
+ TabPage10.UseVisualStyleBackColor = true;
+ GroupBox29.AccessibleDescription = null;
+ GroupBox29.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox29, "GroupBox29");
+ GroupBox29.BackgroundImage = null;
+ GroupBox29.Controls.Add(ComboBox提示音8_4);
+ GroupBox29.Controls.Add(Label127);
+ GroupBox29.Controls.Add(ComboBox解开两音后的响应方式8_4);
+ GroupBox29.Controls.Add(Label128);
+ GroupBox29.Controls.Add(ComboBox两音的组合方式8_4);
+ GroupBox29.Controls.Add(Label129);
+ GroupBox29.Font = null;
+ GroupBox29.Name = "GroupBox29";
+ GroupBox29.TabStop = false;
+ ComboBox提示音8_4.AccessibleDescription = null;
+ ComboBox提示音8_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音8_4, "ComboBox提示音8_4");
+ ComboBox提示音8_4.BackgroundImage = null;
+ ComboBox提示音8_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音8_4.Font = null;
+ ComboBox提示音8_4.FormattingEnabled = true;
+ ComboBox提示音8_4.Name = "ComboBox提示音8_4";
+ Label127.AccessibleDescription = null;
+ Label127.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label127, "Label127");
+ Label127.Font = null;
+ Label127.Name = "Label127";
+ ComboBox解开两音后的响应方式8_4.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式8_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_4, "ComboBox解开两音后的响应方式8_4");
+ ComboBox解开两音后的响应方式8_4.BackgroundImage = null;
+ ComboBox解开两音后的响应方式8_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式8_4.Font = null;
+ ComboBox解开两音后的响应方式8_4.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式8_4.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_4.Items3")
+ });
+ ComboBox解开两音后的响应方式8_4.Name = "ComboBox解开两音后的响应方式8_4";
+ Label128.AccessibleDescription = null;
+ Label128.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label128, "Label128");
+ Label128.Font = null;
+ Label128.Name = "Label128";
+ ComboBox两音的组合方式8_4.AccessibleDescription = null;
+ ComboBox两音的组合方式8_4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式8_4, "ComboBox两音的组合方式8_4");
+ ComboBox两音的组合方式8_4.BackgroundImage = null;
+ ComboBox两音的组合方式8_4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式8_4.Font = null;
+ ComboBox两音的组合方式8_4.FormattingEnabled = true;
+ ComboBox两音的组合方式8_4.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_4.Items15")
+ });
+ ComboBox两音的组合方式8_4.Name = "ComboBox两音的组合方式8_4";
+ Label129.AccessibleDescription = null;
+ Label129.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label129, "Label129");
+ Label129.Font = null;
+ Label129.Name = "Label129";
+ NumericUpDown8_D.AccessibleDescription = null;
+ NumericUpDown8_D.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown8_D, "NumericUpDown8_D");
+ NumericUpDown8_D.DecimalPlaces = 1;
+ NumericUpDown8_D.Font = null;
+ var numericUpDown8D1 = NumericUpDown8_D;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num114 = num1;
+ numericUpDown8D1.Increment = num114;
+ var numericUpDown8D2 = NumericUpDown8_D;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num115 = num1;
+ numericUpDown8D2.Maximum = num115;
+ var numericUpDown8D3 = NumericUpDown8_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num116 = num1;
+ numericUpDown8D3.Minimum = num116;
+ NumericUpDown8_D.Name = "NumericUpDown8_D";
+ var numericUpDown8D4 = NumericUpDown8_D;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num117 = num1;
+ numericUpDown8D4.Value = num117;
+ NumericUpDown8_C.AccessibleDescription = null;
+ NumericUpDown8_C.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown8_C, "NumericUpDown8_C");
+ NumericUpDown8_C.DecimalPlaces = 1;
+ NumericUpDown8_C.Font = null;
+ var numericUpDown8C1 = NumericUpDown8_C;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num118 = num1;
+ numericUpDown8C1.Increment = num118;
+ var numericUpDown8C2 = NumericUpDown8_C;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num119 = num1;
+ numericUpDown8C2.Maximum = num119;
+ var numericUpDown8C3 = NumericUpDown8_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num120 = num1;
+ numericUpDown8C3.Minimum = num120;
+ NumericUpDown8_C.Name = "NumericUpDown8_C";
+ var numericUpDown8C4 = NumericUpDown8_C;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num121 = num1;
+ numericUpDown8C4.Value = num121;
+ NumericUpDown8_B.AccessibleDescription = null;
+ NumericUpDown8_B.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown8_B, "NumericUpDown8_B");
+ NumericUpDown8_B.DecimalPlaces = 1;
+ NumericUpDown8_B.Font = null;
+ var numericUpDown8B1 = NumericUpDown8_B;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num122 = num1;
+ numericUpDown8B1.Increment = num122;
+ var numericUpDown8B2 = NumericUpDown8_B;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num123 = num1;
+ numericUpDown8B2.Maximum = num123;
+ var numericUpDown8B3 = NumericUpDown8_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num124 = num1;
+ numericUpDown8B3.Minimum = num124;
+ NumericUpDown8_B.Name = "NumericUpDown8_B";
+ var numericUpDown8B4 = NumericUpDown8_B;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num125 = num1;
+ numericUpDown8B4.Value = num125;
+ Label130.AccessibleDescription = null;
+ Label130.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label130, "Label130");
+ Label130.Font = null;
+ Label130.Name = "Label130";
+ NumericUpDown8_A.AccessibleDescription = null;
+ NumericUpDown8_A.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown8_A, "NumericUpDown8_A");
+ NumericUpDown8_A.DecimalPlaces = 1;
+ NumericUpDown8_A.Font = null;
+ var numericUpDown8A1 = NumericUpDown8_A;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num126 = num1;
+ numericUpDown8A1.Increment = num126;
+ var numericUpDown8A2 = NumericUpDown8_A;
+ num1 = new Decimal(new int[4] {3200, 0, 0, 0});
+ var num127 = num1;
+ numericUpDown8A2.Maximum = num127;
+ var numericUpDown8A3 = NumericUpDown8_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num128 = num1;
+ numericUpDown8A3.Minimum = num128;
+ NumericUpDown8_A.Name = "NumericUpDown8_A";
+ var numericUpDown8A4 = NumericUpDown8_A;
+ num1 = new Decimal(new int[4] {2885, 0, 0, 65536});
+ var num129 = num1;
+ numericUpDown8A4.Value = num129;
+ Label131.AccessibleDescription = null;
+ Label131.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label131, "Label131");
+ Label131.Font = null;
+ Label131.Name = "Label131";
+ Label132.AccessibleDescription = null;
+ Label132.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label132, "Label132");
+ Label132.Font = null;
+ Label132.Name = "Label132";
+ Label133.AccessibleDescription = null;
+ Label133.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label133, "Label133");
+ Label133.Font = null;
+ Label133.Name = "Label133";
+ GroupBox30.AccessibleDescription = null;
+ GroupBox30.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox30, "GroupBox30");
+ GroupBox30.BackgroundImage = null;
+ GroupBox30.Controls.Add(ComboBox提示音8_3);
+ GroupBox30.Controls.Add(Label134);
+ GroupBox30.Controls.Add(ComboBox解开两音后的响应方式8_3);
+ GroupBox30.Controls.Add(Label135);
+ GroupBox30.Controls.Add(ComboBox两音的组合方式8_3);
+ GroupBox30.Controls.Add(Label136);
+ GroupBox30.Font = null;
+ GroupBox30.Name = "GroupBox30";
+ GroupBox30.TabStop = false;
+ ComboBox提示音8_3.AccessibleDescription = null;
+ ComboBox提示音8_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音8_3, "ComboBox提示音8_3");
+ ComboBox提示音8_3.BackgroundImage = null;
+ ComboBox提示音8_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音8_3.Font = null;
+ ComboBox提示音8_3.FormattingEnabled = true;
+ ComboBox提示音8_3.Name = "ComboBox提示音8_3";
+ Label134.AccessibleDescription = null;
+ Label134.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label134, "Label134");
+ Label134.Font = null;
+ Label134.Name = "Label134";
+ ComboBox解开两音后的响应方式8_3.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式8_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_3, "ComboBox解开两音后的响应方式8_3");
+ ComboBox解开两音后的响应方式8_3.BackgroundImage = null;
+ ComboBox解开两音后的响应方式8_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式8_3.Font = null;
+ ComboBox解开两音后的响应方式8_3.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式8_3.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_3.Items3")
+ });
+ ComboBox解开两音后的响应方式8_3.Name = "ComboBox解开两音后的响应方式8_3";
+ Label135.AccessibleDescription = null;
+ Label135.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label135, "Label135");
+ Label135.Font = null;
+ Label135.Name = "Label135";
+ ComboBox两音的组合方式8_3.AccessibleDescription = null;
+ ComboBox两音的组合方式8_3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式8_3, "ComboBox两音的组合方式8_3");
+ ComboBox两音的组合方式8_3.BackgroundImage = null;
+ ComboBox两音的组合方式8_3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式8_3.Font = null;
+ ComboBox两音的组合方式8_3.FormattingEnabled = true;
+ ComboBox两音的组合方式8_3.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_3.Items15")
+ });
+ ComboBox两音的组合方式8_3.Name = "ComboBox两音的组合方式8_3";
+ Label136.AccessibleDescription = null;
+ Label136.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label136, "Label136");
+ Label136.Font = null;
+ Label136.Name = "Label136";
+ GroupBox31.AccessibleDescription = null;
+ GroupBox31.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox31, "GroupBox31");
+ GroupBox31.BackgroundImage = null;
+ GroupBox31.Controls.Add(ComboBox提示音8_2);
+ GroupBox31.Controls.Add(Label137);
+ GroupBox31.Controls.Add(ComboBox解开两音后的响应方式8_2);
+ GroupBox31.Controls.Add(Label138);
+ GroupBox31.Controls.Add(ComboBox两音的组合方式8_2);
+ GroupBox31.Controls.Add(Label139);
+ GroupBox31.Font = null;
+ GroupBox31.Name = "GroupBox31";
+ GroupBox31.TabStop = false;
+ ComboBox提示音8_2.AccessibleDescription = null;
+ ComboBox提示音8_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音8_2, "ComboBox提示音8_2");
+ ComboBox提示音8_2.BackgroundImage = null;
+ ComboBox提示音8_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音8_2.Font = null;
+ ComboBox提示音8_2.FormattingEnabled = true;
+ ComboBox提示音8_2.Name = "ComboBox提示音8_2";
+ Label137.AccessibleDescription = null;
+ Label137.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label137, "Label137");
+ Label137.Font = null;
+ Label137.Name = "Label137";
+ ComboBox解开两音后的响应方式8_2.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式8_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_2, "ComboBox解开两音后的响应方式8_2");
+ ComboBox解开两音后的响应方式8_2.BackgroundImage = null;
+ ComboBox解开两音后的响应方式8_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式8_2.Font = null;
+ ComboBox解开两音后的响应方式8_2.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式8_2.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_2.Items3")
+ });
+ ComboBox解开两音后的响应方式8_2.Name = "ComboBox解开两音后的响应方式8_2";
+ Label138.AccessibleDescription = null;
+ Label138.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label138, "Label138");
+ Label138.Font = null;
+ Label138.Name = "Label138";
+ ComboBox两音的组合方式8_2.AccessibleDescription = null;
+ ComboBox两音的组合方式8_2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式8_2, "ComboBox两音的组合方式8_2");
+ ComboBox两音的组合方式8_2.BackgroundImage = null;
+ ComboBox两音的组合方式8_2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式8_2.Font = null;
+ ComboBox两音的组合方式8_2.FormattingEnabled = true;
+ ComboBox两音的组合方式8_2.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_2.Items15")
+ });
+ ComboBox两音的组合方式8_2.Name = "ComboBox两音的组合方式8_2";
+ Label139.AccessibleDescription = null;
+ Label139.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label139, "Label139");
+ Label139.Font = null;
+ Label139.Name = "Label139";
+ GroupBox32.AccessibleDescription = null;
+ GroupBox32.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox32, "GroupBox32");
+ GroupBox32.BackgroundImage = null;
+ GroupBox32.Controls.Add(ComboBox提示音8_1);
+ GroupBox32.Controls.Add(Label140);
+ GroupBox32.Controls.Add(ComboBox解开两音后的响应方式8_1);
+ GroupBox32.Controls.Add(Label141);
+ GroupBox32.Controls.Add(ComboBox两音的组合方式8_1);
+ GroupBox32.Controls.Add(Label142);
+ GroupBox32.Font = null;
+ GroupBox32.Name = "GroupBox32";
+ GroupBox32.TabStop = false;
+ ComboBox提示音8_1.AccessibleDescription = null;
+ ComboBox提示音8_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox提示音8_1, "ComboBox提示音8_1");
+ ComboBox提示音8_1.BackgroundImage = null;
+ ComboBox提示音8_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox提示音8_1.Font = null;
+ ComboBox提示音8_1.FormattingEnabled = true;
+ ComboBox提示音8_1.Name = "ComboBox提示音8_1";
+ Label140.AccessibleDescription = null;
+ Label140.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label140, "Label140");
+ Label140.Font = null;
+ Label140.Name = "Label140";
+ ComboBox解开两音后的响应方式8_1.AccessibleDescription = null;
+ ComboBox解开两音后的响应方式8_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox解开两音后的响应方式8_1, "ComboBox解开两音后的响应方式8_1");
+ ComboBox解开两音后的响应方式8_1.BackgroundImage = null;
+ ComboBox解开两音后的响应方式8_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox解开两音后的响应方式8_1.Font = null;
+ ComboBox解开两音后的响应方式8_1.FormattingEnabled = true;
+ ComboBox解开两音后的响应方式8_1.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items1"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items2"),
+ componentResourceManager.GetString("ComboBox解开两音后的响应方式8_1.Items3")
+ });
+ ComboBox解开两音后的响应方式8_1.Name = "ComboBox解开两音后的响应方式8_1";
+ Label141.AccessibleDescription = null;
+ Label141.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label141, "Label141");
+ Label141.Font = null;
+ Label141.Name = "Label141";
+ ComboBox两音的组合方式8_1.AccessibleDescription = null;
+ ComboBox两音的组合方式8_1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox两音的组合方式8_1, "ComboBox两音的组合方式8_1");
+ ComboBox两音的组合方式8_1.BackgroundImage = null;
+ ComboBox两音的组合方式8_1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox两音的组合方式8_1.Font = null;
+ ComboBox两音的组合方式8_1.FormattingEnabled = true;
+ ComboBox两音的组合方式8_1.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items1"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items2"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items3"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items4"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items5"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items6"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items7"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items8"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items9"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items10"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items11"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items12"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items13"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items14"),
+ componentResourceManager.GetString("ComboBox两音的组合方式8_1.Items15")
+ });
+ ComboBox两音的组合方式8_1.Name = "ComboBox两音的组合方式8_1";
+ Label142.AccessibleDescription = null;
+ Label142.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label142, "Label142");
+ Label142.Font = null;
+ Label142.Name = "Label142";
+ TabPage11.AccessibleDescription = null;
+ TabPage11.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage11, "TabPage11");
+ TabPage11.BackgroundImage = null;
+ TabPage11.Controls.Add(ComboBox自动复位时间);
+ TabPage11.Controls.Add(ComboBox预载波时间);
+ TabPage11.Controls.Add(CheckBox空闲自动应答);
+ TabPage11.Controls.Add(Label14);
+ TabPage11.Controls.Add(CheckBox短哔音);
+ TabPage11.Controls.Add(CheckBox侧音);
+ TabPage11.Controls.Add(Label1);
+ TabPage11.Font = null;
+ TabPage11.Name = "TabPage11";
+ TabPage11.UseVisualStyleBackColor = true;
+ ComboBox自动复位时间.AccessibleDescription = null;
+ ComboBox自动复位时间.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox自动复位时间, "ComboBox自动复位时间");
+ ComboBox自动复位时间.BackgroundImage = null;
+ ComboBox自动复位时间.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox自动复位时间.Font = null;
+ ComboBox自动复位时间.FormattingEnabled = true;
+ ComboBox自动复位时间.Items.AddRange(new object[101]
+ {
+ componentResourceManager.GetString("ComboBox自动复位时间.Items"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items1"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items2"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items3"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items4"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items5"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items6"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items7"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items8"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items9"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items10"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items11"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items12"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items13"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items14"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items15"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items16"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items17"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items18"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items19"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items20"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items21"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items22"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items23"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items24"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items25"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items26"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items27"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items28"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items29"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items30"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items31"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items32"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items33"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items34"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items35"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items36"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items37"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items38"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items39"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items40"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items41"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items42"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items43"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items44"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items45"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items46"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items47"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items48"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items49"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items50"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items51"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items52"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items53"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items54"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items55"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items56"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items57"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items58"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items59"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items60"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items61"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items62"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items63"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items64"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items65"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items66"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items67"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items68"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items69"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items70"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items71"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items72"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items73"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items74"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items75"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items76"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items77"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items78"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items79"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items80"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items81"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items82"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items83"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items84"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items85"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items86"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items87"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items88"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items89"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items90"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items91"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items92"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items93"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items94"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items95"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items96"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items97"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items98"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items99"),
+ componentResourceManager.GetString("ComboBox自动复位时间.Items100")
+ });
+ ComboBox自动复位时间.Name = "ComboBox自动复位时间";
+ ComboBox预载波时间.AccessibleDescription = null;
+ ComboBox预载波时间.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox预载波时间, "ComboBox预载波时间");
+ ComboBox预载波时间.BackgroundImage = null;
+ ComboBox预载波时间.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox预载波时间.Font = null;
+ ComboBox预载波时间.FormattingEnabled = true;
+ ComboBox预载波时间.Items.AddRange(new object[51]
+ {
+ componentResourceManager.GetString("ComboBox预载波时间.Items"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items1"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items2"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items3"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items4"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items5"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items6"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items7"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items8"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items9"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items10"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items11"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items12"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items13"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items14"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items15"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items16"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items17"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items18"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items19"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items20"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items21"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items22"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items23"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items24"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items25"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items26"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items27"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items28"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items29"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items30"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items31"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items32"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items33"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items34"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items35"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items36"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items37"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items38"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items39"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items40"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items41"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items42"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items43"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items44"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items45"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items46"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items47"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items48"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items49"),
+ componentResourceManager.GetString("ComboBox预载波时间.Items50")
+ });
+ ComboBox预载波时间.Name = "ComboBox预载波时间";
+ CheckBox空闲自动应答.AccessibleDescription = null;
+ CheckBox空闲自动应答.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox空闲自动应答, "CheckBox空闲自动应答");
+ CheckBox空闲自动应答.BackgroundImage = null;
+ CheckBox空闲自动应答.Font = null;
+ CheckBox空闲自动应答.Name = "CheckBox空闲自动应答";
+ CheckBox空闲自动应答.UseVisualStyleBackColor = true;
+ Label14.AccessibleDescription = null;
+ Label14.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label14, "Label14");
+ Label14.Font = null;
+ Label14.Name = "Label14";
+ CheckBox短哔音.AccessibleDescription = null;
+ CheckBox短哔音.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox短哔音, "CheckBox短哔音");
+ CheckBox短哔音.BackgroundImage = null;
+ CheckBox短哔音.Font = null;
+ CheckBox短哔音.Name = "CheckBox短哔音";
+ CheckBox短哔音.UseVisualStyleBackColor = true;
+ CheckBox侧音.AccessibleDescription = null;
+ CheckBox侧音.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox侧音, "CheckBox侧音");
+ CheckBox侧音.BackgroundImage = null;
+ CheckBox侧音.Font = null;
+ CheckBox侧音.Name = "CheckBox侧音";
+ CheckBox侧音.UseVisualStyleBackColor = true;
+ Label1.AccessibleDescription = null;
+ Label1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Font = null;
+ Label1.Name = "Label1";
+ Button3.AccessibleDescription = null;
+ Button3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button3, "Button3");
+ Button3.BackgroundImage = null;
+ Button3.Font = null;
+ Button3.Name = "Button3";
+ Button3.UseVisualStyleBackColor = true;
+ Button2.AccessibleDescription = null;
+ Button2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.BackgroundImage = null;
+ Button2.Font = null;
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ Button1.AccessibleDescription = null;
+ Button1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.BackgroundImage = null;
+ Button1.Font = null;
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ ComboBox37.AccessibleDescription = null;
+ ComboBox37.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox37, "ComboBox37");
+ ComboBox37.BackgroundImage = null;
+ ComboBox37.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox37.Font = null;
+ ComboBox37.FormattingEnabled = true;
+ ComboBox37.Name = "ComboBox37";
+ Label67.AccessibleDescription = null;
+ Label67.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label67, "Label67");
+ Label67.Font = null;
+ Label67.Name = "Label67";
+ ComboBox38.AccessibleDescription = null;
+ ComboBox38.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox38, "ComboBox38");
+ ComboBox38.BackgroundImage = null;
+ ComboBox38.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox38.Font = null;
+ ComboBox38.FormattingEnabled = true;
+ ComboBox38.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox38.Items"),
+ componentResourceManager.GetString("ComboBox38.Items1"),
+ componentResourceManager.GetString("ComboBox38.Items2"),
+ componentResourceManager.GetString("ComboBox38.Items3")
+ });
+ ComboBox38.Name = "ComboBox38";
+ Label68.AccessibleDescription = null;
+ Label68.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label68, "Label68");
+ Label68.Font = null;
+ Label68.Name = "Label68";
+ ComboBox39.AccessibleDescription = null;
+ ComboBox39.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox39, "ComboBox39");
+ ComboBox39.BackgroundImage = null;
+ ComboBox39.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox39.Font = null;
+ ComboBox39.FormattingEnabled = true;
+ ComboBox39.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox39.Items"),
+ componentResourceManager.GetString("ComboBox39.Items1"),
+ componentResourceManager.GetString("ComboBox39.Items2"),
+ componentResourceManager.GetString("ComboBox39.Items3"),
+ componentResourceManager.GetString("ComboBox39.Items4"),
+ componentResourceManager.GetString("ComboBox39.Items5"),
+ componentResourceManager.GetString("ComboBox39.Items6"),
+ componentResourceManager.GetString("ComboBox39.Items7"),
+ componentResourceManager.GetString("ComboBox39.Items8"),
+ componentResourceManager.GetString("ComboBox39.Items9"),
+ componentResourceManager.GetString("ComboBox39.Items10"),
+ componentResourceManager.GetString("ComboBox39.Items11"),
+ componentResourceManager.GetString("ComboBox39.Items12"),
+ componentResourceManager.GetString("ComboBox39.Items13"),
+ componentResourceManager.GetString("ComboBox39.Items14"),
+ componentResourceManager.GetString("ComboBox39.Items15")
+ });
+ ComboBox39.Name = "ComboBox39";
+ Label69.AccessibleDescription = null;
+ Label69.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label69, "Label69");
+ Label69.Font = null;
+ Label69.Name = "Label69";
+ ComboBox40.AccessibleDescription = null;
+ ComboBox40.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox40, "ComboBox40");
+ ComboBox40.BackgroundImage = null;
+ ComboBox40.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox40.Font = null;
+ ComboBox40.FormattingEnabled = true;
+ ComboBox40.Name = "ComboBox40";
+ Label74.AccessibleDescription = null;
+ Label74.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label74, "Label74");
+ Label74.Font = null;
+ Label74.Name = "Label74";
+ ComboBox41.AccessibleDescription = null;
+ ComboBox41.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox41, "ComboBox41");
+ ComboBox41.BackgroundImage = null;
+ ComboBox41.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox41.Font = null;
+ ComboBox41.FormattingEnabled = true;
+ ComboBox41.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox41.Items"),
+ componentResourceManager.GetString("ComboBox41.Items1"),
+ componentResourceManager.GetString("ComboBox41.Items2"),
+ componentResourceManager.GetString("ComboBox41.Items3")
+ });
+ ComboBox41.Name = "ComboBox41";
+ Label75.AccessibleDescription = null;
+ Label75.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label75, "Label75");
+ Label75.Font = null;
+ Label75.Name = "Label75";
+ ComboBox42.AccessibleDescription = null;
+ ComboBox42.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox42, "ComboBox42");
+ ComboBox42.BackgroundImage = null;
+ ComboBox42.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox42.Font = null;
+ ComboBox42.FormattingEnabled = true;
+ ComboBox42.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox42.Items"),
+ componentResourceManager.GetString("ComboBox42.Items1"),
+ componentResourceManager.GetString("ComboBox42.Items2"),
+ componentResourceManager.GetString("ComboBox42.Items3"),
+ componentResourceManager.GetString("ComboBox42.Items4"),
+ componentResourceManager.GetString("ComboBox42.Items5"),
+ componentResourceManager.GetString("ComboBox42.Items6"),
+ componentResourceManager.GetString("ComboBox42.Items7"),
+ componentResourceManager.GetString("ComboBox42.Items8"),
+ componentResourceManager.GetString("ComboBox42.Items9"),
+ componentResourceManager.GetString("ComboBox42.Items10"),
+ componentResourceManager.GetString("ComboBox42.Items11"),
+ componentResourceManager.GetString("ComboBox42.Items12"),
+ componentResourceManager.GetString("ComboBox42.Items13"),
+ componentResourceManager.GetString("ComboBox42.Items14"),
+ componentResourceManager.GetString("ComboBox42.Items15")
+ });
+ ComboBox42.Name = "ComboBox42";
+ Label76.AccessibleDescription = null;
+ Label76.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label76, "Label76");
+ Label76.Font = null;
+ Label76.Name = "Label76";
+ ComboBox43.AccessibleDescription = null;
+ ComboBox43.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox43, "ComboBox43");
+ ComboBox43.BackgroundImage = null;
+ ComboBox43.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox43.Font = null;
+ ComboBox43.FormattingEnabled = true;
+ ComboBox43.Name = "ComboBox43";
+ Label77.AccessibleDescription = null;
+ Label77.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label77, "Label77");
+ Label77.Font = null;
+ Label77.Name = "Label77";
+ ComboBox44.AccessibleDescription = null;
+ ComboBox44.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox44, "ComboBox44");
+ ComboBox44.BackgroundImage = null;
+ ComboBox44.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox44.Font = null;
+ ComboBox44.FormattingEnabled = true;
+ ComboBox44.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox44.Items"),
+ componentResourceManager.GetString("ComboBox44.Items1"),
+ componentResourceManager.GetString("ComboBox44.Items2"),
+ componentResourceManager.GetString("ComboBox44.Items3")
+ });
+ ComboBox44.Name = "ComboBox44";
+ Label78.AccessibleDescription = null;
+ Label78.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label78, "Label78");
+ Label78.Font = null;
+ Label78.Name = "Label78";
+ ComboBox45.AccessibleDescription = null;
+ ComboBox45.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox45, "ComboBox45");
+ ComboBox45.BackgroundImage = null;
+ ComboBox45.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox45.Font = null;
+ ComboBox45.FormattingEnabled = true;
+ ComboBox45.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox45.Items"),
+ componentResourceManager.GetString("ComboBox45.Items1"),
+ componentResourceManager.GetString("ComboBox45.Items2"),
+ componentResourceManager.GetString("ComboBox45.Items3"),
+ componentResourceManager.GetString("ComboBox45.Items4"),
+ componentResourceManager.GetString("ComboBox45.Items5"),
+ componentResourceManager.GetString("ComboBox45.Items6"),
+ componentResourceManager.GetString("ComboBox45.Items7"),
+ componentResourceManager.GetString("ComboBox45.Items8"),
+ componentResourceManager.GetString("ComboBox45.Items9"),
+ componentResourceManager.GetString("ComboBox45.Items10"),
+ componentResourceManager.GetString("ComboBox45.Items11"),
+ componentResourceManager.GetString("ComboBox45.Items12"),
+ componentResourceManager.GetString("ComboBox45.Items13"),
+ componentResourceManager.GetString("ComboBox45.Items14"),
+ componentResourceManager.GetString("ComboBox45.Items15")
+ });
+ ComboBox45.Name = "ComboBox45";
+ Label79.AccessibleDescription = null;
+ Label79.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label79, "Label79");
+ Label79.Font = null;
+ Label79.Name = "Label79";
+ ComboBox46.AccessibleDescription = null;
+ ComboBox46.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox46, "ComboBox46");
+ ComboBox46.BackgroundImage = null;
+ ComboBox46.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox46.Font = null;
+ ComboBox46.FormattingEnabled = true;
+ ComboBox46.Name = "ComboBox46";
+ Label80.AccessibleDescription = null;
+ Label80.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label80, "Label80");
+ Label80.Font = null;
+ Label80.Name = "Label80";
+ ComboBox47.AccessibleDescription = null;
+ ComboBox47.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox47, "ComboBox47");
+ ComboBox47.BackgroundImage = null;
+ ComboBox47.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox47.Font = null;
+ ComboBox47.FormattingEnabled = true;
+ ComboBox47.Items.AddRange(new object[4]
+ {
+ componentResourceManager.GetString("ComboBox47.Items"),
+ componentResourceManager.GetString("ComboBox47.Items1"),
+ componentResourceManager.GetString("ComboBox47.Items2"),
+ componentResourceManager.GetString("ComboBox47.Items3")
+ });
+ ComboBox47.Name = "ComboBox47";
+ Label81.AccessibleDescription = null;
+ Label81.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label81, "Label81");
+ Label81.Font = null;
+ Label81.Name = "Label81";
+ ComboBox48.AccessibleDescription = null;
+ ComboBox48.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox48, "ComboBox48");
+ ComboBox48.BackgroundImage = null;
+ ComboBox48.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox48.Font = null;
+ ComboBox48.FormattingEnabled = true;
+ ComboBox48.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox48.Items"),
+ componentResourceManager.GetString("ComboBox48.Items1"),
+ componentResourceManager.GetString("ComboBox48.Items2"),
+ componentResourceManager.GetString("ComboBox48.Items3"),
+ componentResourceManager.GetString("ComboBox48.Items4"),
+ componentResourceManager.GetString("ComboBox48.Items5"),
+ componentResourceManager.GetString("ComboBox48.Items6"),
+ componentResourceManager.GetString("ComboBox48.Items7"),
+ componentResourceManager.GetString("ComboBox48.Items8"),
+ componentResourceManager.GetString("ComboBox48.Items9"),
+ componentResourceManager.GetString("ComboBox48.Items10"),
+ componentResourceManager.GetString("ComboBox48.Items11"),
+ componentResourceManager.GetString("ComboBox48.Items12"),
+ componentResourceManager.GetString("ComboBox48.Items13"),
+ componentResourceManager.GetString("ComboBox48.Items14"),
+ componentResourceManager.GetString("ComboBox48.Items15")
+ });
+ ComboBox48.Name = "ComboBox48";
+ Label82.AccessibleDescription = null;
+ Label82.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label82, "Label82");
+ Label82.Font = null;
+ Label82.Name = "Label82";
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ BackgroundImage = null;
+ Controls.Add(Button3);
+ Controls.Add(Button2);
+ Controls.Add(Button1);
+ Controls.Add(TabControl1);
+ Font = null;
+ Name = nameof(_2ToneForm);
+ TabControl1.ResumeLayout(false);
+ TabPage1.ResumeLayout(false);
+ ((ISupportInitialize) DataGridView1).EndInit();
+ TabPage2.ResumeLayout(false);
+ TabControl2.ResumeLayout(false);
+ TabPage3.ResumeLayout(false);
+ TabPage3.PerformLayout();
+ GroupBox4.ResumeLayout(false);
+ GroupBox4.PerformLayout();
+ NumericUpDown1_D.EndInit();
+ NumericUpDown1_C.EndInit();
+ NumericUpDown1_B.EndInit();
+ NumericUpDown1_A.EndInit();
+ GroupBox3.ResumeLayout(false);
+ GroupBox3.PerformLayout();
+ GroupBox2.ResumeLayout(false);
+ GroupBox2.PerformLayout();
+ GroupBox1.ResumeLayout(false);
+ GroupBox1.PerformLayout();
+ TabPage4.ResumeLayout(false);
+ TabPage4.PerformLayout();
+ GroupBox5.ResumeLayout(false);
+ GroupBox5.PerformLayout();
+ NumericUpDown2_D.EndInit();
+ NumericUpDown2_C.EndInit();
+ NumericUpDown2_B.EndInit();
+ NumericUpDown2_A.EndInit();
+ GroupBox6.ResumeLayout(false);
+ GroupBox6.PerformLayout();
+ GroupBox7.ResumeLayout(false);
+ GroupBox7.PerformLayout();
+ GroupBox8.ResumeLayout(false);
+ GroupBox8.PerformLayout();
+ TabPage5.ResumeLayout(false);
+ TabPage5.PerformLayout();
+ GroupBox9.ResumeLayout(false);
+ GroupBox9.PerformLayout();
+ NumericUpDown3_D.EndInit();
+ NumericUpDown3_C.EndInit();
+ NumericUpDown3_B.EndInit();
+ NumericUpDown3_A.EndInit();
+ GroupBox10.ResumeLayout(false);
+ GroupBox10.PerformLayout();
+ GroupBox11.ResumeLayout(false);
+ GroupBox11.PerformLayout();
+ GroupBox12.ResumeLayout(false);
+ GroupBox12.PerformLayout();
+ TabPage6.ResumeLayout(false);
+ TabPage6.PerformLayout();
+ GroupBox13.ResumeLayout(false);
+ GroupBox13.PerformLayout();
+ NumericUpDown4_D.EndInit();
+ NumericUpDown4_C.EndInit();
+ NumericUpDown4_B.EndInit();
+ NumericUpDown4_A.EndInit();
+ GroupBox14.ResumeLayout(false);
+ GroupBox14.PerformLayout();
+ GroupBox15.ResumeLayout(false);
+ GroupBox15.PerformLayout();
+ GroupBox16.ResumeLayout(false);
+ GroupBox16.PerformLayout();
+ TabPage7.ResumeLayout(false);
+ TabPage7.PerformLayout();
+ GroupBox17.ResumeLayout(false);
+ GroupBox17.PerformLayout();
+ NumericUpDown5_D.EndInit();
+ NumericUpDown5_C.EndInit();
+ NumericUpDown5_B.EndInit();
+ NumericUpDown5_A.EndInit();
+ GroupBox18.ResumeLayout(false);
+ GroupBox18.PerformLayout();
+ GroupBox19.ResumeLayout(false);
+ GroupBox19.PerformLayout();
+ GroupBox20.ResumeLayout(false);
+ GroupBox20.PerformLayout();
+ TabPage8.ResumeLayout(false);
+ TabPage8.PerformLayout();
+ GroupBox21.ResumeLayout(false);
+ GroupBox21.PerformLayout();
+ NumericUpDown6_D.EndInit();
+ NumericUpDown6_C.EndInit();
+ NumericUpDown6_B.EndInit();
+ NumericUpDown6_A.EndInit();
+ GroupBox22.ResumeLayout(false);
+ GroupBox22.PerformLayout();
+ GroupBox23.ResumeLayout(false);
+ GroupBox23.PerformLayout();
+ GroupBox24.ResumeLayout(false);
+ GroupBox24.PerformLayout();
+ TabPage9.ResumeLayout(false);
+ TabPage9.PerformLayout();
+ GroupBox25.ResumeLayout(false);
+ GroupBox25.PerformLayout();
+ NumericUpDown7_D.EndInit();
+ NumericUpDown7_C.EndInit();
+ NumericUpDown7_B.EndInit();
+ NumericUpDown7_A.EndInit();
+ GroupBox26.ResumeLayout(false);
+ GroupBox26.PerformLayout();
+ GroupBox27.ResumeLayout(false);
+ GroupBox27.PerformLayout();
+ GroupBox28.ResumeLayout(false);
+ GroupBox28.PerformLayout();
+ TabPage10.ResumeLayout(false);
+ TabPage10.PerformLayout();
+ GroupBox29.ResumeLayout(false);
+ GroupBox29.PerformLayout();
+ NumericUpDown8_D.EndInit();
+ NumericUpDown8_C.EndInit();
+ NumericUpDown8_B.EndInit();
+ NumericUpDown8_A.EndInit();
+ GroupBox30.ResumeLayout(false);
+ GroupBox30.PerformLayout();
+ GroupBox31.ResumeLayout(false);
+ GroupBox31.PerformLayout();
+ GroupBox32.ResumeLayout(false);
+ GroupBox32.PerformLayout();
+ TabPage11.ResumeLayout(false);
+ TabPage11.PerformLayout();
+ ResumeLayout(false);
}
- else
+
+ internal virtual TabControl TabControl1
{
- publicva.EEPROM_Byte[checked (num9 + 0 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 1 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 2 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 3 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 4 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 5 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 6 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 7 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 8 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 9 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 10 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 11 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 12 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 13 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 14 + rowIndex * 16)] = 0;
- publicva.EEPROM_Byte[checked (num9 + 15 + rowIndex * 16)] = 0;
+ [DebuggerNonUserCode]
+ get => _TabControl1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabControl1 = value; }
}
- checked { ++rowIndex; }
- }
- while (rowIndex <= 31);
- var num11 = 1792;
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox自动复位时间, checked (num11 + 0), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox预载波时间, checked (num11 + 4), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox侧音, checked (num11 + 6), publicva.Bit3, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox短哔音, checked (num11 + 6), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox空闲自动应答, checked (num11 + 6), publicva.Bit1, 0);
- }
- private void _2ToneForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- MyProject.Forms.MDIParent1.两音TToolStripMenuItem.Checked = false;
- }
-
- public void _2ToneForm_Load(object sender, EventArgs e)
- {
- MyProject.Forms.MDIParent1.两音TToolStripMenuItem.Checked = true;
- DataGridView1.RowCount = 32;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- DataGridView1.TopLeftHeaderCell.Value = "序号";
- else
- DataGridView1.TopLeftHeaderCell.Value = "NO.";
- SetControl_BeepItems(ComboBox提示音1_1);
- SetControl_BeepItems(ComboBox提示音1_2);
- SetControl_BeepItems(ComboBox提示音1_3);
- SetControl_BeepItems(ComboBox提示音1_4);
- SetControl_BeepItems(ComboBox提示音2_1);
- SetControl_BeepItems(ComboBox提示音2_2);
- SetControl_BeepItems(ComboBox提示音2_3);
- SetControl_BeepItems(ComboBox提示音2_4);
- SetControl_BeepItems(ComboBox提示音3_1);
- SetControl_BeepItems(ComboBox提示音3_2);
- SetControl_BeepItems(ComboBox提示音3_3);
- SetControl_BeepItems(ComboBox提示音3_4);
- SetControl_BeepItems(ComboBox提示音4_1);
- SetControl_BeepItems(ComboBox提示音4_2);
- SetControl_BeepItems(ComboBox提示音4_3);
- SetControl_BeepItems(ComboBox提示音4_4);
- SetControl_BeepItems(ComboBox提示音5_1);
- SetControl_BeepItems(ComboBox提示音5_2);
- SetControl_BeepItems(ComboBox提示音5_3);
- SetControl_BeepItems(ComboBox提示音5_4);
- SetControl_BeepItems(ComboBox提示音6_1);
- SetControl_BeepItems(ComboBox提示音6_2);
- SetControl_BeepItems(ComboBox提示音6_3);
- SetControl_BeepItems(ComboBox提示音6_4);
- SetControl_BeepItems(ComboBox提示音7_1);
- SetControl_BeepItems(ComboBox提示音7_2);
- SetControl_BeepItems(ComboBox提示音7_3);
- SetControl_BeepItems(ComboBox提示音7_4);
- SetControl_BeepItems(ComboBox提示音8_1);
- SetControl_BeepItems(ComboBox提示音8_2);
- SetControl_BeepItems(ComboBox提示音8_3);
- SetControl_BeepItems(ComboBox提示音8_4);
- var num1 = 1024;
- try
- {
- NumericUpDown1_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num1 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown1_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown1_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num1 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown1_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown1_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num1 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown1_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown1_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num1 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown1_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_1, checked (num1 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_1, checked (num1 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_1, checked (num1 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_2, checked (num1 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_2, checked (num1 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_2, checked (num1 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_3, checked (num1 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_3, checked (num1 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_3, checked (num1 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_4, checked (num1 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_4, checked (num1 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_4, checked (num1 + 19), publicva.AllBit, 0);
- var num2 = 1056;
- try
- {
- NumericUpDown2_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num2 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown2_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown2_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num2 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown2_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown2_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num2 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown2_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown2_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num2 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown2_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_1, checked (num2 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_1, checked (num2 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_1, checked (num2 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_2, checked (num2 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_2, checked (num2 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_2, checked (num2 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_3, checked (num2 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_3, checked (num2 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_3, checked (num2 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_4, checked (num2 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_4, checked (num2 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_4, checked (num2 + 19), publicva.AllBit, 0);
- var num3 = 1088;
- try
- {
- NumericUpDown3_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num3 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown3_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown3_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num3 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown3_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown3_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num3 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown3_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown3_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num3 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown3_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_1, checked (num3 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_1, checked (num3 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_1, checked (num3 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_2, checked (num3 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_2, checked (num3 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_2, checked (num3 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_3, checked (num3 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_3, checked (num3 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_3, checked (num3 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_4, checked (num3 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_4, checked (num3 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_4, checked (num3 + 19), publicva.AllBit, 0);
- var num4 = 1120;
- try
- {
- NumericUpDown4_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num4 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown4_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown4_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num4 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown4_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown4_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num4 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown4_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown4_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num4 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown4_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_1, checked (num4 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_1, checked (num4 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_1, checked (num4 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_2, checked (num4 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_2, checked (num4 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_2, checked (num4 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_3, checked (num4 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_3, checked (num4 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_3, checked (num4 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_4, checked (num4 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_4, checked (num4 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_4, checked (num4 + 19), publicva.AllBit, 0);
- var num5 = 1152;
- try
- {
- NumericUpDown5_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num5 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown5_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown5_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num5 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown5_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown5_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num5 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown5_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown5_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num5 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown5_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_1, checked (num5 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_1, checked (num5 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_1, checked (num5 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_2, checked (num5 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_2, checked (num5 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_2, checked (num5 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_3, checked (num5 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_3, checked (num5 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_3, checked (num5 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_4, checked (num5 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_4, checked (num5 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_4, checked (num5 + 19), publicva.AllBit, 0);
- var num6 = 1184;
- try
- {
- NumericUpDown6_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num6 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown6_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown6_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num6 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown6_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown6_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num6 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown6_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown6_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num6 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown6_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_1, checked (num6 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_1, checked (num6 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_1, checked (num6 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_2, checked (num6 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_2, checked (num6 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_2, checked (num6 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_3, checked (num6 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_3, checked (num6 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_3, checked (num6 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_4, checked (num6 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_4, checked (num6 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_4, checked (num6 + 19), publicva.AllBit, 0);
- var num7 = 1216;
- try
- {
- NumericUpDown7_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num7 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown7_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown7_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num7 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown7_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown7_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num7 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown7_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown7_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num7 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown7_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_1, checked (num7 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_1, checked (num7 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_1, checked (num7 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_2, checked (num7 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_2, checked (num7 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_2, checked (num7 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_3, checked (num7 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_3, checked (num7 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_3, checked (num7 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_4, checked (num7 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_4, checked (num7 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_4, checked (num7 + 19), publicva.AllBit, 0);
- var num8 = 1248;
- try
- {
- NumericUpDown8_A.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num8 + 0)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown8_A.Value = 321.7M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown8_B.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num8 + 2)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown8_B.Value = 928.1M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown8_C.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num8 + 4)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown8_C.Value = 626.5M;
- ProjectData.ClearProjectError();
- }
- try
- {
- NumericUpDown8_D.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num8 + 6)), 10));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- NumericUpDown8_D.Value = 2043.8M;
- ProjectData.ClearProjectError();
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_1, checked (num8 + 8), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_1, checked (num8 + 9), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_1, checked (num8 + 10), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_2, checked (num8 + 11), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_2, checked (num8 + 12), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_2, checked (num8 + 13), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_3, checked (num8 + 14), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_3, checked (num8 + 15), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_3, checked (num8 + 16), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_4, checked (num8 + 17), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_4, checked (num8 + 18), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_4, checked (num8 + 19), publicva.AllBit, 0);
- var num9 = 1280;
- var num10 = 0;
- do
- {
- if (Conversions.ToBoolean(Operators.AndObject(Operators.CompareObjectGreaterEqual(32000, MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num9 + 0 + num10 * 16)), false), Operators.CompareObjectGreaterEqual(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num9 + 0 + num10 * 16)), 2885, false))))
+ internal virtual TabPage TabPage1
{
- DataGridView1["Column第一个音频率", num10].Value = string.Format("{0:#000.0}", Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num9 + 0 + num10 * 16)), 10));
- DataGridView1["Column第二个音频率", num10].Value = string.Format("{0:#000.0}", Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num9 + 2 + num10 * 16)), 10));
- DataGridView1["Column第一个音持续时间", num10].Value = RuntimeHelpers.GetObjectValue(Column第一个音持续时间.Items[checked (publicva.EEPROM_Byte[num9 + 4 + num10 * 16] - 5)]);
- DataGridView1["Column第二个音持续时间", num10].Value = RuntimeHelpers.GetObjectValue(Column第二个音持续时间.Items[checked (publicva.EEPROM_Byte[num9 + 5 + num10 * 16] - 5)]);
- DataGridView1["Column音频间隔时间", num10].Value = RuntimeHelpers.GetObjectValue(Column音频间隔时间.Items[publicva.EEPROM_Byte[checked (num9 + 6 + num10 * 16)]]);
- DataGridView1["Column长音持续时间", num10].Value = publicva.EEPROM_Byte[checked (num9 + 7 + num10 * 16)] >= 5 ? RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[checked (publicva.EEPROM_Byte[num9 + 7 + num10 * 16] - 5)]) : RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[0]);
- DataGridView1["Column别名", num10].Value = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked (num9 + 8 + num10 * 16), 8));
+ [DebuggerNonUserCode]
+ get => _TabPage1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage1 = value; }
}
- else
- Clr_2ToneEnMsg(num10);
- checked { ++num10; }
- }
- while (num10 <= 31);
- var num11 = 1792;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox自动复位时间, checked (num11 + 0), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox预载波时间, checked (num11 + 4), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox侧音, checked (num11 + 6), publicva.Bit3, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox短哔音, checked (num11 + 6), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox空闲自动应答, checked (num11 + 6), publicva.Bit1, 0);
- }
- private void DataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView1.CurrentCell.RowIndex;
- var columnIndex = DataGridView1.CurrentCell.ColumnIndex;
- if (columnIndex == DataGridView1["Column第一个音频率", rowIndex].ColumnIndex)
- {
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第一个音频率", rowIndex].Value, "", false))
+ internal virtual DataGridView DataGridView1
{
- var str = Conversions.ToString(JudgeInputBeepFreq(Conversions.ToString(DataGridView1["Column第一个音频率", rowIndex].Value), 2885, 32000));
- DataGridView1["Column第一个音频率", rowIndex].Value = str;
- if (Operators.ConditionalCompareObjectEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
- {
- if (Operators.CompareString(str, "", false) == 0)
- Clr_2ToneEnMsg(rowIndex);
+ [DebuggerNonUserCode]
+ get => _DataGridView1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView1 != null)
+ {
+ _DataGridView1.MouseClick -= DataGridView1_MouseClick;
+ _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
+ _DataGridView1.EditingControlShowing -= DataGridView1_EditingControlShowing;
+ _DataGridView1.CellEndEdit -= DataGridView1_CellEndEdit;
+ }
+
+ _DataGridView1 = value;
+ if (_DataGridView1 == null)
+ return;
+ _DataGridView1.MouseClick += DataGridView1_MouseClick;
+ _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
+ _DataGridView1.EditingControlShowing += DataGridView1_EditingControlShowing;
+ _DataGridView1.CellEndEdit += DataGridView1_CellEndEdit;
+ }
+ }
+
+ internal virtual TabPage TabPage2
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage2 = value; }
+ }
+
+ internal virtual TabControl TabControl2
+ {
+ [DebuggerNonUserCode]
+ get => _TabControl2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabControl2 = value; }
+ }
+
+ internal virtual TabPage TabPage3
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage3 = value; }
+ }
+
+ internal virtual GroupBox GroupBox1
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox1 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式1_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式1_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式1_1 = value; }
+ }
+
+ internal virtual Label Label2
+ {
+ [DebuggerNonUserCode]
+ get => _Label2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label2 = value;
+ }
+
+ internal virtual TabPage TabPage4
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage4 = value; }
+ }
+
+ internal virtual TabPage TabPage5
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage5 = value; }
+ }
+
+ internal virtual TabPage TabPage6
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage6 = value; }
+ }
+
+ internal virtual TabPage TabPage7
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage7 = value; }
+ }
+
+ internal virtual TabPage TabPage8
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage8 = value; }
+ }
+
+ internal virtual TabPage TabPage9
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage9 = value; }
+ }
+
+ internal virtual TabPage TabPage10
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage10 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音1_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音1_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox提示音1_1 != null)
+ _ComboBox提示音1_1.MouseDown -= ComboBox提示音1_1_MouseDown;
+ _ComboBox提示音1_1 = value;
+ if (_ComboBox提示音1_1 == null)
+ return;
+ _ComboBox提示音1_1.MouseDown += ComboBox提示音1_1_MouseDown;
+ }
+ }
+
+ internal virtual Label Label4
+ {
+ [DebuggerNonUserCode]
+ get => _Label4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label4 = value;
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式1_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式1_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式1_1 = value; }
+ }
+
+ internal virtual Label Label3
+ {
+ [DebuggerNonUserCode]
+ get => _Label3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label3 = value;
+ }
+
+ internal virtual GroupBox GroupBox4
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox4 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音1_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音1_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音1_4 = value; }
+ }
+
+ internal virtual Label Label11
+ {
+ [DebuggerNonUserCode]
+ get => _Label11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label11 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式1_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式1_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式1_4 = value; }
+ }
+
+ internal virtual Label Label12
+ {
+ [DebuggerNonUserCode]
+ get => _Label12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label12 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式1_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式1_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式1_4 = value; }
+ }
+
+ internal virtual Label Label13
+ {
+ [DebuggerNonUserCode]
+ get => _Label13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label13 = value; }
+ }
+
+ internal virtual GroupBox GroupBox3
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox3 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音1_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音1_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音1_3 = value; }
+ }
+
+ internal virtual Label Label8
+ {
+ [DebuggerNonUserCode]
+ get => _Label8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label8 = value;
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式1_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式1_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式1_3 = value; }
+ }
+
+ internal virtual Label Label9
+ {
+ [DebuggerNonUserCode]
+ get => _Label9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label9 = value;
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式1_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式1_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式1_3 = value; }
+ }
+
+ internal virtual Label Label10
+ {
+ [DebuggerNonUserCode]
+ get => _Label10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label10 = value; }
+ }
+
+ internal virtual GroupBox GroupBox2
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox2 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音1_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音1_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音1_2 = value; }
+ }
+
+ internal virtual Label Label5
+ {
+ [DebuggerNonUserCode]
+ get => _Label5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label5 = value;
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式1_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式1_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式1_2 = value; }
+ }
+
+ internal virtual Label Label6
+ {
+ [DebuggerNonUserCode]
+ get => _Label6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label6 = value;
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式1_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式1_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式1_2 = value; }
+ }
+
+ internal virtual Label Label7
+ {
+ [DebuggerNonUserCode]
+ get => _Label7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label7 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown1_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown1_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown1_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown1_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown1_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown1_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown1_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown1_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown1_B = value; }
+ }
+
+ internal virtual Label Label18
+ {
+ [DebuggerNonUserCode]
+ get => _Label18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label18 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown1_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown1_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown1_A = value; }
+ }
+
+ internal virtual Label Label17
+ {
+ [DebuggerNonUserCode]
+ get => _Label17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label17 = value; }
+ }
+
+ internal virtual Label Label16
+ {
+ [DebuggerNonUserCode]
+ get => _Label16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label16 = value; }
+ }
+
+ internal virtual Label Label15
+ {
+ [DebuggerNonUserCode]
+ get => _Label15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label15 = value; }
+ }
+
+ internal virtual TabPage TabPage11
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage11 = value; }
+ }
+
+ internal virtual CheckBox CheckBox空闲自动应答
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox空闲自动应答;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox空闲自动应答 = value; }
+ }
+
+ internal virtual Label Label14
+ {
+ [DebuggerNonUserCode]
+ get => _Label14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label14 = value; }
+ }
+
+ internal virtual CheckBox CheckBox短哔音
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox短哔音;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox短哔音 = value; }
+ }
+
+ internal virtual CheckBox CheckBox侧音
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox侧音;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox侧音 = value; }
+ }
+
+ internal virtual Label Label1
+ {
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
+ }
+
+ internal virtual Button Button3
+ {
+ [DebuggerNonUserCode]
+ get => _Button3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button3 = value; }
+ }
+
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button2 = value; }
+ }
+
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
+
+ internal virtual GroupBox GroupBox5
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox5 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音2_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音2_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音2_4 = value; }
+ }
+
+ internal virtual Label Label19
+ {
+ [DebuggerNonUserCode]
+ get => _Label19;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label19 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式2_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式2_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式2_4 = value; }
+ }
+
+ internal virtual Label Label20
+ {
+ [DebuggerNonUserCode]
+ get => _Label20;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label20 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式2_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式2_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式2_4 = value; }
+ }
+
+ internal virtual Label Label21
+ {
+ [DebuggerNonUserCode]
+ get => _Label21;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label21 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown2_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown2_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown2_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown2_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown2_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown2_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown2_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown2_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown2_B = value; }
+ }
+
+ internal virtual Label Label22
+ {
+ [DebuggerNonUserCode]
+ get => _Label22;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label22 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown2_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown2_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown2_A = value; }
+ }
+
+ internal virtual Label Label23
+ {
+ [DebuggerNonUserCode]
+ get => _Label23;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label23 = value; }
+ }
+
+ internal virtual Label Label24
+ {
+ [DebuggerNonUserCode]
+ get => _Label24;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label24 = value; }
+ }
+
+ internal virtual Label Label25
+ {
+ [DebuggerNonUserCode]
+ get => _Label25;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label25 = value; }
+ }
+
+ internal virtual GroupBox GroupBox6
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox6 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音2_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音2_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音2_3 = value; }
+ }
+
+ internal virtual Label Label26
+ {
+ [DebuggerNonUserCode]
+ get => _Label26;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label26 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式2_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式2_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式2_3 = value; }
+ }
+
+ internal virtual Label Label27
+ {
+ [DebuggerNonUserCode]
+ get => _Label27;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label27 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式2_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式2_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式2_3 = value; }
+ }
+
+ internal virtual Label Label28
+ {
+ [DebuggerNonUserCode]
+ get => _Label28;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label28 = value; }
+ }
+
+ internal virtual GroupBox GroupBox7
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox7 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音2_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音2_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音2_2 = value; }
+ }
+
+ internal virtual Label Label29
+ {
+ [DebuggerNonUserCode]
+ get => _Label29;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label29 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式2_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式2_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式2_2 = value; }
+ }
+
+ internal virtual Label Label30
+ {
+ [DebuggerNonUserCode]
+ get => _Label30;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label30 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式2_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式2_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式2_2 = value; }
+ }
+
+ internal virtual Label Label31
+ {
+ [DebuggerNonUserCode]
+ get => _Label31;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label31 = value; }
+ }
+
+ internal virtual GroupBox GroupBox8
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox8 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音2_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音2_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音2_1 = value; }
+ }
+
+ internal virtual Label Label32
+ {
+ [DebuggerNonUserCode]
+ get => _Label32;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label32 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式2_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式2_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式2_1 = value; }
+ }
+
+ internal virtual Label Label33
+ {
+ [DebuggerNonUserCode]
+ get => _Label33;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label33 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式2_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式2_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式2_1 = value; }
+ }
+
+ internal virtual Label Label34
+ {
+ [DebuggerNonUserCode]
+ get => _Label34;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label34 = value; }
+ }
+
+ internal virtual GroupBox GroupBox9
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox9 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音3_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音3_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音3_4 = value; }
+ }
+
+ internal virtual Label Label35
+ {
+ [DebuggerNonUserCode]
+ get => _Label35;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label35 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式3_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式3_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式3_4 = value; }
+ }
+
+ internal virtual Label Label36
+ {
+ [DebuggerNonUserCode]
+ get => _Label36;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label36 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式3_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式3_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式3_4 = value; }
+ }
+
+ internal virtual Label Label37
+ {
+ [DebuggerNonUserCode]
+ get => _Label37;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label37 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown3_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown3_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown3_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown3_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown3_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown3_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown3_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown3_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown3_B = value; }
+ }
+
+ internal virtual Label Label38
+ {
+ [DebuggerNonUserCode]
+ get => _Label38;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label38 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown3_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown3_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown3_A = value; }
+ }
+
+ internal virtual Label Label39
+ {
+ [DebuggerNonUserCode]
+ get => _Label39;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label39 = value; }
+ }
+
+ internal virtual Label Label40
+ {
+ [DebuggerNonUserCode]
+ get => _Label40;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label40 = value; }
+ }
+
+ internal virtual Label Label41
+ {
+ [DebuggerNonUserCode]
+ get => _Label41;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label41 = value; }
+ }
+
+ internal virtual GroupBox GroupBox10
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox10 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音3_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音3_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音3_3 = value; }
+ }
+
+ internal virtual Label Label42
+ {
+ [DebuggerNonUserCode]
+ get => _Label42;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label42 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式3_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式3_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式3_3 = value; }
+ }
+
+ internal virtual Label Label43
+ {
+ [DebuggerNonUserCode]
+ get => _Label43;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label43 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式3_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式3_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式3_3 = value; }
+ }
+
+ internal virtual Label Label44
+ {
+ [DebuggerNonUserCode]
+ get => _Label44;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label44 = value; }
+ }
+
+ internal virtual GroupBox GroupBox11
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox11 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音3_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音3_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音3_2 = value; }
+ }
+
+ internal virtual Label Label45
+ {
+ [DebuggerNonUserCode]
+ get => _Label45;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label45 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式3_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式3_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式3_2 = value; }
+ }
+
+ internal virtual Label Label46
+ {
+ [DebuggerNonUserCode]
+ get => _Label46;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label46 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式3_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式3_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式3_2 = value; }
+ }
+
+ internal virtual Label Label47
+ {
+ [DebuggerNonUserCode]
+ get => _Label47;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label47 = value; }
+ }
+
+ internal virtual GroupBox GroupBox12
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox12 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音3_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音3_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音3_1 = value; }
+ }
+
+ internal virtual Label Label48
+ {
+ [DebuggerNonUserCode]
+ get => _Label48;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label48 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式3_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式3_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式3_1 = value; }
+ }
+
+ internal virtual Label Label49
+ {
+ [DebuggerNonUserCode]
+ get => _Label49;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label49 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式3_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式3_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式3_1 = value; }
+ }
+
+ internal virtual Label Label50
+ {
+ [DebuggerNonUserCode]
+ get => _Label50;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label50 = value; }
+ }
+
+ internal virtual GroupBox GroupBox13
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox13 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音4_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音4_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音4_4 = value; }
+ }
+
+ internal virtual Label Label51
+ {
+ [DebuggerNonUserCode]
+ get => _Label51;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label51 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式4_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式4_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式4_4 = value; }
+ }
+
+ internal virtual Label Label52
+ {
+ [DebuggerNonUserCode]
+ get => _Label52;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label52 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式4_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式4_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式4_4 = value; }
+ }
+
+ internal virtual Label Label53
+ {
+ [DebuggerNonUserCode]
+ get => _Label53;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label53 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown4_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown4_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown4_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown4_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown4_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown4_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown4_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown4_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown4_B = value; }
+ }
+
+ internal virtual Label Label54
+ {
+ [DebuggerNonUserCode]
+ get => _Label54;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label54 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown4_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown4_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown4_A = value; }
+ }
+
+ internal virtual Label Label55
+ {
+ [DebuggerNonUserCode]
+ get => _Label55;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label55 = value; }
+ }
+
+ internal virtual Label Label56
+ {
+ [DebuggerNonUserCode]
+ get => _Label56;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label56 = value; }
+ }
+
+ internal virtual Label Label57
+ {
+ [DebuggerNonUserCode]
+ get => _Label57;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label57 = value; }
+ }
+
+ internal virtual GroupBox GroupBox14
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox14 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音4_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音4_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音4_3 = value; }
+ }
+
+ internal virtual Label Label58
+ {
+ [DebuggerNonUserCode]
+ get => _Label58;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label58 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式4_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式4_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式4_3 = value; }
+ }
+
+ internal virtual Label Label59
+ {
+ [DebuggerNonUserCode]
+ get => _Label59;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label59 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式4_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式4_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式4_3 = value; }
+ }
+
+ internal virtual Label Label60
+ {
+ [DebuggerNonUserCode]
+ get => _Label60;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label60 = value; }
+ }
+
+ internal virtual GroupBox GroupBox15
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox15 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音4_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音4_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音4_2 = value; }
+ }
+
+ internal virtual Label Label61
+ {
+ [DebuggerNonUserCode]
+ get => _Label61;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label61 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式4_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式4_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式4_2 = value; }
+ }
+
+ internal virtual Label Label62
+ {
+ [DebuggerNonUserCode]
+ get => _Label62;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label62 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式4_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式4_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式4_2 = value; }
+ }
+
+ internal virtual Label Label63
+ {
+ [DebuggerNonUserCode]
+ get => _Label63;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label63 = value; }
+ }
+
+ internal virtual GroupBox GroupBox16
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox16 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音4_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音4_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音4_1 = value; }
+ }
+
+ internal virtual Label Label64
+ {
+ [DebuggerNonUserCode]
+ get => _Label64;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label64 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式4_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式4_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式4_1 = value; }
+ }
+
+ internal virtual Label Label65
+ {
+ [DebuggerNonUserCode]
+ get => _Label65;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label65 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式4_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式4_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式4_1 = value; }
+ }
+
+ internal virtual Label Label66
+ {
+ [DebuggerNonUserCode]
+ get => _Label66;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label66 = value; }
+ }
+
+ internal virtual GroupBox GroupBox17
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox17 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音5_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音5_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音5_4 = value; }
+ }
+
+ internal virtual Label Label70
+ {
+ [DebuggerNonUserCode]
+ get => _Label70;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label70 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式5_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式5_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式5_4 = value; }
+ }
+
+ internal virtual Label Label71
+ {
+ [DebuggerNonUserCode]
+ get => _Label71;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label71 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式5_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式5_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式5_4 = value; }
+ }
+
+ internal virtual Label Label72
+ {
+ [DebuggerNonUserCode]
+ get => _Label72;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label72 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown5_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown5_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown5_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown5_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown5_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown5_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown5_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown5_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown5_B = value; }
+ }
+
+ internal virtual Label Label73
+ {
+ [DebuggerNonUserCode]
+ get => _Label73;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label73 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown5_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown5_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown5_A = value; }
+ }
+
+ internal virtual Label Label83
+ {
+ [DebuggerNonUserCode]
+ get => _Label83;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label83 = value; }
+ }
+
+ internal virtual Label Label84
+ {
+ [DebuggerNonUserCode]
+ get => _Label84;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label84 = value; }
+ }
+
+ internal virtual Label Label85
+ {
+ [DebuggerNonUserCode]
+ get => _Label85;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label85 = value; }
+ }
+
+ internal virtual GroupBox GroupBox18
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox18 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音5_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音5_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音5_3 = value; }
+ }
+
+ internal virtual Label Label86
+ {
+ [DebuggerNonUserCode]
+ get => _Label86;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label86 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式5_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式5_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式5_3 = value; }
+ }
+
+ internal virtual Label Label87
+ {
+ [DebuggerNonUserCode]
+ get => _Label87;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label87 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式5_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式5_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式5_3 = value; }
+ }
+
+ internal virtual Label Label88
+ {
+ [DebuggerNonUserCode]
+ get => _Label88;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label88 = value; }
+ }
+
+ internal virtual GroupBox GroupBox19
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox19;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox19 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音5_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音5_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音5_2 = value; }
+ }
+
+ internal virtual Label Label89
+ {
+ [DebuggerNonUserCode]
+ get => _Label89;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label89 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式5_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式5_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式5_2 = value; }
+ }
+
+ internal virtual Label Label90
+ {
+ [DebuggerNonUserCode]
+ get => _Label90;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label90 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式5_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式5_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式5_2 = value; }
+ }
+
+ internal virtual Label Label91
+ {
+ [DebuggerNonUserCode]
+ get => _Label91;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label91 = value; }
+ }
+
+ internal virtual GroupBox GroupBox20
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox20;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox20 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音5_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音5_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音5_1 = value; }
+ }
+
+ internal virtual Label Label92
+ {
+ [DebuggerNonUserCode]
+ get => _Label92;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label92 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式5_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式5_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式5_1 = value; }
+ }
+
+ internal virtual Label Label93
+ {
+ [DebuggerNonUserCode]
+ get => _Label93;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label93 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式5_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式5_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式5_1 = value; }
+ }
+
+ internal virtual Label Label94
+ {
+ [DebuggerNonUserCode]
+ get => _Label94;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label94 = value; }
+ }
+
+ internal virtual GroupBox GroupBox21
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox21;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox21 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音6_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音6_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音6_4 = value; }
+ }
+
+ internal virtual Label Label95
+ {
+ [DebuggerNonUserCode]
+ get => _Label95;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label95 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式6_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式6_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式6_4 = value; }
+ }
+
+ internal virtual Label Label96
+ {
+ [DebuggerNonUserCode]
+ get => _Label96;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label96 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式6_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式6_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式6_4 = value; }
+ }
+
+ internal virtual Label Label97
+ {
+ [DebuggerNonUserCode]
+ get => _Label97;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label97 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown6_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown6_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown6_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown6_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown6_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown6_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown6_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown6_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown6_B = value; }
+ }
+
+ internal virtual Label Label98
+ {
+ [DebuggerNonUserCode]
+ get => _Label98;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label98 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown6_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown6_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown6_A = value; }
+ }
+
+ internal virtual Label Label99
+ {
+ [DebuggerNonUserCode]
+ get => _Label99;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label99 = value; }
+ }
+
+ internal virtual Label Label100
+ {
+ [DebuggerNonUserCode]
+ get => _Label100;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label100 = value; }
+ }
+
+ internal virtual Label Label101
+ {
+ [DebuggerNonUserCode]
+ get => _Label101;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label101 = value; }
+ }
+
+ internal virtual GroupBox GroupBox22
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox22;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox22 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音6_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音6_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音6_3 = value; }
+ }
+
+ internal virtual Label Label102
+ {
+ [DebuggerNonUserCode]
+ get => _Label102;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label102 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式6_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式6_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式6_3 = value; }
+ }
+
+ internal virtual Label Label103
+ {
+ [DebuggerNonUserCode]
+ get => _Label103;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label103 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式6_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式6_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式6_3 = value; }
+ }
+
+ internal virtual Label Label104
+ {
+ [DebuggerNonUserCode]
+ get => _Label104;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label104 = value; }
+ }
+
+ internal virtual GroupBox GroupBox23
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox23;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox23 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音6_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音6_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音6_2 = value; }
+ }
+
+ internal virtual Label Label105
+ {
+ [DebuggerNonUserCode]
+ get => _Label105;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label105 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式6_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式6_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式6_2 = value; }
+ }
+
+ internal virtual Label Label106
+ {
+ [DebuggerNonUserCode]
+ get => _Label106;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label106 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式6_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式6_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式6_2 = value; }
+ }
+
+ internal virtual Label Label107
+ {
+ [DebuggerNonUserCode]
+ get => _Label107;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label107 = value; }
+ }
+
+ internal virtual GroupBox GroupBox24
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox24;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox24 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音6_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音6_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音6_1 = value; }
+ }
+
+ internal virtual Label Label108
+ {
+ [DebuggerNonUserCode]
+ get => _Label108;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label108 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式6_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式6_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式6_1 = value; }
+ }
+
+ internal virtual Label Label109
+ {
+ [DebuggerNonUserCode]
+ get => _Label109;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label109 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式6_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式6_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式6_1 = value; }
+ }
+
+ internal virtual Label Label110
+ {
+ [DebuggerNonUserCode]
+ get => _Label110;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label110 = value; }
+ }
+
+ internal virtual GroupBox GroupBox25
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox25;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox25 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音7_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音7_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音7_4 = value; }
+ }
+
+ internal virtual Label Label111
+ {
+ [DebuggerNonUserCode]
+ get => _Label111;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label111 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式7_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式7_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式7_4 = value; }
+ }
+
+ internal virtual Label Label112
+ {
+ [DebuggerNonUserCode]
+ get => _Label112;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label112 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式7_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式7_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式7_4 = value; }
+ }
+
+ internal virtual Label Label113
+ {
+ [DebuggerNonUserCode]
+ get => _Label113;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label113 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown7_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown7_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown7_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown7_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown7_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown7_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown7_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown7_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown7_B = value; }
+ }
+
+ internal virtual Label Label114
+ {
+ [DebuggerNonUserCode]
+ get => _Label114;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label114 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown7_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown7_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown7_A = value; }
+ }
+
+ internal virtual Label Label115
+ {
+ [DebuggerNonUserCode]
+ get => _Label115;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label115 = value; }
+ }
+
+ internal virtual Label Label116
+ {
+ [DebuggerNonUserCode]
+ get => _Label116;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label116 = value; }
+ }
+
+ internal virtual Label Label117
+ {
+ [DebuggerNonUserCode]
+ get => _Label117;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label117 = value; }
+ }
+
+ internal virtual GroupBox GroupBox26
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox26;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox26 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音7_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音7_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音7_3 = value; }
+ }
+
+ internal virtual Label Label118
+ {
+ [DebuggerNonUserCode]
+ get => _Label118;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label118 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式7_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式7_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式7_3 = value; }
+ }
+
+ internal virtual Label Label119
+ {
+ [DebuggerNonUserCode]
+ get => _Label119;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label119 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式7_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式7_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式7_3 = value; }
+ }
+
+ internal virtual Label Label120
+ {
+ [DebuggerNonUserCode]
+ get => _Label120;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label120 = value; }
+ }
+
+ internal virtual GroupBox GroupBox27
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox27;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox27 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音7_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音7_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音7_2 = value; }
+ }
+
+ internal virtual Label Label121
+ {
+ [DebuggerNonUserCode]
+ get => _Label121;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label121 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式7_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式7_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式7_2 = value; }
+ }
+
+ internal virtual Label Label122
+ {
+ [DebuggerNonUserCode]
+ get => _Label122;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label122 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式7_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式7_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式7_2 = value; }
+ }
+
+ internal virtual Label Label123
+ {
+ [DebuggerNonUserCode]
+ get => _Label123;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label123 = value; }
+ }
+
+ internal virtual GroupBox GroupBox28
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox28;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox28 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音7_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音7_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音7_1 = value; }
+ }
+
+ internal virtual Label Label124
+ {
+ [DebuggerNonUserCode]
+ get => _Label124;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label124 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式7_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式7_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式7_1 = value; }
+ }
+
+ internal virtual Label Label125
+ {
+ [DebuggerNonUserCode]
+ get => _Label125;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label125 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式7_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式7_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式7_1 = value; }
+ }
+
+ internal virtual Label Label126
+ {
+ [DebuggerNonUserCode]
+ get => _Label126;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label126 = value; }
+ }
+
+ internal virtual GroupBox GroupBox29
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox29;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox29 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音8_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音8_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音8_4 = value; }
+ }
+
+ internal virtual Label Label127
+ {
+ [DebuggerNonUserCode]
+ get => _Label127;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label127 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式8_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式8_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式8_4 = value; }
+ }
+
+ internal virtual Label Label128
+ {
+ [DebuggerNonUserCode]
+ get => _Label128;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label128 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式8_4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式8_4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式8_4 = value; }
+ }
+
+ internal virtual Label Label129
+ {
+ [DebuggerNonUserCode]
+ get => _Label129;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label129 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown8_D
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown8_D;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown8_D = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown8_C
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown8_C;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown8_C = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown8_B
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown8_B;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown8_B = value; }
+ }
+
+ internal virtual Label Label130
+ {
+ [DebuggerNonUserCode]
+ get => _Label130;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label130 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown8_A
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown8_A;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown8_A = value; }
+ }
+
+ internal virtual Label Label131
+ {
+ [DebuggerNonUserCode]
+ get => _Label131;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label131 = value; }
+ }
+
+ internal virtual Label Label132
+ {
+ [DebuggerNonUserCode]
+ get => _Label132;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label132 = value; }
+ }
+
+ internal virtual Label Label133
+ {
+ [DebuggerNonUserCode]
+ get => _Label133;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label133 = value; }
+ }
+
+ internal virtual GroupBox GroupBox30
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox30;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox30 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音8_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音8_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音8_3 = value; }
+ }
+
+ internal virtual Label Label134
+ {
+ [DebuggerNonUserCode]
+ get => _Label134;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label134 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式8_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式8_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式8_3 = value; }
+ }
+
+ internal virtual Label Label135
+ {
+ [DebuggerNonUserCode]
+ get => _Label135;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label135 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式8_3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式8_3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式8_3 = value; }
+ }
+
+ internal virtual Label Label136
+ {
+ [DebuggerNonUserCode]
+ get => _Label136;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label136 = value; }
+ }
+
+ internal virtual GroupBox GroupBox31
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox31;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox31 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音8_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音8_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音8_2 = value; }
+ }
+
+ internal virtual Label Label137
+ {
+ [DebuggerNonUserCode]
+ get => _Label137;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label137 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式8_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式8_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式8_2 = value; }
+ }
+
+ internal virtual Label Label138
+ {
+ [DebuggerNonUserCode]
+ get => _Label138;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label138 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式8_2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式8_2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式8_2 = value; }
+ }
+
+ internal virtual Label Label139
+ {
+ [DebuggerNonUserCode]
+ get => _Label139;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label139 = value; }
+ }
+
+ internal virtual GroupBox GroupBox32
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox32;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox32 = value; }
+ }
+
+ internal virtual ComboBox ComboBox提示音8_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox提示音8_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox提示音8_1 = value; }
+ }
+
+ internal virtual Label Label140
+ {
+ [DebuggerNonUserCode]
+ get => _Label140;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label140 = value; }
+ }
+
+ internal virtual ComboBox ComboBox解开两音后的响应方式8_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox解开两音后的响应方式8_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox解开两音后的响应方式8_1 = value; }
+ }
+
+ internal virtual Label Label141
+ {
+ [DebuggerNonUserCode]
+ get => _Label141;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label141 = value; }
+ }
+
+ internal virtual ComboBox ComboBox两音的组合方式8_1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox两音的组合方式8_1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox两音的组合方式8_1 = value; }
+ }
+
+ internal virtual Label Label142
+ {
+ [DebuggerNonUserCode]
+ get => _Label142;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label142 = value; }
+ }
+
+ internal virtual ComboBox ComboBox37
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox37;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox37 = value; }
+ }
+
+ internal virtual Label Label67
+ {
+ [DebuggerNonUserCode]
+ get => _Label67;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label67 = value; }
+ }
+
+ internal virtual ComboBox ComboBox38
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox38;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox38 = value; }
+ }
+
+ internal virtual Label Label68
+ {
+ [DebuggerNonUserCode]
+ get => _Label68;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label68 = value; }
+ }
+
+ internal virtual ComboBox ComboBox39
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox39;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox39 = value; }
+ }
+
+ internal virtual Label Label69
+ {
+ [DebuggerNonUserCode]
+ get => _Label69;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label69 = value; }
+ }
+
+ internal virtual ComboBox ComboBox40
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox40;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox40 = value; }
+ }
+
+ internal virtual Label Label74
+ {
+ [DebuggerNonUserCode]
+ get => _Label74;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label74 = value; }
+ }
+
+ internal virtual ComboBox ComboBox41
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox41;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox41 = value; }
+ }
+
+ internal virtual Label Label75
+ {
+ [DebuggerNonUserCode]
+ get => _Label75;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label75 = value; }
+ }
+
+ internal virtual ComboBox ComboBox42
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox42;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox42 = value; }
+ }
+
+ internal virtual Label Label76
+ {
+ [DebuggerNonUserCode]
+ get => _Label76;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label76 = value; }
+ }
+
+ internal virtual ComboBox ComboBox43
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox43;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox43 = value; }
+ }
+
+ internal virtual Label Label77
+ {
+ [DebuggerNonUserCode]
+ get => _Label77;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label77 = value; }
+ }
+
+ internal virtual ComboBox ComboBox44
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox44;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox44 = value; }
+ }
+
+ internal virtual Label Label78
+ {
+ [DebuggerNonUserCode]
+ get => _Label78;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label78 = value; }
+ }
+
+ internal virtual ComboBox ComboBox45
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox45;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox45 = value; }
+ }
+
+ internal virtual Label Label79
+ {
+ [DebuggerNonUserCode]
+ get => _Label79;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label79 = value; }
+ }
+
+ internal virtual ComboBox ComboBox46
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox46;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox46 = value; }
+ }
+
+ internal virtual Label Label80
+ {
+ [DebuggerNonUserCode]
+ get => _Label80;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label80 = value; }
+ }
+
+ internal virtual ComboBox ComboBox47
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox47;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox47 = value; }
+ }
+
+ internal virtual Label Label81
+ {
+ [DebuggerNonUserCode]
+ get => _Label81;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label81 = value; }
+ }
+
+ internal virtual ComboBox ComboBox48
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox48;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox48 = value; }
+ }
+
+ internal virtual Label Label82
+ {
+ [DebuggerNonUserCode]
+ get => _Label82;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label82 = value; }
+ }
+
+ internal virtual ComboBox ComboBox自动复位时间
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox自动复位时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox自动复位时间 = value; }
+ }
+
+ internal virtual ComboBox ComboBox预载波时间
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox预载波时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox预载波时间 = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn Column第一个音频率
+ {
+ [DebuggerNonUserCode]
+ get => _Column第一个音频率;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column第一个音频率 = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn Column第二个音频率
+ {
+ [DebuggerNonUserCode]
+ get => _Column第二个音频率;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column第二个音频率 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column第一个音持续时间
+ {
+ [DebuggerNonUserCode]
+ get => _Column第一个音持续时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column第一个音持续时间 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column第二个音持续时间
+ {
+ [DebuggerNonUserCode]
+ get => _Column第二个音持续时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column第二个音持续时间 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column音频间隔时间
+ {
+ [DebuggerNonUserCode]
+ get => _Column音频间隔时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column音频间隔时间 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column长音持续时间
+ {
+ [DebuggerNonUserCode]
+ get => _Column长音持续时间;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column长音持续时间 = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn Column别名
+ {
+ [DebuggerNonUserCode]
+ get => _Column别名;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column别名 = value; }
+ }
+
+ public void _2ToneForm_Deactivate(object sender, EventArgs e)
+ {
+ DataGridView1.EndEdit();
+ var num1 = 1024;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_A.Value, 10M)), checked(num1 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_B.Value, 10M)), checked(num1 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_C.Value, 10M)), checked(num1 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1_D.Value, 10M)), checked(num1 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_1, checked(num1 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_1, checked(num1 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_1, checked(num1 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_2, checked(num1 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_2, checked(num1 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_2, checked(num1 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_3, checked(num1 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_3, checked(num1 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_3, checked(num1 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式1_4, checked(num1 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式1_4, checked(num1 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音1_4, checked(num1 + 19), publicva.AllBit, 0);
+ var num2 = 1056;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_A.Value, 10M)), checked(num2 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_B.Value, 10M)), checked(num2 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_C.Value, 10M)), checked(num2 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2_D.Value, 10M)), checked(num2 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_1, checked(num2 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_1, checked(num2 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_1, checked(num2 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_2, checked(num2 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_2, checked(num2 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_2, checked(num2 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_3, checked(num2 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_3, checked(num2 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_3, checked(num2 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式2_4, checked(num2 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式2_4, checked(num2 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音2_4, checked(num2 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num3 = 1088;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_A.Value, 10M)), checked(num3 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_B.Value, 10M)), checked(num3 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_C.Value, 10M)), checked(num3 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3_D.Value, 10M)), checked(num3 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_1, checked(num3 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_1, checked(num3 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_1, checked(num3 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_2, checked(num3 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_2, checked(num3 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_2, checked(num3 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_3, checked(num3 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_3, checked(num3 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_3, checked(num3 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式3_4, checked(num3 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式3_4, checked(num3 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音3_4, checked(num3 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num4 = 1120;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_A.Value, 10M)), checked(num4 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_B.Value, 10M)), checked(num4 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_C.Value, 10M)), checked(num4 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4_D.Value, 10M)), checked(num4 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_1, checked(num4 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_1, checked(num4 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_1, checked(num4 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_2, checked(num4 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_2, checked(num4 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_2, checked(num4 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_3, checked(num4 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_3, checked(num4 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_3, checked(num4 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式4_4, checked(num4 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式4_4, checked(num4 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音4_4, checked(num4 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num5 = 1152;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_A.Value, 10M)), checked(num5 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_B.Value, 10M)), checked(num5 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_C.Value, 10M)), checked(num5 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5_D.Value, 10M)), checked(num5 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_1, checked(num5 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_1, checked(num5 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_1, checked(num5 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_2, checked(num5 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_2, checked(num5 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_2, checked(num5 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_3, checked(num5 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_3, checked(num5 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_3, checked(num5 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式5_4, checked(num5 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式5_4, checked(num5 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音5_4, checked(num5 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num6 = 1184;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_A.Value, 10M)), checked(num6 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_B.Value, 10M)), checked(num6 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_C.Value, 10M)), checked(num6 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6_D.Value, 10M)), checked(num6 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_1, checked(num6 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_1, checked(num6 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_1, checked(num6 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_2, checked(num6 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_2, checked(num6 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_2, checked(num6 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_3, checked(num6 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_3, checked(num6 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_3, checked(num6 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式6_4, checked(num6 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式6_4, checked(num6 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音6_4, checked(num6 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num7 = 1216;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_A.Value, 10M)), checked(num7 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_B.Value, 10M)), checked(num7 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_C.Value, 10M)), checked(num7 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7_D.Value, 10M)), checked(num7 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_1, checked(num7 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_1, checked(num7 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_1, checked(num7 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_2, checked(num7 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_2, checked(num7 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_2, checked(num7 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_3, checked(num7 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_3, checked(num7 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_3, checked(num7 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式7_4, checked(num7 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式7_4, checked(num7 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音7_4, checked(num7 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num8 = 1248;
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_A.Value, 10M)), checked(num8 + 0));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_B.Value, 10M)), checked(num8 + 2));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_C.Value, 10M)), checked(num8 + 4));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8_D.Value, 10M)), checked(num8 + 6));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_1, checked(num8 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_1, checked(num8 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_1, checked(num8 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_2, checked(num8 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_2, checked(num8 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_2, checked(num8 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_3, checked(num8 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_3, checked(num8 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_3, checked(num8 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox两音的组合方式8_4, checked(num8 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox解开两音后的响应方式8_4, checked(num8 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox提示音8_4, checked(num8 + 19), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+
+ var num9 = 1280;
+ var rowIndex = 0;
+ do
+ {
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第一个音频率", rowIndex].Value, "", false))
+ {
+ try
+ {
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(
+ Conversions.ToInteger(Operators.MultiplyObject(DataGridView1["Column第一个音频率", rowIndex].Value, 10)),
+ checked(num9 + 0 + rowIndex * 16));
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(
+ Conversions.ToInteger(Operators.MultiplyObject(DataGridView1["Column第二个音频率", rowIndex].Value, 10)),
+ checked(num9 + 2 + rowIndex * 16));
+ publicva.EEPROM_Byte[checked(num9 + 4 + rowIndex * 16)] =
+ checked((byte) (Column第一个音持续时间.Items.IndexOf(
+ RuntimeHelpers.GetObjectValue(DataGridView1["Column第一个音持续时间", rowIndex].Value)) + 5));
+ publicva.EEPROM_Byte[checked(num9 + 5 + rowIndex * 16)] =
+ checked((byte) (Column第二个音持续时间.Items.IndexOf(
+ RuntimeHelpers.GetObjectValue(DataGridView1["Column第二个音持续时间", rowIndex].Value)) + 5));
+ publicva.EEPROM_Byte[checked(num9 + 6 + rowIndex * 16)] =
+ checked((byte) Column音频间隔时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column音频间隔时间", rowIndex].Value)));
+ publicva.EEPROM_Byte[checked(num9 + 7 + rowIndex * 16)] =
+ Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)) != 0
+ ? checked((byte) (Column长音持续时间.Items.IndexOf(
+ RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)) - 1 + 5))
+ : checked((byte) Column长音持续时间.Items.IndexOf(
+ RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)));
+ var ascii = Encoding.ASCII;
+ var objArray1 = new object[5];
+ var objArray2 = objArray1;
+ var Instance1 = DataGridView1["Column别名", rowIndex].Value;
+ var Instance2 = Instance1;
+ var objArray3 = new object[1];
+ var objArray4 = objArray3;
+ var num10 = 8;
+
+ // ISSUE: variable of a boxed type
+ var local = (ValueType) num10;
+ objArray4[0] = local;
+ var Arguments1 = objArray3;
+ var objectValue =
+ RuntimeHelpers.GetObjectValue(NewLateBinding.LateGet(Instance2, null, "PadRight", Arguments1, null, null, null));
+ objArray2[0] = objectValue;
+ objArray1[1] = 0;
+ objArray1[2] = 8;
+ objArray1[3] = publicva.EEPROM_Byte;
+ objArray1[4] = checked(num9 + 8 + rowIndex * 16);
+ var objArray5 = objArray1;
+ var Arguments2 = objArray5;
+ var flagArray = new bool[5]
+ {
+ true,
+ false,
+ false,
+ true,
+ false
+ };
+ var CopyBack = flagArray;
+ NewLateBinding.LateCall(ascii, null, "GetBytes", Arguments2, null, null, CopyBack, true);
+ if (flagArray[0])
+ NewLateBinding.LateSetComplex(Instance1, null, "PadRight", new object[2]
+ {
+ num10,
+ RuntimeHelpers.GetObjectValue(objArray5[0])
+ }, null, null, true, true);
+ if (flagArray[3])
+ publicva.EEPROM_Byte = (byte[]) Conversions.ChangeType(RuntimeHelpers.GetObjectValue(objArray5[3]), typeof(byte[]));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
+ else
+ {
+ publicva.EEPROM_Byte[checked(num9 + 0 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 1 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 2 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 3 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 4 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 5 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 6 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 7 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 8 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 9 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 10 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 11 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 12 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 13 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 14 + rowIndex * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num9 + 15 + rowIndex * 16)] = 0;
+ }
+
+ checked
+ {
+ ++rowIndex;
+ }
+ }
+ while (rowIndex <= 31);
+
+ var num11 = 1792;
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox自动复位时间, checked(num11 + 0), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox预载波时间, checked(num11 + 4), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox侧音, checked(num11 + 6), publicva.Bit3, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox短哔音, checked(num11 + 6), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox空闲自动应答, checked(num11 + 6), publicva.Bit1, 0);
+ }
+
+ private void _2ToneForm_FormClosing(object sender, FormClosingEventArgs e)
+ {
+ MyProject.Forms.MDIParent1.两音TToolStripMenuItem.Checked = false;
+ }
+
+ public void _2ToneForm_Load(object sender, EventArgs e)
+ {
+ MyProject.Forms.MDIParent1.两音TToolStripMenuItem.Checked = true;
+ DataGridView1.RowCount = 32;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ DataGridView1.TopLeftHeaderCell.Value = "序号";
else
- Init_2ToneEnMsg(str, rowIndex);
- }
- else if (Operators.CompareString(str, "", false) == 0)
- DataGridView1["Column第一个音频率", rowIndex].Value = RuntimeHelpers.GetObjectValue(DataGridView1["Column第二个音频率", rowIndex].Value);
+ DataGridView1.TopLeftHeaderCell.Value = "NO.";
+ SetControl_BeepItems(ComboBox提示音1_1);
+ SetControl_BeepItems(ComboBox提示音1_2);
+ SetControl_BeepItems(ComboBox提示音1_3);
+ SetControl_BeepItems(ComboBox提示音1_4);
+ SetControl_BeepItems(ComboBox提示音2_1);
+ SetControl_BeepItems(ComboBox提示音2_2);
+ SetControl_BeepItems(ComboBox提示音2_3);
+ SetControl_BeepItems(ComboBox提示音2_4);
+ SetControl_BeepItems(ComboBox提示音3_1);
+ SetControl_BeepItems(ComboBox提示音3_2);
+ SetControl_BeepItems(ComboBox提示音3_3);
+ SetControl_BeepItems(ComboBox提示音3_4);
+ SetControl_BeepItems(ComboBox提示音4_1);
+ SetControl_BeepItems(ComboBox提示音4_2);
+ SetControl_BeepItems(ComboBox提示音4_3);
+ SetControl_BeepItems(ComboBox提示音4_4);
+ SetControl_BeepItems(ComboBox提示音5_1);
+ SetControl_BeepItems(ComboBox提示音5_2);
+ SetControl_BeepItems(ComboBox提示音5_3);
+ SetControl_BeepItems(ComboBox提示音5_4);
+ SetControl_BeepItems(ComboBox提示音6_1);
+ SetControl_BeepItems(ComboBox提示音6_2);
+ SetControl_BeepItems(ComboBox提示音6_3);
+ SetControl_BeepItems(ComboBox提示音6_4);
+ SetControl_BeepItems(ComboBox提示音7_1);
+ SetControl_BeepItems(ComboBox提示音7_2);
+ SetControl_BeepItems(ComboBox提示音7_3);
+ SetControl_BeepItems(ComboBox提示音7_4);
+ SetControl_BeepItems(ComboBox提示音8_1);
+ SetControl_BeepItems(ComboBox提示音8_2);
+ SetControl_BeepItems(ComboBox提示音8_3);
+ SetControl_BeepItems(ComboBox提示音8_4);
+ var num1 = 1024;
+ try
+ {
+ NumericUpDown1_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num1 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown1_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown1_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num1 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown1_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown1_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num1 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown1_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown1_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num1 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown1_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_1, checked(num1 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_1, checked(num1 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_1, checked(num1 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_2, checked(num1 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_2, checked(num1 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_2, checked(num1 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_3, checked(num1 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_3, checked(num1 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_3, checked(num1 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式1_4, checked(num1 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式1_4, checked(num1 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音1_4, checked(num1 + 19), publicva.AllBit, 0);
+ var num2 = 1056;
+ try
+ {
+ NumericUpDown2_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num2 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown2_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown2_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num2 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown2_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown2_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num2 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown2_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown2_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num2 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown2_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_1, checked(num2 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_1, checked(num2 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_1, checked(num2 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_2, checked(num2 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_2, checked(num2 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_2, checked(num2 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_3, checked(num2 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_3, checked(num2 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_3, checked(num2 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式2_4, checked(num2 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式2_4, checked(num2 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音2_4, checked(num2 + 19), publicva.AllBit, 0);
+ var num3 = 1088;
+ try
+ {
+ NumericUpDown3_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num3 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown3_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown3_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num3 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown3_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown3_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num3 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown3_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown3_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num3 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown3_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_1, checked(num3 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_1, checked(num3 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_1, checked(num3 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_2, checked(num3 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_2, checked(num3 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_2, checked(num3 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_3, checked(num3 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_3, checked(num3 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_3, checked(num3 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式3_4, checked(num3 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式3_4, checked(num3 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音3_4, checked(num3 + 19), publicva.AllBit, 0);
+ var num4 = 1120;
+ try
+ {
+ NumericUpDown4_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num4 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown4_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown4_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num4 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown4_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown4_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num4 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown4_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown4_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num4 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown4_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_1, checked(num4 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_1, checked(num4 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_1, checked(num4 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_2, checked(num4 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_2, checked(num4 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_2, checked(num4 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_3, checked(num4 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_3, checked(num4 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_3, checked(num4 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式4_4, checked(num4 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式4_4, checked(num4 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音4_4, checked(num4 + 19), publicva.AllBit, 0);
+ var num5 = 1152;
+ try
+ {
+ NumericUpDown5_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num5 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown5_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown5_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num5 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown5_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown5_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num5 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown5_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown5_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num5 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown5_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_1, checked(num5 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_1, checked(num5 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_1, checked(num5 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_2, checked(num5 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_2, checked(num5 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_2, checked(num5 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_3, checked(num5 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_3, checked(num5 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_3, checked(num5 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式5_4, checked(num5 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式5_4, checked(num5 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音5_4, checked(num5 + 19), publicva.AllBit, 0);
+ var num6 = 1184;
+ try
+ {
+ NumericUpDown6_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num6 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown6_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown6_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num6 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown6_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown6_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num6 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown6_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown6_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num6 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown6_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_1, checked(num6 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_1, checked(num6 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_1, checked(num6 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_2, checked(num6 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_2, checked(num6 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_2, checked(num6 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_3, checked(num6 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_3, checked(num6 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_3, checked(num6 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式6_4, checked(num6 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式6_4, checked(num6 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音6_4, checked(num6 + 19), publicva.AllBit, 0);
+ var num7 = 1216;
+ try
+ {
+ NumericUpDown7_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num7 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown7_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown7_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num7 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown7_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown7_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num7 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown7_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown7_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num7 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown7_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_1, checked(num7 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_1, checked(num7 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_1, checked(num7 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_2, checked(num7 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_2, checked(num7 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_2, checked(num7 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_3, checked(num7 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_3, checked(num7 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_3, checked(num7 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式7_4, checked(num7 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式7_4, checked(num7 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音7_4, checked(num7 + 19), publicva.AllBit, 0);
+ var num8 = 1248;
+ try
+ {
+ NumericUpDown8_A.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num8 + 0)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown8_A.Value = 321.7M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown8_B.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num8 + 2)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown8_B.Value = 928.1M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown8_C.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num8 + 4)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown8_C.Value = 626.5M;
+ ProjectData.ClearProjectError();
+ }
+
+ try
+ {
+ NumericUpDown8_D.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num8 + 6)), 10));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ NumericUpDown8_D.Value = 2043.8M;
+ ProjectData.ClearProjectError();
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_1, checked(num8 + 8), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_1, checked(num8 + 9), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_1, checked(num8 + 10), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_2, checked(num8 + 11), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_2, checked(num8 + 12), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_2, checked(num8 + 13), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_3, checked(num8 + 14), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_3, checked(num8 + 15), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_3, checked(num8 + 16), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox两音的组合方式8_4, checked(num8 + 17), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox解开两音后的响应方式8_4, checked(num8 + 18), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.Judge_SetControl_SetControl_U8_Data(ComboBox提示音8_4, checked(num8 + 19), publicva.AllBit, 0);
+ var num9 = 1280;
+ var num10 = 0;
+ do
+ {
+ if (Conversions.ToBoolean(Operators.AndObject(
+ Operators.CompareObjectGreaterEqual(32000, MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num9 + 0 + num10 * 16)),
+ false),
+ Operators.CompareObjectGreaterEqual(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num9 + 0 + num10 * 16)), 2885,
+ false))))
+ {
+ DataGridView1["Column第一个音频率", num10].Value = string.Format("{0:#000.0}",
+ Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num9 + 0 + num10 * 16)), 10));
+ DataGridView1["Column第二个音频率", num10].Value = string.Format("{0:#000.0}",
+ Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num9 + 2 + num10 * 16)), 10));
+ DataGridView1["Column第一个音持续时间", num10].Value =
+ RuntimeHelpers.GetObjectValue(Column第一个音持续时间.Items[checked(publicva.EEPROM_Byte[num9 + 4 + num10 * 16] - 5)]);
+ DataGridView1["Column第二个音持续时间", num10].Value =
+ RuntimeHelpers.GetObjectValue(Column第二个音持续时间.Items[checked(publicva.EEPROM_Byte[num9 + 5 + num10 * 16] - 5)]);
+ DataGridView1["Column音频间隔时间", num10].Value =
+ RuntimeHelpers.GetObjectValue(Column音频间隔时间.Items[publicva.EEPROM_Byte[checked(num9 + 6 + num10 * 16)]]);
+ DataGridView1["Column长音持续时间", num10].Value = publicva.EEPROM_Byte[checked(num9 + 7 + num10 * 16)] >= 5
+ ? RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[checked(publicva.EEPROM_Byte[num9 + 7 + num10 * 16] - 5)])
+ : RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[0]);
+ DataGridView1["Column别名", num10].Value =
+ Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked(num9 + 8 + num10 * 16), 8));
+ }
+ else
+ Clr_2ToneEnMsg(num10);
+
+ checked
+ {
+ ++num10;
+ }
+ }
+ while (num10 <= 31);
+
+ var num11 = 1792;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox自动复位时间, checked(num11 + 0), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox预载波时间, checked(num11 + 4), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox侧音, checked(num11 + 6), publicva.Bit3, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox短哔音, checked(num11 + 6), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox空闲自动应答, checked(num11 + 6), publicva.Bit1, 0);
}
- else
- Clr_2ToneEnMsg(rowIndex);
- }
- else
- {
- if (columnIndex != DataGridView1["Column第二个音频率", rowIndex].ColumnIndex)
- return;
- if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
- DataGridView1["Column第二个音频率", rowIndex].Value = RuntimeHelpers.GetObjectValue(JudgeInputBeepFreq(Conversions.ToString(DataGridView1["Column第二个音频率", rowIndex].Value), 2885, 32000));
- if (Operators.ConditionalCompareObjectEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
- DataGridView1["Column第二个音频率", rowIndex].Value = RuntimeHelpers.GetObjectValue(DataGridView1["Column第一个音频率", rowIndex].Value);
- }
- }
- private void DataGridView1_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (DataGridView1.CurrentCell.ColumnIndex == DataGridView1["Column第一个音频率", 0].ColumnIndex | DataGridView1.CurrentCell.ColumnIndex == DataGridView1["Column第二个音频率", 0].ColumnIndex)
- {
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- var control = (DataGridViewTextBoxEditingControl) e.Control;
- control.ImeMode = ImeMode.Disable;
- control.KeyPress += Cells_KeyPress;
- }
- else
- {
- if (DataGridView1.CurrentCell.ColumnIndex != DataGridView1["Column别名", 0].ColumnIndex)
- return;
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- var control = (DataGridViewTextBoxEditingControl) e.Control;
- control.ImeMode = ImeMode.Disable;
- control.KeyPress += Text_Cells_KeyPress;
- }
- }
-
- private void Cells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
- e.Handled = false;
- else
- e.Handled = true;
- }
-
- private void Text_Cells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsLetterOrDigit(e.KeyChar) | e.KeyChar == '\b' | char.IsPunctuation(e.KeyChar) | Operators.CompareString(Conversions.ToString(e.KeyChar), " ", false) == 0)
- e.Handled = false;
- else
- e.Handled = true;
- }
-
- private void DataGridView1_MouseClick(object sender, MouseEventArgs e)
- {
- var rowIndex = DataGridView1.CurrentCell.RowIndex;
- var columnIndex = DataGridView1.CurrentCell.ColumnIndex;
- if (Operators.ConditionalCompareObjectEqual("", DataGridView1["Column第一个音频率", rowIndex].Value, false))
- {
- DataGridView1.CurrentCell = DataGridView1.Rows[rowIndex].Cells[0];
- DataGridView1.BeginEdit(true);
- }
- else if (columnIndex == 1 | columnIndex == 3 | columnIndex == 4)
- {
- if (0 != Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)))
+ private void DataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
- DataGridView1.ReadOnly = true;
- DataGridView1.CurrentCell = DataGridView1.Rows[rowIndex].Cells[5];
- DataGridView1.BeginEdit(true);
+ var rowIndex = DataGridView1.CurrentCell.RowIndex;
+ var columnIndex = DataGridView1.CurrentCell.ColumnIndex;
+ if (columnIndex == DataGridView1["Column第一个音频率", rowIndex].ColumnIndex)
+ {
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第一个音频率", rowIndex].Value, "", false))
+ {
+ var str = Conversions.ToString(JudgeInputBeepFreq(Conversions.ToString(DataGridView1["Column第一个音频率", rowIndex].Value), 2885,
+ 32000));
+ DataGridView1["Column第一个音频率", rowIndex].Value = str;
+ if (Operators.ConditionalCompareObjectEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
+ {
+ if (Operators.CompareString(str, "", false) == 0)
+ Clr_2ToneEnMsg(rowIndex);
+ else
+ Init_2ToneEnMsg(str, rowIndex);
+ }
+ else if (Operators.CompareString(str, "", false) == 0)
+ DataGridView1["Column第一个音频率", rowIndex].Value = RuntimeHelpers.GetObjectValue(DataGridView1["Column第二个音频率", rowIndex].Value);
+ }
+ else
+ Clr_2ToneEnMsg(rowIndex);
+ }
+ else
+ {
+ if (columnIndex != DataGridView1["Column第二个音频率", rowIndex].ColumnIndex)
+ return;
+ if (Operators.ConditionalCompareObjectNotEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
+ DataGridView1["Column第二个音频率", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(JudgeInputBeepFreq(Conversions.ToString(DataGridView1["Column第二个音频率", rowIndex].Value), 2885,
+ 32000));
+ if (Operators.ConditionalCompareObjectEqual(DataGridView1["Column第二个音频率", rowIndex].Value, "", false))
+ DataGridView1["Column第二个音频率", rowIndex].Value = RuntimeHelpers.GetObjectValue(DataGridView1["Column第一个音频率", rowIndex].Value);
+ }
}
- else
- DataGridView1.ReadOnly = false;
- }
- else
- DataGridView1.ReadOnly = false;
- }
- private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
- e.Graphics.DrawString(checked (e.RowIndex + 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush, checked (e.RowBounds.Location.X + 10), checked (e.RowBounds.Location.Y + 5));
- }
-
- public void SetControl_BeepItems(Control object_x)
- {
- MyProject.Forms._5ToneForm.SetComboBoxControl_Items_5Tone_EncodeList(object_x, 4608, 8, 251, 32, 3);
- }
-
- private void ComboBox提示音1_1_MouseDown(object sender, MouseEventArgs e)
- {
- SetControl_BeepItems(ComboBox提示音1_1);
- var num = 1024;
- try
- {
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox提示音1_1, checked (num + 10), publicva.AllBit, 0);
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- }
-
- public object JudgeInputBeepFreq(string StrFreq, int Min, int Max)
- {
- string str;
- try
- {
- var num = checked ((uint) Math.Round(unchecked (Conversions.ToDouble(StrFreq) * 10.0)));
- if (Max >= num & num >= Min)
+ private void DataGridView1_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
{
- str = string.Format("{0:#000.0}", num / 10.0);
+ if (DataGridView1.CurrentCell.ColumnIndex == DataGridView1["Column第一个音频率", 0].ColumnIndex |
+ DataGridView1.CurrentCell.ColumnIndex == DataGridView1["Column第二个音频率", 0].ColumnIndex)
+ {
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ var control = (DataGridViewTextBoxEditingControl) e.Control;
+ control.ImeMode = ImeMode.Disable;
+ control.KeyPress += Cells_KeyPress;
+ }
+ else
+ {
+ if (DataGridView1.CurrentCell.ColumnIndex != DataGridView1["Column别名", 0].ColumnIndex)
+ return;
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ var control = (DataGridViewTextBoxEditingControl) e.Control;
+ control.ImeMode = ImeMode.Disable;
+ control.KeyPress += Text_Cells_KeyPress;
+ }
}
- else
+
+ private void Cells_KeyPress(object sender, KeyPressEventArgs e)
{
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), ".", false) == 0)
+ e.Handled = false;
+ else
+ e.Handled = true;
}
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- MyProject.Forms.ChannelMsg.Msgbox_Msg("频率超出范围", "frequency out of range,out of range");
- str = "";
- ProjectData.ClearProjectError();
- }
- return str;
- }
- public void Clr_2ToneEnMsg(int i)
- {
- DataGridView1["Column第一个音频率", i].Value = "";
- DataGridView1["Column第二个音频率", i].Value = "";
- DataGridView1["Column第一个音持续时间", i].Value = "";
- DataGridView1["Column第二个音持续时间", i].Value = "";
- DataGridView1["Column音频间隔时间", i].Value = "";
- DataGridView1["Column长音持续时间", i].Value = "";
- DataGridView1["Column别名", i].Value = "";
- }
+ private void Text_Cells_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsLetterOrDigit(e.KeyChar) | e.KeyChar == '\b' | char.IsPunctuation(e.KeyChar) |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), " ", false) == 0)
+ e.Handled = false;
+ else
+ e.Handled = true;
+ }
- public void Init_2ToneEnMsg(string Freq, int i)
- {
- DataGridView1["Column第一个音频率", i].Value = Freq;
- DataGridView1["Column第二个音频率", i].Value = Freq;
- DataGridView1["Column第一个音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column第一个音持续时间.Items[5]);
- DataGridView1["Column第二个音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column第二个音持续时间.Items[25]);
- DataGridView1["Column音频间隔时间", i].Value = RuntimeHelpers.GetObjectValue(Column音频间隔时间.Items[0]);
- DataGridView1["Column长音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[0]);
- DataGridView1["Column别名", i].Value = "";
- }
+ private void DataGridView1_MouseClick(object sender, MouseEventArgs e)
+ {
+ var rowIndex = DataGridView1.CurrentCell.RowIndex;
+ var columnIndex = DataGridView1.CurrentCell.ColumnIndex;
+ if (Operators.ConditionalCompareObjectEqual("", DataGridView1["Column第一个音频率", rowIndex].Value, false))
+ {
+ DataGridView1.CurrentCell = DataGridView1.Rows[rowIndex]
+ .Cells[0];
+ DataGridView1.BeginEdit(true);
+ }
+ else if (columnIndex == 1 | columnIndex == 3 | columnIndex == 4)
+ {
+ if (0 != Column长音持续时间.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column长音持续时间", rowIndex].Value)))
+ {
+ DataGridView1.ReadOnly = true;
+ DataGridView1.CurrentCell = DataGridView1.Rows[rowIndex]
+ .Cells[5];
+ DataGridView1.BeginEdit(true);
+ }
+ else
+ DataGridView1.ReadOnly = false;
+ }
+ else
+ DataGridView1.ReadOnly = false;
+ }
- private void Button1_Click(object sender, EventArgs e) => Close();
- }
-}
+ private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
+ e.Graphics.DrawString(checked(e.RowIndex + 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush,
+ checked(e.RowBounds.Location.X + 10), checked(e.RowBounds.Location.Y + 5));
+ }
+
+ public void SetControl_BeepItems(Control object_x)
+ {
+ MyProject.Forms._5ToneForm.SetComboBoxControl_Items_5Tone_EncodeList(object_x, 4608, 8, 251, 32, 3);
+ }
+
+ private void ComboBox提示音1_1_MouseDown(object sender, MouseEventArgs e)
+ {
+ SetControl_BeepItems(ComboBox提示音1_1);
+ var num = 1024;
+ try
+ {
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox提示音1_1, checked(num + 10), publicva.AllBit, 0);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ public object JudgeInputBeepFreq(string StrFreq, int Min, int Max)
+ {
+ string str;
+ try
+ {
+ var num = checked((uint) Math.Round(unchecked(Conversions.ToDouble(StrFreq) * 10.0)));
+ if (Max >= num & num >= Min)
+ {
+ str = string.Format("{0:#000.0}", num / 10.0);
+ }
+ else
+ {
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("frequency out of range,out of range");
+ str = string.Empty;
+ }
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Frequency out of range");
+ str = string.Empty;
+ ProjectData.ClearProjectError();
+ }
+
+ return str;
+ }
+
+ public void Clr_2ToneEnMsg(int i)
+ {
+ DataGridView1["Column第一个音频率", i].Value = "";
+ DataGridView1["Column第二个音频率", i].Value = "";
+ DataGridView1["Column第一个音持续时间", i].Value = "";
+ DataGridView1["Column第二个音持续时间", i].Value = "";
+ DataGridView1["Column音频间隔时间", i].Value = "";
+ DataGridView1["Column长音持续时间", i].Value = "";
+ DataGridView1["Column别名", i].Value = "";
+ }
+
+ public void Init_2ToneEnMsg(string Freq, int i)
+ {
+ DataGridView1["Column第一个音频率", i].Value = Freq;
+ DataGridView1["Column第二个音频率", i].Value = Freq;
+ DataGridView1["Column第一个音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column第一个音持续时间.Items[5]);
+ DataGridView1["Column第二个音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column第二个音持续时间.Items[25]);
+ DataGridView1["Column音频间隔时间", i].Value = RuntimeHelpers.GetObjectValue(Column音频间隔时间.Items[0]);
+ DataGridView1["Column长音持续时间", i].Value = RuntimeHelpers.GetObjectValue(Column长音持续时间.Items[0]);
+ DataGridView1["Column别名", i].Value = "";
+ }
+
+ private void Button1_Click(object sender, EventArgs e) => Close();
+ }
+}
\ No newline at end of file
diff --git a/HPG-68D/_5ToneForm.cs b/HPG-68D/_5ToneForm.cs
index d0fd1a7..d2ee650 100644
--- a/HPG-68D/_5ToneForm.cs
+++ b/HPG-68D/_5ToneForm.cs
@@ -16,4924 +16,5147 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Windows.Forms;
-
namespace HPG_68D
{
- [DesignerGenerated]
- public class _5ToneForm : Form
- {
- private static ArrayList __ENCList = new ArrayList();
- private IContainer components;
- [AccessedThroughProperty("TabControl1")]
- private TabControl _TabControl1;
- [AccessedThroughProperty("TabPage1")]
- private TabPage _TabPage1;
- [AccessedThroughProperty("TabPage2")]
- private TabPage _TabPage2;
- [AccessedThroughProperty("DataGridView1")]
- private DataGridView _DataGridView1;
- [AccessedThroughProperty("GroupBox1")]
- private GroupBox _GroupBox1;
- [AccessedThroughProperty("NumericUpDown1")]
- private NumericUpDown _NumericUpDown1;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- [AccessedThroughProperty("NumericUpDown16")]
- private NumericUpDown _NumericUpDown16;
- [AccessedThroughProperty("Label16")]
- private Label _Label16;
- [AccessedThroughProperty("NumericUpDown14")]
- private NumericUpDown _NumericUpDown14;
- [AccessedThroughProperty("Label14")]
- private Label _Label14;
- [AccessedThroughProperty("NumericUpDown12")]
- private NumericUpDown _NumericUpDown12;
- [AccessedThroughProperty("Label12")]
- private Label _Label12;
- [AccessedThroughProperty("NumericUpDown10")]
- private NumericUpDown _NumericUpDown10;
- [AccessedThroughProperty("Label10")]
- private Label _Label10;
- [AccessedThroughProperty("NumericUpDown8")]
- private NumericUpDown _NumericUpDown8;
- [AccessedThroughProperty("NumericUpDown15")]
- private NumericUpDown _NumericUpDown15;
- [AccessedThroughProperty("Label8")]
- private Label _Label8;
- [AccessedThroughProperty("NumericUpDown13")]
- private NumericUpDown _NumericUpDown13;
- [AccessedThroughProperty("NumericUpDown6")]
- private NumericUpDown _NumericUpDown6;
- [AccessedThroughProperty("NumericUpDown11")]
- private NumericUpDown _NumericUpDown11;
- [AccessedThroughProperty("Label6")]
- private Label _Label6;
- [AccessedThroughProperty("NumericUpDown9")]
- private NumericUpDown _NumericUpDown9;
- [AccessedThroughProperty("NumericUpDown4")]
- private NumericUpDown _NumericUpDown4;
- [AccessedThroughProperty("Label15")]
- private Label _Label15;
- [AccessedThroughProperty("NumericUpDown7")]
- private NumericUpDown _NumericUpDown7;
- [AccessedThroughProperty("Label13")]
- private Label _Label13;
- [AccessedThroughProperty("Label4")]
- private Label _Label4;
- [AccessedThroughProperty("Label11")]
- private Label _Label11;
- [AccessedThroughProperty("NumericUpDown5")]
- private NumericUpDown _NumericUpDown5;
- [AccessedThroughProperty("Label9")]
- private Label _Label9;
- [AccessedThroughProperty("NumericUpDown2")]
- private NumericUpDown _NumericUpDown2;
- [AccessedThroughProperty("Label7")]
- private Label _Label7;
- [AccessedThroughProperty("NumericUpDown3")]
- private NumericUpDown _NumericUpDown3;
- [AccessedThroughProperty("Label5")]
- private Label _Label5;
- [AccessedThroughProperty("Label2")]
- private Label _Label2;
- [AccessedThroughProperty("Label3")]
- private Label _Label3;
- [AccessedThroughProperty("NumericUpDown18")]
- private NumericUpDown _NumericUpDown18;
- [AccessedThroughProperty("Label18")]
- private Label _Label18;
- [AccessedThroughProperty("NumericUpDown17")]
- private NumericUpDown _NumericUpDown17;
- [AccessedThroughProperty("Label17")]
- private Label _Label17;
- [AccessedThroughProperty("TabPage3")]
- private TabPage _TabPage3;
- [AccessedThroughProperty("TabPage4")]
- private TabPage _TabPage4;
- [AccessedThroughProperty("ComboBox1")]
- private ComboBox _ComboBox1;
- [AccessedThroughProperty("Label22")]
- private Label _Label22;
- [AccessedThroughProperty("NumericUpDown21")]
- private NumericUpDown _NumericUpDown21;
- [AccessedThroughProperty("Label21")]
- private Label _Label21;
- [AccessedThroughProperty("NumericUpDown20")]
- private NumericUpDown _NumericUpDown20;
- [AccessedThroughProperty("Label20")]
- private Label _Label20;
- [AccessedThroughProperty("NumericUpDown19")]
- private NumericUpDown _NumericUpDown19;
- [AccessedThroughProperty("Label19")]
- private Label _Label19;
- [AccessedThroughProperty("DataGridView2")]
- private DataGridView _DataGridView2;
- [AccessedThroughProperty("CheckBox5_Tone侧音")]
- private CheckBox _CheckBox5_Tone侧音;
- [AccessedThroughProperty("SplitContainer1")]
- private SplitContainer _SplitContainer1;
- [AccessedThroughProperty("NumericUpDown编码_信息码")]
- private NumericUpDown _NumericUpDown编码_信息码;
- [AccessedThroughProperty("Label23")]
- private Label _Label23;
- [AccessedThroughProperty("CheckBox第一个音扩展")]
- private CheckBox _CheckBox第一个音扩展;
- [AccessedThroughProperty("Label24")]
- private Label _Label24;
- [AccessedThroughProperty("TextBox1")]
- private TextBox _TextBox1;
- [AccessedThroughProperty("Label27")]
- private Label _Label27;
- [AccessedThroughProperty("CheckBox第二个音扩展")]
- private CheckBox _CheckBox第二个音扩展;
- [AccessedThroughProperty("ComboBox2")]
- private ComboBox _ComboBox2;
- [AccessedThroughProperty("Label26")]
- private Label _Label26;
- [AccessedThroughProperty("Label25")]
- private Label _Label25;
- [AccessedThroughProperty("Button2")]
- private Button _Button2;
- [AccessedThroughProperty("Button1")]
- private Button _Button1;
- [AccessedThroughProperty("NumericUpDown25")]
- private NumericUpDown _NumericUpDown25;
- [AccessedThroughProperty("Label29")]
- private Label _Label29;
- [AccessedThroughProperty("ComboBox3")]
- private ComboBox _ComboBox3;
- [AccessedThroughProperty("Label28")]
- private Label _Label28;
- [AccessedThroughProperty("SplitContainer2")]
- private SplitContainer _SplitContainer2;
- [AccessedThroughProperty("NumericUpDown解码_信息码")]
- private NumericUpDown _NumericUpDown解码_信息码;
- [AccessedThroughProperty("Label30")]
- private Label _Label30;
- [AccessedThroughProperty("Button3")]
- private Button _Button3;
- [AccessedThroughProperty("Button4")]
- private Button _Button4;
- [AccessedThroughProperty("ComboBox7")]
- private ComboBox _ComboBox7;
- [AccessedThroughProperty("ComboBox6")]
- private ComboBox _ComboBox6;
- [AccessedThroughProperty("ComboBox5")]
- private ComboBox _ComboBox5;
- [AccessedThroughProperty("ComboBox4")]
- private ComboBox _ComboBox4;
- [AccessedThroughProperty("Label32")]
- private Label _Label32;
- [AccessedThroughProperty("Label33")]
- private Label _Label33;
- [AccessedThroughProperty("Label35")]
- private Label _Label35;
- [AccessedThroughProperty("Label34")]
- private Label _Label34;
- [AccessedThroughProperty("TextBox3")]
- private TextBox _TextBox3;
- [AccessedThroughProperty("TextBox4")]
- private TextBox _TextBox4;
- [AccessedThroughProperty("ComboBox10")]
- private ComboBox _ComboBox10;
- [AccessedThroughProperty("Label37")]
- private Label _Label37;
- [AccessedThroughProperty("ComboBox9")]
- private ComboBox _ComboBox9;
- [AccessedThroughProperty("Label36")]
- private Label _Label36;
- [AccessedThroughProperty("ComboBox8")]
- private ComboBox _ComboBox8;
- [AccessedThroughProperty("Label31")]
- private Label _Label31;
- [AccessedThroughProperty("SplitContainer3")]
- private SplitContainer _SplitContainer3;
- [AccessedThroughProperty("NumericUpDown27")]
- private NumericUpDown _NumericUpDown27;
- [AccessedThroughProperty("Label38")]
- private Label _Label38;
- [AccessedThroughProperty("Button5")]
- private Button _Button5;
- [AccessedThroughProperty("Button6")]
- private Button _Button6;
- [AccessedThroughProperty("ComboBox11")]
- private ComboBox _ComboBox11;
- [AccessedThroughProperty("ComboBox12")]
- private ComboBox _ComboBox12;
- [AccessedThroughProperty("ComboBox13")]
- private ComboBox _ComboBox13;
- [AccessedThroughProperty("ComboBox15")]
- private ComboBox _ComboBox15;
- [AccessedThroughProperty("Label40")]
- private Label _Label40;
- [AccessedThroughProperty("ComboBox16")]
- private ComboBox _ComboBox16;
- [AccessedThroughProperty("Label41")]
- private Label _Label41;
- [AccessedThroughProperty("ComboBox17")]
- private ComboBox _ComboBox17;
- [AccessedThroughProperty("Label42")]
- private Label _Label42;
- [AccessedThroughProperty("Label43")]
- private Label _Label43;
- [AccessedThroughProperty("Label44")]
- private Label _Label44;
- [AccessedThroughProperty("Label45")]
- private Label _Label45;
- [AccessedThroughProperty("GroupBox3")]
- private GroupBox _GroupBox3;
- [AccessedThroughProperty("CheckBox2")]
- private CheckBox _CheckBox2;
- [AccessedThroughProperty("CheckBox1")]
- private CheckBox _CheckBox1;
- [AccessedThroughProperty("GroupBox2")]
- private GroupBox _GroupBox2;
- [AccessedThroughProperty("CheckBox8")]
- private CheckBox _CheckBox8;
- [AccessedThroughProperty("CheckBox4")]
- private CheckBox _CheckBox4;
- [AccessedThroughProperty("CheckBox7")]
- private CheckBox _CheckBox7;
- [AccessedThroughProperty("CheckBox3")]
- private CheckBox _CheckBox3;
- [AccessedThroughProperty("CheckBox6")]
- private CheckBox _CheckBox6;
- [AccessedThroughProperty("CheckBox5")]
- private CheckBox _CheckBox5;
- [AccessedThroughProperty("Button7")]
- private Button _Button7;
- [AccessedThroughProperty("Button8")]
- private Button _Button8;
- [AccessedThroughProperty("Button9")]
- private Button _Button9;
- [AccessedThroughProperty("ComboBox14")]
- private ComboBox _ComboBox14;
- [AccessedThroughProperty("ComboBox18")]
- private ComboBox _ComboBox18;
- [AccessedThroughProperty("Column0")]
- private DataGridViewComboBoxColumn _Column0;
- [AccessedThroughProperty("Column1")]
- private DataGridViewComboBoxColumn _Column1;
- [AccessedThroughProperty("Column2")]
- private DataGridViewComboBoxColumn _Column2;
- [AccessedThroughProperty("DataGridViewComboBoxColumn1")]
- private DataGridViewComboBoxColumn _DataGridViewComboBoxColumn1;
- [AccessedThroughProperty("DataGridViewComboBoxColumn2")]
- private DataGridViewTextBoxColumn _DataGridViewComboBoxColumn2;
-
- [DebuggerNonUserCode]
- static _5ToneForm()
+ [DesignerGenerated]
+ public class _5ToneForm : Form
{
- }
+ private static ArrayList __ENCList = new ArrayList();
+ private IContainer components;
+ [AccessedThroughProperty("TabControl1")]
+ private TabControl _TabControl1;
+ [AccessedThroughProperty("TabPage1")]
+ private TabPage _TabPage1;
+ [AccessedThroughProperty("TabPage2")]
+ private TabPage _TabPage2;
+ [AccessedThroughProperty("DataGridView1")]
+ private DataGridView _DataGridView1;
+ [AccessedThroughProperty("GroupBox1")]
+ private GroupBox _GroupBox1;
+ [AccessedThroughProperty("NumericUpDown1")]
+ private NumericUpDown _NumericUpDown1;
+ [AccessedThroughProperty("Label1")]
+ private Label _Label1;
+ [AccessedThroughProperty("NumericUpDown16")]
+ private NumericUpDown _NumericUpDown16;
+ [AccessedThroughProperty("Label16")]
+ private Label _Label16;
+ [AccessedThroughProperty("NumericUpDown14")]
+ private NumericUpDown _NumericUpDown14;
+ [AccessedThroughProperty("Label14")]
+ private Label _Label14;
+ [AccessedThroughProperty("NumericUpDown12")]
+ private NumericUpDown _NumericUpDown12;
+ [AccessedThroughProperty("Label12")]
+ private Label _Label12;
+ [AccessedThroughProperty("NumericUpDown10")]
+ private NumericUpDown _NumericUpDown10;
+ [AccessedThroughProperty("Label10")]
+ private Label _Label10;
+ [AccessedThroughProperty("NumericUpDown8")]
+ private NumericUpDown _NumericUpDown8;
+ [AccessedThroughProperty("NumericUpDown15")]
+ private NumericUpDown _NumericUpDown15;
+ [AccessedThroughProperty("Label8")]
+ private Label _Label8;
+ [AccessedThroughProperty("NumericUpDown13")]
+ private NumericUpDown _NumericUpDown13;
+ [AccessedThroughProperty("NumericUpDown6")]
+ private NumericUpDown _NumericUpDown6;
+ [AccessedThroughProperty("NumericUpDown11")]
+ private NumericUpDown _NumericUpDown11;
+ [AccessedThroughProperty("Label6")]
+ private Label _Label6;
+ [AccessedThroughProperty("NumericUpDown9")]
+ private NumericUpDown _NumericUpDown9;
+ [AccessedThroughProperty("NumericUpDown4")]
+ private NumericUpDown _NumericUpDown4;
+ [AccessedThroughProperty("Label15")]
+ private Label _Label15;
+ [AccessedThroughProperty("NumericUpDown7")]
+ private NumericUpDown _NumericUpDown7;
+ [AccessedThroughProperty("Label13")]
+ private Label _Label13;
+ [AccessedThroughProperty("Label4")]
+ private Label _Label4;
+ [AccessedThroughProperty("Label11")]
+ private Label _Label11;
+ [AccessedThroughProperty("NumericUpDown5")]
+ private NumericUpDown _NumericUpDown5;
+ [AccessedThroughProperty("Label9")]
+ private Label _Label9;
+ [AccessedThroughProperty("NumericUpDown2")]
+ private NumericUpDown _NumericUpDown2;
+ [AccessedThroughProperty("Label7")]
+ private Label _Label7;
+ [AccessedThroughProperty("NumericUpDown3")]
+ private NumericUpDown _NumericUpDown3;
+ [AccessedThroughProperty("Label5")]
+ private Label _Label5;
+ [AccessedThroughProperty("Label2")]
+ private Label _Label2;
+ [AccessedThroughProperty("Label3")]
+ private Label _Label3;
+ [AccessedThroughProperty("NumericUpDown18")]
+ private NumericUpDown _NumericUpDown18;
+ [AccessedThroughProperty("Label18")]
+ private Label _Label18;
+ [AccessedThroughProperty("NumericUpDown17")]
+ private NumericUpDown _NumericUpDown17;
+ [AccessedThroughProperty("Label17")]
+ private Label _Label17;
+ [AccessedThroughProperty("TabPage3")]
+ private TabPage _TabPage3;
+ [AccessedThroughProperty("TabPage4")]
+ private TabPage _TabPage4;
+ [AccessedThroughProperty("ComboBox1")]
+ private ComboBox _ComboBox1;
+ [AccessedThroughProperty("Label22")]
+ private Label _Label22;
+ [AccessedThroughProperty("NumericUpDown21")]
+ private NumericUpDown _NumericUpDown21;
+ [AccessedThroughProperty("Label21")]
+ private Label _Label21;
+ [AccessedThroughProperty("NumericUpDown20")]
+ private NumericUpDown _NumericUpDown20;
+ [AccessedThroughProperty("Label20")]
+ private Label _Label20;
+ [AccessedThroughProperty("NumericUpDown19")]
+ private NumericUpDown _NumericUpDown19;
+ [AccessedThroughProperty("Label19")]
+ private Label _Label19;
+ [AccessedThroughProperty("DataGridView2")]
+ private DataGridView _DataGridView2;
+ [AccessedThroughProperty("CheckBox5_Tone侧音")]
+ private CheckBox _CheckBox5_Tone侧音;
+ [AccessedThroughProperty("SplitContainer1")]
+ private SplitContainer _SplitContainer1;
+ [AccessedThroughProperty("NumericUpDown编码_信息码")]
+ private NumericUpDown _NumericUpDown编码_信息码;
+ [AccessedThroughProperty("Label23")]
+ private Label _Label23;
+ [AccessedThroughProperty("CheckBox第一个音扩展")]
+ private CheckBox _CheckBox第一个音扩展;
+ [AccessedThroughProperty("Label24")]
+ private Label _Label24;
+ [AccessedThroughProperty("TextBox1")]
+ private TextBox _TextBox1;
+ [AccessedThroughProperty("Label27")]
+ private Label _Label27;
+ [AccessedThroughProperty("CheckBox第二个音扩展")]
+ private CheckBox _CheckBox第二个音扩展;
+ [AccessedThroughProperty("ComboBox2")]
+ private ComboBox _ComboBox2;
+ [AccessedThroughProperty("Label26")]
+ private Label _Label26;
+ [AccessedThroughProperty("Label25")]
+ private Label _Label25;
+ [AccessedThroughProperty("Button2")]
+ private Button _Button2;
+ [AccessedThroughProperty("Button1")]
+ private Button _Button1;
+ [AccessedThroughProperty("NumericUpDown25")]
+ private NumericUpDown _NumericUpDown25;
+ [AccessedThroughProperty("Label29")]
+ private Label _Label29;
+ [AccessedThroughProperty("ComboBox3")]
+ private ComboBox _ComboBox3;
+ [AccessedThroughProperty("Label28")]
+ private Label _Label28;
+ [AccessedThroughProperty("SplitContainer2")]
+ private SplitContainer _SplitContainer2;
+ [AccessedThroughProperty("NumericUpDown解码_信息码")]
+ private NumericUpDown _NumericUpDown解码_信息码;
+ [AccessedThroughProperty("Label30")]
+ private Label _Label30;
+ [AccessedThroughProperty("Button3")]
+ private Button _Button3;
+ [AccessedThroughProperty("Button4")]
+ private Button _Button4;
+ [AccessedThroughProperty("ComboBox7")]
+ private ComboBox _ComboBox7;
+ [AccessedThroughProperty("ComboBox6")]
+ private ComboBox _ComboBox6;
+ [AccessedThroughProperty("ComboBox5")]
+ private ComboBox _ComboBox5;
+ [AccessedThroughProperty("ComboBox4")]
+ private ComboBox _ComboBox4;
+ [AccessedThroughProperty("Label32")]
+ private Label _Label32;
+ [AccessedThroughProperty("Label33")]
+ private Label _Label33;
+ [AccessedThroughProperty("Label35")]
+ private Label _Label35;
+ [AccessedThroughProperty("Label34")]
+ private Label _Label34;
+ [AccessedThroughProperty("TextBox3")]
+ private TextBox _TextBox3;
+ [AccessedThroughProperty("TextBox4")]
+ private TextBox _TextBox4;
+ [AccessedThroughProperty("ComboBox10")]
+ private ComboBox _ComboBox10;
+ [AccessedThroughProperty("Label37")]
+ private Label _Label37;
+ [AccessedThroughProperty("ComboBox9")]
+ private ComboBox _ComboBox9;
+ [AccessedThroughProperty("Label36")]
+ private Label _Label36;
+ [AccessedThroughProperty("ComboBox8")]
+ private ComboBox _ComboBox8;
+ [AccessedThroughProperty("Label31")]
+ private Label _Label31;
+ [AccessedThroughProperty("SplitContainer3")]
+ private SplitContainer _SplitContainer3;
+ [AccessedThroughProperty("NumericUpDown27")]
+ private NumericUpDown _NumericUpDown27;
+ [AccessedThroughProperty("Label38")]
+ private Label _Label38;
+ [AccessedThroughProperty("Button5")]
+ private Button _Button5;
+ [AccessedThroughProperty("Button6")]
+ private Button _Button6;
+ [AccessedThroughProperty("ComboBox11")]
+ private ComboBox _ComboBox11;
+ [AccessedThroughProperty("ComboBox12")]
+ private ComboBox _ComboBox12;
+ [AccessedThroughProperty("ComboBox13")]
+ private ComboBox _ComboBox13;
+ [AccessedThroughProperty("ComboBox15")]
+ private ComboBox _ComboBox15;
+ [AccessedThroughProperty("Label40")]
+ private Label _Label40;
+ [AccessedThroughProperty("ComboBox16")]
+ private ComboBox _ComboBox16;
+ [AccessedThroughProperty("Label41")]
+ private Label _Label41;
+ [AccessedThroughProperty("ComboBox17")]
+ private ComboBox _ComboBox17;
+ [AccessedThroughProperty("Label42")]
+ private Label _Label42;
+ [AccessedThroughProperty("Label43")]
+ private Label _Label43;
+ [AccessedThroughProperty("Label44")]
+ private Label _Label44;
+ [AccessedThroughProperty("Label45")]
+ private Label _Label45;
+ [AccessedThroughProperty("GroupBox3")]
+ private GroupBox _GroupBox3;
+ [AccessedThroughProperty("CheckBox2")]
+ private CheckBox _CheckBox2;
+ [AccessedThroughProperty("CheckBox1")]
+ private CheckBox _CheckBox1;
+ [AccessedThroughProperty("GroupBox2")]
+ private GroupBox _GroupBox2;
+ [AccessedThroughProperty("CheckBox8")]
+ private CheckBox _CheckBox8;
+ [AccessedThroughProperty("CheckBox4")]
+ private CheckBox _CheckBox4;
+ [AccessedThroughProperty("CheckBox7")]
+ private CheckBox _CheckBox7;
+ [AccessedThroughProperty("CheckBox3")]
+ private CheckBox _CheckBox3;
+ [AccessedThroughProperty("CheckBox6")]
+ private CheckBox _CheckBox6;
+ [AccessedThroughProperty("CheckBox5")]
+ private CheckBox _CheckBox5;
+ [AccessedThroughProperty("Button7")]
+ private Button _Button7;
+ [AccessedThroughProperty("Button8")]
+ private Button _Button8;
+ [AccessedThroughProperty("Button9")]
+ private Button _Button9;
+ [AccessedThroughProperty("ComboBox14")]
+ private ComboBox _ComboBox14;
+ [AccessedThroughProperty("ComboBox18")]
+ private ComboBox _ComboBox18;
+ [AccessedThroughProperty("Column0")]
+ private DataGridViewComboBoxColumn _Column0;
+ [AccessedThroughProperty("Column1")]
+ private DataGridViewComboBoxColumn _Column1;
+ [AccessedThroughProperty("Column2")]
+ private DataGridViewComboBoxColumn _Column2;
+ [AccessedThroughProperty("DataGridViewComboBoxColumn1")]
+ private DataGridViewComboBoxColumn _DataGridViewComboBoxColumn1;
+ [AccessedThroughProperty("DataGridViewComboBoxColumn2")]
+ private DataGridViewTextBoxColumn _DataGridViewComboBoxColumn2;
- [DebuggerNonUserCode]
- public _5ToneForm()
- {
- Deactivate += _5ToneForm_Deactivate;
- FormClosing += _5ToneForm_FormClosing;
- Load += _5ToneForm_Load;
- __ENCList.Add(new WeakReference(this));
- InitializeComponent();
- }
-
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- if (disposing && components != null)
- components.Dispose();
- base.Dispose(disposing);
- }
-
- [DebuggerStepThrough]
- private void InitializeComponent()
- {
- var componentResourceManager = new ComponentResourceManager(typeof (_5ToneForm));
- var gridViewCellStyle1 = new DataGridViewCellStyle();
- var gridViewCellStyle2 = new DataGridViewCellStyle();
- var gridViewCellStyle3 = new DataGridViewCellStyle();
- var gridViewCellStyle4 = new DataGridViewCellStyle();
- var gridViewCellStyle5 = new DataGridViewCellStyle();
- var gridViewCellStyle6 = new DataGridViewCellStyle();
- var gridViewCellStyle7 = new DataGridViewCellStyle();
- var gridViewCellStyle8 = new DataGridViewCellStyle();
- SplitContainer1 = new SplitContainer();
- NumericUpDown编码_信息码 = new NumericUpDown();
- Label23 = new Label();
- Button2 = new Button();
- Button1 = new Button();
- TextBox1 = new TextBox();
- Label27 = new Label();
- CheckBox第二个音扩展 = new CheckBox();
- CheckBox第一个音扩展 = new CheckBox();
- ComboBox14 = new ComboBox();
- ComboBox18 = new ComboBox();
- ComboBox2 = new ComboBox();
- Label26 = new Label();
- Label25 = new Label();
- Label24 = new Label();
- SplitContainer2 = new SplitContainer();
- NumericUpDown解码_信息码 = new NumericUpDown();
- Label30 = new Label();
- Button3 = new Button();
- Button4 = new Button();
- TextBox3 = new TextBox();
- TextBox4 = new TextBox();
- ComboBox7 = new ComboBox();
- ComboBox6 = new ComboBox();
- ComboBox5 = new ComboBox();
- ComboBox10 = new ComboBox();
- Label37 = new Label();
- ComboBox9 = new ComboBox();
- Label36 = new Label();
- ComboBox8 = new ComboBox();
- Label31 = new Label();
- ComboBox4 = new ComboBox();
- Label32 = new Label();
- Label33 = new Label();
- Label35 = new Label();
- Label34 = new Label();
- SplitContainer3 = new SplitContainer();
- NumericUpDown27 = new NumericUpDown();
- Label38 = new Label();
- GroupBox3 = new GroupBox();
- CheckBox8 = new CheckBox();
- CheckBox4 = new CheckBox();
- CheckBox7 = new CheckBox();
- CheckBox3 = new CheckBox();
- CheckBox6 = new CheckBox();
- CheckBox2 = new CheckBox();
- CheckBox5 = new CheckBox();
- CheckBox1 = new CheckBox();
- GroupBox2 = new GroupBox();
- ComboBox16 = new ComboBox();
- Label43 = new Label();
- Label42 = new Label();
- ComboBox17 = new ComboBox();
- Label41 = new Label();
- ComboBox13 = new ComboBox();
- Label40 = new Label();
- ComboBox15 = new ComboBox();
- Button5 = new Button();
- Button6 = new Button();
- ComboBox11 = new ComboBox();
- ComboBox12 = new ComboBox();
- Label44 = new Label();
- Label45 = new Label();
- TabControl1 = new TabControl();
- TabPage1 = new TabPage();
- GroupBox1 = new GroupBox();
- NumericUpDown16 = new NumericUpDown();
- Label16 = new Label();
- NumericUpDown13 = new NumericUpDown();
- NumericUpDown12 = new NumericUpDown();
- NumericUpDown14 = new NumericUpDown();
- NumericUpDown11 = new NumericUpDown();
- NumericUpDown5 = new NumericUpDown();
- Label14 = new Label();
- Label12 = new Label();
- NumericUpDown10 = new NumericUpDown();
- Label10 = new Label();
- NumericUpDown8 = new NumericUpDown();
- NumericUpDown15 = new NumericUpDown();
- Label8 = new Label();
- NumericUpDown6 = new NumericUpDown();
- Label6 = new Label();
- NumericUpDown9 = new NumericUpDown();
- NumericUpDown4 = new NumericUpDown();
- Label15 = new Label();
- NumericUpDown7 = new NumericUpDown();
- Label13 = new Label();
- Label4 = new Label();
- Label11 = new Label();
- Label9 = new Label();
- NumericUpDown2 = new NumericUpDown();
- Label7 = new Label();
- NumericUpDown3 = new NumericUpDown();
- Label5 = new Label();
- Label2 = new Label();
- Label3 = new Label();
- NumericUpDown1 = new NumericUpDown();
- Label1 = new Label();
- DataGridView1 = new DataGridView();
- Column0 = new DataGridViewComboBoxColumn();
- Column1 = new DataGridViewComboBoxColumn();
- Column2 = new DataGridViewComboBoxColumn();
- TabPage2 = new TabPage();
- CheckBox5_Tone侧音 = new CheckBox();
- DataGridView2 = new DataGridView();
- DataGridViewComboBoxColumn1 = new DataGridViewComboBoxColumn();
- DataGridViewComboBoxColumn2 = new DataGridViewTextBoxColumn();
- ComboBox1 = new ComboBox();
- Label22 = new Label();
- NumericUpDown21 = new NumericUpDown();
- Label21 = new Label();
- NumericUpDown20 = new NumericUpDown();
- Label20 = new Label();
- NumericUpDown19 = new NumericUpDown();
- Label19 = new Label();
- NumericUpDown18 = new NumericUpDown();
- Label18 = new Label();
- NumericUpDown17 = new NumericUpDown();
- Label17 = new Label();
- TabPage3 = new TabPage();
- NumericUpDown25 = new NumericUpDown();
- Label29 = new Label();
- ComboBox3 = new ComboBox();
- Label28 = new Label();
- TabPage4 = new TabPage();
- Button7 = new Button();
- Button8 = new Button();
- Button9 = new Button();
- SplitContainer1.Panel1.SuspendLayout();
- SplitContainer1.Panel2.SuspendLayout();
- SplitContainer1.SuspendLayout();
- NumericUpDown编码_信息码.BeginInit();
- SplitContainer2.Panel1.SuspendLayout();
- SplitContainer2.Panel2.SuspendLayout();
- SplitContainer2.SuspendLayout();
- NumericUpDown解码_信息码.BeginInit();
- SplitContainer3.Panel1.SuspendLayout();
- SplitContainer3.Panel2.SuspendLayout();
- SplitContainer3.SuspendLayout();
- NumericUpDown27.BeginInit();
- GroupBox3.SuspendLayout();
- GroupBox2.SuspendLayout();
- TabControl1.SuspendLayout();
- TabPage1.SuspendLayout();
- GroupBox1.SuspendLayout();
- NumericUpDown16.BeginInit();
- NumericUpDown13.BeginInit();
- NumericUpDown12.BeginInit();
- NumericUpDown14.BeginInit();
- NumericUpDown11.BeginInit();
- NumericUpDown5.BeginInit();
- NumericUpDown10.BeginInit();
- NumericUpDown8.BeginInit();
- NumericUpDown15.BeginInit();
- NumericUpDown6.BeginInit();
- NumericUpDown9.BeginInit();
- NumericUpDown4.BeginInit();
- NumericUpDown7.BeginInit();
- NumericUpDown2.BeginInit();
- NumericUpDown3.BeginInit();
- NumericUpDown1.BeginInit();
- ((ISupportInitialize) DataGridView1).BeginInit();
- TabPage2.SuspendLayout();
- ((ISupportInitialize) DataGridView2).BeginInit();
- NumericUpDown21.BeginInit();
- NumericUpDown20.BeginInit();
- NumericUpDown19.BeginInit();
- NumericUpDown18.BeginInit();
- NumericUpDown17.BeginInit();
- TabPage3.SuspendLayout();
- NumericUpDown25.BeginInit();
- TabPage4.SuspendLayout();
- SuspendLayout();
- SplitContainer1.AccessibleDescription = null;
- SplitContainer1.AccessibleName = null;
- componentResourceManager.ApplyResources(SplitContainer1, "SplitContainer1");
- SplitContainer1.BackgroundImage = null;
- SplitContainer1.BorderStyle = BorderStyle.FixedSingle;
- SplitContainer1.Font = null;
- SplitContainer1.Name = "SplitContainer1";
- SplitContainer1.Panel1.AccessibleDescription = null;
- SplitContainer1.Panel1.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer1.Panel1, "SplitContainer1.Panel1");
- SplitContainer1.Panel1.BackgroundImage = null;
- SplitContainer1.Panel1.Controls.Add(NumericUpDown编码_信息码);
- SplitContainer1.Panel1.Controls.Add(Label23);
- SplitContainer1.Panel1.Font = null;
- SplitContainer1.Panel2.AccessibleDescription = null;
- SplitContainer1.Panel2.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer1.Panel2, "SplitContainer1.Panel2");
- SplitContainer1.Panel2.BackgroundImage = null;
- SplitContainer1.Panel2.Controls.Add(Button2);
- SplitContainer1.Panel2.Controls.Add(Button1);
- SplitContainer1.Panel2.Controls.Add(TextBox1);
- SplitContainer1.Panel2.Controls.Add(Label27);
- SplitContainer1.Panel2.Controls.Add(CheckBox第二个音扩展);
- SplitContainer1.Panel2.Controls.Add(CheckBox第一个音扩展);
- SplitContainer1.Panel2.Controls.Add(ComboBox14);
- SplitContainer1.Panel2.Controls.Add(ComboBox18);
- SplitContainer1.Panel2.Controls.Add(ComboBox2);
- SplitContainer1.Panel2.Controls.Add(Label26);
- SplitContainer1.Panel2.Controls.Add(Label25);
- SplitContainer1.Panel2.Controls.Add(Label24);
- SplitContainer1.Panel2.Font = null;
- NumericUpDown编码_信息码.AccessibleDescription = null;
- NumericUpDown编码_信息码.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown编码_信息码, "NumericUpDown编码_信息码");
- NumericUpDown编码_信息码.Font = null;
- var numericUpDown编码信息码1 = NumericUpDown编码_信息码;
- var num1 = new Decimal(new int[4]{ 32, 0, 0, 0 });
- var num2 = num1;
- numericUpDown编码信息码1.Maximum = num2;
- var numericUpDown编码信息码2 = NumericUpDown编码_信息码;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num3 = num1;
- numericUpDown编码信息码2.Minimum = num3;
- NumericUpDown编码_信息码.Name = "NumericUpDown编码_信息码";
- var numericUpDown编码信息码3 = NumericUpDown编码_信息码;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num4 = num1;
- numericUpDown编码信息码3.Value = num4;
- Label23.AccessibleDescription = null;
- Label23.AccessibleName = null;
- componentResourceManager.ApplyResources(Label23, "Label23");
- Label23.Font = null;
- Label23.Name = "Label23";
- Button2.AccessibleDescription = null;
- Button2.AccessibleName = null;
- componentResourceManager.ApplyResources(Button2, "Button2");
- Button2.BackgroundImage = null;
- Button2.Font = null;
- Button2.Name = "Button2";
- Button2.UseVisualStyleBackColor = true;
- Button1.AccessibleDescription = null;
- Button1.AccessibleName = null;
- componentResourceManager.ApplyResources(Button1, "Button1");
- Button1.BackgroundImage = null;
- Button1.Font = null;
- Button1.Name = "Button1";
- Button1.UseVisualStyleBackColor = true;
- TextBox1.AccessibleDescription = null;
- TextBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox1, "TextBox1");
- TextBox1.BackgroundImage = null;
- TextBox1.Font = null;
- TextBox1.Name = "TextBox1";
- Label27.AccessibleDescription = null;
- Label27.AccessibleName = null;
- componentResourceManager.ApplyResources(Label27, "Label27");
- Label27.Font = null;
- Label27.Name = "Label27";
- CheckBox第二个音扩展.AccessibleDescription = null;
- CheckBox第二个音扩展.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox第二个音扩展, "CheckBox第二个音扩展");
- CheckBox第二个音扩展.BackgroundImage = null;
- CheckBox第二个音扩展.Font = null;
- CheckBox第二个音扩展.Name = "CheckBox第二个音扩展";
- CheckBox第二个音扩展.UseVisualStyleBackColor = true;
- CheckBox第一个音扩展.AccessibleDescription = null;
- CheckBox第一个音扩展.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox第一个音扩展, "CheckBox第一个音扩展");
- CheckBox第一个音扩展.BackgroundImage = null;
- CheckBox第一个音扩展.Font = null;
- CheckBox第一个音扩展.Name = "CheckBox第一个音扩展";
- CheckBox第一个音扩展.UseVisualStyleBackColor = true;
- ComboBox14.AccessibleDescription = null;
- ComboBox14.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox14, "ComboBox14");
- ComboBox14.BackgroundImage = null;
- ComboBox14.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox14.Font = null;
- ComboBox14.FormattingEnabled = true;
- ComboBox14.Items.AddRange(new object[33]
- {
- componentResourceManager.GetString("ComboBox14.Items"),
- componentResourceManager.GetString("ComboBox14.Items1"),
- componentResourceManager.GetString("ComboBox14.Items2"),
- componentResourceManager.GetString("ComboBox14.Items3"),
- componentResourceManager.GetString("ComboBox14.Items4"),
- componentResourceManager.GetString("ComboBox14.Items5"),
- componentResourceManager.GetString("ComboBox14.Items6"),
- componentResourceManager.GetString("ComboBox14.Items7"),
- componentResourceManager.GetString("ComboBox14.Items8"),
- componentResourceManager.GetString("ComboBox14.Items9"),
- componentResourceManager.GetString("ComboBox14.Items10"),
- componentResourceManager.GetString("ComboBox14.Items11"),
- componentResourceManager.GetString("ComboBox14.Items12"),
- componentResourceManager.GetString("ComboBox14.Items13"),
- componentResourceManager.GetString("ComboBox14.Items14"),
- componentResourceManager.GetString("ComboBox14.Items15"),
- componentResourceManager.GetString("ComboBox14.Items16"),
- componentResourceManager.GetString("ComboBox14.Items17"),
- componentResourceManager.GetString("ComboBox14.Items18"),
- componentResourceManager.GetString("ComboBox14.Items19"),
- componentResourceManager.GetString("ComboBox14.Items20"),
- componentResourceManager.GetString("ComboBox14.Items21"),
- componentResourceManager.GetString("ComboBox14.Items22"),
- componentResourceManager.GetString("ComboBox14.Items23"),
- componentResourceManager.GetString("ComboBox14.Items24"),
- componentResourceManager.GetString("ComboBox14.Items25"),
- componentResourceManager.GetString("ComboBox14.Items26"),
- componentResourceManager.GetString("ComboBox14.Items27"),
- componentResourceManager.GetString("ComboBox14.Items28"),
- componentResourceManager.GetString("ComboBox14.Items29"),
- componentResourceManager.GetString("ComboBox14.Items30"),
- componentResourceManager.GetString("ComboBox14.Items31"),
- componentResourceManager.GetString("ComboBox14.Items32")
- });
- ComboBox14.Name = "ComboBox14";
- ComboBox18.AccessibleDescription = null;
- ComboBox18.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox18, "ComboBox18");
- ComboBox18.BackgroundImage = null;
- ComboBox18.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox18.Font = null;
- ComboBox18.FormattingEnabled = true;
- ComboBox18.Items.AddRange(new object[33]
- {
- componentResourceManager.GetString("ComboBox18.Items"),
- componentResourceManager.GetString("ComboBox18.Items1"),
- componentResourceManager.GetString("ComboBox18.Items2"),
- componentResourceManager.GetString("ComboBox18.Items3"),
- componentResourceManager.GetString("ComboBox18.Items4"),
- componentResourceManager.GetString("ComboBox18.Items5"),
- componentResourceManager.GetString("ComboBox18.Items6"),
- componentResourceManager.GetString("ComboBox18.Items7"),
- componentResourceManager.GetString("ComboBox18.Items8"),
- componentResourceManager.GetString("ComboBox18.Items9"),
- componentResourceManager.GetString("ComboBox18.Items10"),
- componentResourceManager.GetString("ComboBox18.Items11"),
- componentResourceManager.GetString("ComboBox18.Items12"),
- componentResourceManager.GetString("ComboBox18.Items13"),
- componentResourceManager.GetString("ComboBox18.Items14"),
- componentResourceManager.GetString("ComboBox18.Items15"),
- componentResourceManager.GetString("ComboBox18.Items16"),
- componentResourceManager.GetString("ComboBox18.Items17"),
- componentResourceManager.GetString("ComboBox18.Items18"),
- componentResourceManager.GetString("ComboBox18.Items19"),
- componentResourceManager.GetString("ComboBox18.Items20"),
- componentResourceManager.GetString("ComboBox18.Items21"),
- componentResourceManager.GetString("ComboBox18.Items22"),
- componentResourceManager.GetString("ComboBox18.Items23"),
- componentResourceManager.GetString("ComboBox18.Items24"),
- componentResourceManager.GetString("ComboBox18.Items25"),
- componentResourceManager.GetString("ComboBox18.Items26"),
- componentResourceManager.GetString("ComboBox18.Items27"),
- componentResourceManager.GetString("ComboBox18.Items28"),
- componentResourceManager.GetString("ComboBox18.Items29"),
- componentResourceManager.GetString("ComboBox18.Items30"),
- componentResourceManager.GetString("ComboBox18.Items31"),
- componentResourceManager.GetString("ComboBox18.Items32")
- });
- ComboBox18.Name = "ComboBox18";
- ComboBox2.AccessibleDescription = null;
- ComboBox2.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox2, "ComboBox2");
- ComboBox2.BackgroundImage = null;
- ComboBox2.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox2.Font = null;
- ComboBox2.FormattingEnabled = true;
- ComboBox2.Items.AddRange(new object[9]
- {
- componentResourceManager.GetString("ComboBox2.Items"),
- componentResourceManager.GetString("ComboBox2.Items1"),
- componentResourceManager.GetString("ComboBox2.Items2"),
- componentResourceManager.GetString("ComboBox2.Items3"),
- componentResourceManager.GetString("ComboBox2.Items4"),
- componentResourceManager.GetString("ComboBox2.Items5"),
- componentResourceManager.GetString("ComboBox2.Items6"),
- componentResourceManager.GetString("ComboBox2.Items7"),
- componentResourceManager.GetString("ComboBox2.Items8")
- });
- ComboBox2.Name = "ComboBox2";
- Label26.AccessibleDescription = null;
- Label26.AccessibleName = null;
- componentResourceManager.ApplyResources(Label26, "Label26");
- Label26.Font = null;
- Label26.Name = "Label26";
- Label25.AccessibleDescription = null;
- Label25.AccessibleName = null;
- componentResourceManager.ApplyResources(Label25, "Label25");
- Label25.Font = null;
- Label25.Name = "Label25";
- Label24.AccessibleDescription = null;
- Label24.AccessibleName = null;
- componentResourceManager.ApplyResources(Label24, "Label24");
- Label24.Font = null;
- Label24.Name = "Label24";
- SplitContainer2.AccessibleDescription = null;
- SplitContainer2.AccessibleName = null;
- componentResourceManager.ApplyResources(SplitContainer2, "SplitContainer2");
- SplitContainer2.BackgroundImage = null;
- SplitContainer2.BorderStyle = BorderStyle.FixedSingle;
- SplitContainer2.Font = null;
- SplitContainer2.Name = "SplitContainer2";
- SplitContainer2.Panel1.AccessibleDescription = null;
- SplitContainer2.Panel1.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer2.Panel1, "SplitContainer2.Panel1");
- SplitContainer2.Panel1.BackgroundImage = null;
- SplitContainer2.Panel1.Controls.Add(NumericUpDown解码_信息码);
- SplitContainer2.Panel1.Controls.Add(Label30);
- SplitContainer2.Panel1.Font = null;
- SplitContainer2.Panel2.AccessibleDescription = null;
- SplitContainer2.Panel2.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer2.Panel2, "SplitContainer2.Panel2");
- SplitContainer2.Panel2.BackgroundImage = null;
- SplitContainer2.Panel2.Controls.Add(Button3);
- SplitContainer2.Panel2.Controls.Add(Button4);
- SplitContainer2.Panel2.Controls.Add(TextBox3);
- SplitContainer2.Panel2.Controls.Add(TextBox4);
- SplitContainer2.Panel2.Controls.Add(ComboBox7);
- SplitContainer2.Panel2.Controls.Add(ComboBox6);
- SplitContainer2.Panel2.Controls.Add(ComboBox5);
- SplitContainer2.Panel2.Controls.Add(ComboBox10);
- SplitContainer2.Panel2.Controls.Add(Label37);
- SplitContainer2.Panel2.Controls.Add(ComboBox9);
- SplitContainer2.Panel2.Controls.Add(Label36);
- SplitContainer2.Panel2.Controls.Add(ComboBox8);
- SplitContainer2.Panel2.Controls.Add(Label31);
- SplitContainer2.Panel2.Controls.Add(ComboBox4);
- SplitContainer2.Panel2.Controls.Add(Label32);
- SplitContainer2.Panel2.Controls.Add(Label33);
- SplitContainer2.Panel2.Controls.Add(Label35);
- SplitContainer2.Panel2.Controls.Add(Label34);
- SplitContainer2.Panel2.Font = null;
- NumericUpDown解码_信息码.AccessibleDescription = null;
- NumericUpDown解码_信息码.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown解码_信息码, "NumericUpDown解码_信息码");
- NumericUpDown解码_信息码.Font = null;
- var numericUpDown解码信息码1 = NumericUpDown解码_信息码;
- num1 = new Decimal(new int[4]{ 16, 0, 0, 0 });
- var num5 = num1;
- numericUpDown解码信息码1.Maximum = num5;
- var numericUpDown解码信息码2 = NumericUpDown解码_信息码;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num6 = num1;
- numericUpDown解码信息码2.Minimum = num6;
- NumericUpDown解码_信息码.Name = "NumericUpDown解码_信息码";
- var numericUpDown解码信息码3 = NumericUpDown解码_信息码;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num7 = num1;
- numericUpDown解码信息码3.Value = num7;
- Label30.AccessibleDescription = null;
- Label30.AccessibleName = null;
- componentResourceManager.ApplyResources(Label30, "Label30");
- Label30.Font = null;
- Label30.Name = "Label30";
- Button3.AccessibleDescription = null;
- Button3.AccessibleName = null;
- componentResourceManager.ApplyResources(Button3, "Button3");
- Button3.BackgroundImage = null;
- Button3.Font = null;
- Button3.Name = "Button3";
- Button3.UseVisualStyleBackColor = true;
- Button4.AccessibleDescription = null;
- Button4.AccessibleName = null;
- componentResourceManager.ApplyResources(Button4, "Button4");
- Button4.BackgroundImage = null;
- Button4.Font = null;
- Button4.Name = "Button4";
- Button4.UseVisualStyleBackColor = true;
- TextBox3.AccessibleDescription = null;
- TextBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox3, "TextBox3");
- TextBox3.BackgroundImage = null;
- TextBox3.Font = null;
- TextBox3.Name = "TextBox3";
- TextBox4.AccessibleDescription = null;
- TextBox4.AccessibleName = null;
- componentResourceManager.ApplyResources(TextBox4, "TextBox4");
- TextBox4.BackgroundImage = null;
- TextBox4.Font = null;
- TextBox4.Name = "TextBox4";
- ComboBox7.AccessibleDescription = null;
- ComboBox7.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox7, "ComboBox7");
- ComboBox7.BackgroundImage = null;
- ComboBox7.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox7.Font = null;
- ComboBox7.FormattingEnabled = true;
- ComboBox7.Items.AddRange(new object[16]
- {
- componentResourceManager.GetString("ComboBox7.Items"),
- componentResourceManager.GetString("ComboBox7.Items1"),
- componentResourceManager.GetString("ComboBox7.Items2"),
- componentResourceManager.GetString("ComboBox7.Items3"),
- componentResourceManager.GetString("ComboBox7.Items4"),
- componentResourceManager.GetString("ComboBox7.Items5"),
- componentResourceManager.GetString("ComboBox7.Items6"),
- componentResourceManager.GetString("ComboBox7.Items7"),
- componentResourceManager.GetString("ComboBox7.Items8"),
- componentResourceManager.GetString("ComboBox7.Items9"),
- componentResourceManager.GetString("ComboBox7.Items10"),
- componentResourceManager.GetString("ComboBox7.Items11"),
- componentResourceManager.GetString("ComboBox7.Items12"),
- componentResourceManager.GetString("ComboBox7.Items13"),
- componentResourceManager.GetString("ComboBox7.Items14"),
- componentResourceManager.GetString("ComboBox7.Items15")
- });
- ComboBox7.Name = "ComboBox7";
- ComboBox6.AccessibleDescription = null;
- ComboBox6.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox6, "ComboBox6");
- ComboBox6.BackgroundImage = null;
- ComboBox6.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox6.Font = null;
- ComboBox6.FormattingEnabled = true;
- ComboBox6.Items.AddRange(new object[2]
- {
- componentResourceManager.GetString("ComboBox6.Items"),
- componentResourceManager.GetString("ComboBox6.Items1")
- });
- ComboBox6.Name = "ComboBox6";
- ComboBox5.AccessibleDescription = null;
- ComboBox5.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox5, "ComboBox5");
- ComboBox5.BackgroundImage = null;
- ComboBox5.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox5.Font = null;
- ComboBox5.FormattingEnabled = true;
- ComboBox5.Items.AddRange(new object[2]
- {
- componentResourceManager.GetString("ComboBox5.Items"),
- componentResourceManager.GetString("ComboBox5.Items1")
- });
- ComboBox5.Name = "ComboBox5";
- ComboBox10.AccessibleDescription = null;
- ComboBox10.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox10, "ComboBox10");
- ComboBox10.BackgroundImage = null;
- ComboBox10.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox10.Font = null;
- ComboBox10.FormattingEnabled = true;
- ComboBox10.Items.AddRange(new object[9]
- {
- componentResourceManager.GetString("ComboBox10.Items"),
- componentResourceManager.GetString("ComboBox10.Items1"),
- componentResourceManager.GetString("ComboBox10.Items2"),
- componentResourceManager.GetString("ComboBox10.Items3"),
- componentResourceManager.GetString("ComboBox10.Items4"),
- componentResourceManager.GetString("ComboBox10.Items5"),
- componentResourceManager.GetString("ComboBox10.Items6"),
- componentResourceManager.GetString("ComboBox10.Items7"),
- componentResourceManager.GetString("ComboBox10.Items8")
- });
- ComboBox10.Name = "ComboBox10";
- Label37.AccessibleDescription = null;
- Label37.AccessibleName = null;
- componentResourceManager.ApplyResources(Label37, "Label37");
- Label37.Font = null;
- Label37.Name = "Label37";
- ComboBox9.AccessibleDescription = null;
- ComboBox9.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox9, "ComboBox9");
- ComboBox9.BackgroundImage = null;
- ComboBox9.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox9.Font = null;
- ComboBox9.FormattingEnabled = true;
- ComboBox9.Items.AddRange(new object[9]
- {
- componentResourceManager.GetString("ComboBox9.Items"),
- componentResourceManager.GetString("ComboBox9.Items1"),
- componentResourceManager.GetString("ComboBox9.Items2"),
- componentResourceManager.GetString("ComboBox9.Items3"),
- componentResourceManager.GetString("ComboBox9.Items4"),
- componentResourceManager.GetString("ComboBox9.Items5"),
- componentResourceManager.GetString("ComboBox9.Items6"),
- componentResourceManager.GetString("ComboBox9.Items7"),
- componentResourceManager.GetString("ComboBox9.Items8")
- });
- ComboBox9.Name = "ComboBox9";
- Label36.AccessibleDescription = null;
- Label36.AccessibleName = null;
- componentResourceManager.ApplyResources(Label36, "Label36");
- Label36.Font = null;
- Label36.Name = "Label36";
- ComboBox8.AccessibleDescription = null;
- ComboBox8.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox8, "ComboBox8");
- ComboBox8.BackgroundImage = null;
- ComboBox8.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox8.Font = null;
- ComboBox8.FormattingEnabled = true;
- ComboBox8.Items.AddRange(new object[33]
- {
- componentResourceManager.GetString("ComboBox8.Items"),
- componentResourceManager.GetString("ComboBox8.Items1"),
- componentResourceManager.GetString("ComboBox8.Items2"),
- componentResourceManager.GetString("ComboBox8.Items3"),
- componentResourceManager.GetString("ComboBox8.Items4"),
- componentResourceManager.GetString("ComboBox8.Items5"),
- componentResourceManager.GetString("ComboBox8.Items6"),
- componentResourceManager.GetString("ComboBox8.Items7"),
- componentResourceManager.GetString("ComboBox8.Items8"),
- componentResourceManager.GetString("ComboBox8.Items9"),
- componentResourceManager.GetString("ComboBox8.Items10"),
- componentResourceManager.GetString("ComboBox8.Items11"),
- componentResourceManager.GetString("ComboBox8.Items12"),
- componentResourceManager.GetString("ComboBox8.Items13"),
- componentResourceManager.GetString("ComboBox8.Items14"),
- componentResourceManager.GetString("ComboBox8.Items15"),
- componentResourceManager.GetString("ComboBox8.Items16"),
- componentResourceManager.GetString("ComboBox8.Items17"),
- componentResourceManager.GetString("ComboBox8.Items18"),
- componentResourceManager.GetString("ComboBox8.Items19"),
- componentResourceManager.GetString("ComboBox8.Items20"),
- componentResourceManager.GetString("ComboBox8.Items21"),
- componentResourceManager.GetString("ComboBox8.Items22"),
- componentResourceManager.GetString("ComboBox8.Items23"),
- componentResourceManager.GetString("ComboBox8.Items24"),
- componentResourceManager.GetString("ComboBox8.Items25"),
- componentResourceManager.GetString("ComboBox8.Items26"),
- componentResourceManager.GetString("ComboBox8.Items27"),
- componentResourceManager.GetString("ComboBox8.Items28"),
- componentResourceManager.GetString("ComboBox8.Items29"),
- componentResourceManager.GetString("ComboBox8.Items30"),
- componentResourceManager.GetString("ComboBox8.Items31"),
- componentResourceManager.GetString("ComboBox8.Items32")
- });
- ComboBox8.Name = "ComboBox8";
- Label31.AccessibleDescription = null;
- Label31.AccessibleName = null;
- componentResourceManager.ApplyResources(Label31, "Label31");
- Label31.Font = null;
- Label31.Name = "Label31";
- ComboBox4.AccessibleDescription = null;
- ComboBox4.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox4, "ComboBox4");
- ComboBox4.BackgroundImage = null;
- ComboBox4.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox4.Font = null;
- ComboBox4.FormattingEnabled = true;
- ComboBox4.Items.AddRange(new object[3]
- {
- componentResourceManager.GetString("ComboBox4.Items"),
- componentResourceManager.GetString("ComboBox4.Items1"),
- componentResourceManager.GetString("ComboBox4.Items2")
- });
- ComboBox4.Name = "ComboBox4";
- Label32.AccessibleDescription = null;
- Label32.AccessibleName = null;
- componentResourceManager.ApplyResources(Label32, "Label32");
- Label32.Font = null;
- Label32.Name = "Label32";
- Label33.AccessibleDescription = null;
- Label33.AccessibleName = null;
- componentResourceManager.ApplyResources(Label33, "Label33");
- Label33.Font = null;
- Label33.Name = "Label33";
- Label35.AccessibleDescription = null;
- Label35.AccessibleName = null;
- componentResourceManager.ApplyResources(Label35, "Label35");
- Label35.Font = null;
- Label35.Name = "Label35";
- Label34.AccessibleDescription = null;
- Label34.AccessibleName = null;
- componentResourceManager.ApplyResources(Label34, "Label34");
- Label34.Font = null;
- Label34.Name = "Label34";
- SplitContainer3.AccessibleDescription = null;
- SplitContainer3.AccessibleName = null;
- componentResourceManager.ApplyResources(SplitContainer3, "SplitContainer3");
- SplitContainer3.BackgroundImage = null;
- SplitContainer3.BorderStyle = BorderStyle.FixedSingle;
- SplitContainer3.Font = null;
- SplitContainer3.Name = "SplitContainer3";
- SplitContainer3.Panel1.AccessibleDescription = null;
- SplitContainer3.Panel1.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer3.Panel1, "SplitContainer3.Panel1");
- SplitContainer3.Panel1.BackgroundImage = null;
- SplitContainer3.Panel1.Controls.Add(NumericUpDown27);
- SplitContainer3.Panel1.Controls.Add(Label38);
- SplitContainer3.Panel1.Font = null;
- SplitContainer3.Panel2.AccessibleDescription = null;
- SplitContainer3.Panel2.AccessibleName = null;
- //componentResourceManager.ApplyResources((object) this.SplitContainer3.Panel2, "SplitContainer3.Panel2");
- SplitContainer3.Panel2.BackgroundImage = null;
- SplitContainer3.Panel2.Controls.Add(GroupBox3);
- SplitContainer3.Panel2.Controls.Add(GroupBox2);
- SplitContainer3.Panel2.Controls.Add(Button5);
- SplitContainer3.Panel2.Controls.Add(Button6);
- SplitContainer3.Panel2.Controls.Add(ComboBox11);
- SplitContainer3.Panel2.Controls.Add(ComboBox12);
- SplitContainer3.Panel2.Controls.Add(Label44);
- SplitContainer3.Panel2.Controls.Add(Label45);
- SplitContainer3.Panel2.Font = null;
- NumericUpDown27.AccessibleDescription = null;
- NumericUpDown27.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown27, "NumericUpDown27");
- NumericUpDown27.Font = null;
- var numericUpDown27_1 = NumericUpDown27;
- num1 = new Decimal(new int[4]{ 16, 0, 0, 0 });
- var num8 = num1;
- numericUpDown27_1.Maximum = num8;
- var numericUpDown27_2 = NumericUpDown27;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num9 = num1;
- numericUpDown27_2.Minimum = num9;
- NumericUpDown27.Name = "NumericUpDown27";
- var numericUpDown27_3 = NumericUpDown27;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 0 });
- var num10 = num1;
- numericUpDown27_3.Value = num10;
- Label38.AccessibleDescription = null;
- Label38.AccessibleName = null;
- componentResourceManager.ApplyResources(Label38, "Label38");
- Label38.Font = null;
- Label38.Name = "Label38";
- GroupBox3.AccessibleDescription = null;
- GroupBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
- GroupBox3.BackgroundImage = null;
- GroupBox3.Controls.Add(CheckBox8);
- GroupBox3.Controls.Add(CheckBox4);
- GroupBox3.Controls.Add(CheckBox7);
- GroupBox3.Controls.Add(CheckBox3);
- GroupBox3.Controls.Add(CheckBox6);
- GroupBox3.Controls.Add(CheckBox2);
- GroupBox3.Controls.Add(CheckBox5);
- GroupBox3.Controls.Add(CheckBox1);
- GroupBox3.Font = null;
- GroupBox3.Name = "GroupBox3";
- GroupBox3.TabStop = false;
- CheckBox8.AccessibleDescription = null;
- CheckBox8.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox8, "CheckBox8");
- CheckBox8.BackgroundImage = null;
- CheckBox8.Font = null;
- CheckBox8.Name = "CheckBox8";
- CheckBox8.UseVisualStyleBackColor = true;
- CheckBox4.AccessibleDescription = null;
- CheckBox4.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox4, "CheckBox4");
- CheckBox4.BackgroundImage = null;
- CheckBox4.Font = null;
- CheckBox4.Name = "CheckBox4";
- CheckBox4.UseVisualStyleBackColor = true;
- CheckBox7.AccessibleDescription = null;
- CheckBox7.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox7, "CheckBox7");
- CheckBox7.BackgroundImage = null;
- CheckBox7.Font = null;
- CheckBox7.Name = "CheckBox7";
- CheckBox7.UseVisualStyleBackColor = true;
- CheckBox3.AccessibleDescription = null;
- CheckBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox3, "CheckBox3");
- CheckBox3.BackgroundImage = null;
- CheckBox3.Font = null;
- CheckBox3.Name = "CheckBox3";
- CheckBox3.UseVisualStyleBackColor = true;
- CheckBox6.AccessibleDescription = null;
- CheckBox6.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox6, "CheckBox6");
- CheckBox6.BackgroundImage = null;
- CheckBox6.Font = null;
- CheckBox6.Name = "CheckBox6";
- CheckBox6.UseVisualStyleBackColor = true;
- CheckBox2.AccessibleDescription = null;
- CheckBox2.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox2, "CheckBox2");
- CheckBox2.BackgroundImage = null;
- CheckBox2.Font = null;
- CheckBox2.Name = "CheckBox2";
- CheckBox2.UseVisualStyleBackColor = true;
- CheckBox5.AccessibleDescription = null;
- CheckBox5.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox5, "CheckBox5");
- CheckBox5.BackgroundImage = null;
- CheckBox5.Font = null;
- CheckBox5.Name = "CheckBox5";
- CheckBox5.UseVisualStyleBackColor = true;
- CheckBox1.AccessibleDescription = null;
- CheckBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox1, "CheckBox1");
- CheckBox1.BackgroundImage = null;
- CheckBox1.Font = null;
- CheckBox1.Name = "CheckBox1";
- CheckBox1.UseVisualStyleBackColor = true;
- GroupBox2.AccessibleDescription = null;
- GroupBox2.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
- GroupBox2.BackgroundImage = null;
- GroupBox2.Controls.Add(ComboBox16);
- GroupBox2.Controls.Add(Label43);
- GroupBox2.Controls.Add(Label42);
- GroupBox2.Controls.Add(ComboBox17);
- GroupBox2.Controls.Add(Label41);
- GroupBox2.Controls.Add(ComboBox13);
- GroupBox2.Controls.Add(Label40);
- GroupBox2.Controls.Add(ComboBox15);
- GroupBox2.Font = null;
- GroupBox2.Name = "GroupBox2";
- GroupBox2.TabStop = false;
- ComboBox16.AccessibleDescription = null;
- ComboBox16.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox16, "ComboBox16");
- ComboBox16.BackgroundImage = null;
- ComboBox16.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox16.Font = null;
- ComboBox16.FormattingEnabled = true;
- ComboBox16.Items.AddRange(new object[17]
- {
- componentResourceManager.GetString("ComboBox16.Items"),
- componentResourceManager.GetString("ComboBox16.Items1"),
- componentResourceManager.GetString("ComboBox16.Items2"),
- componentResourceManager.GetString("ComboBox16.Items3"),
- componentResourceManager.GetString("ComboBox16.Items4"),
- componentResourceManager.GetString("ComboBox16.Items5"),
- componentResourceManager.GetString("ComboBox16.Items6"),
- componentResourceManager.GetString("ComboBox16.Items7"),
- componentResourceManager.GetString("ComboBox16.Items8"),
- componentResourceManager.GetString("ComboBox16.Items9"),
- componentResourceManager.GetString("ComboBox16.Items10"),
- componentResourceManager.GetString("ComboBox16.Items11"),
- componentResourceManager.GetString("ComboBox16.Items12"),
- componentResourceManager.GetString("ComboBox16.Items13"),
- componentResourceManager.GetString("ComboBox16.Items14"),
- componentResourceManager.GetString("ComboBox16.Items15"),
- componentResourceManager.GetString("ComboBox16.Items16")
- });
- ComboBox16.Name = "ComboBox16";
- Label43.AccessibleDescription = null;
- Label43.AccessibleName = null;
- componentResourceManager.ApplyResources(Label43, "Label43");
- Label43.Font = null;
- Label43.Name = "Label43";
- Label42.AccessibleDescription = null;
- Label42.AccessibleName = null;
- componentResourceManager.ApplyResources(Label42, "Label42");
- Label42.Font = null;
- Label42.Name = "Label42";
- ComboBox17.AccessibleDescription = null;
- ComboBox17.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox17, "ComboBox17");
- ComboBox17.BackgroundImage = null;
- ComboBox17.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox17.Font = null;
- ComboBox17.FormattingEnabled = true;
- ComboBox17.Items.AddRange(new object[17]
- {
- componentResourceManager.GetString("ComboBox17.Items"),
- componentResourceManager.GetString("ComboBox17.Items1"),
- componentResourceManager.GetString("ComboBox17.Items2"),
- componentResourceManager.GetString("ComboBox17.Items3"),
- componentResourceManager.GetString("ComboBox17.Items4"),
- componentResourceManager.GetString("ComboBox17.Items5"),
- componentResourceManager.GetString("ComboBox17.Items6"),
- componentResourceManager.GetString("ComboBox17.Items7"),
- componentResourceManager.GetString("ComboBox17.Items8"),
- componentResourceManager.GetString("ComboBox17.Items9"),
- componentResourceManager.GetString("ComboBox17.Items10"),
- componentResourceManager.GetString("ComboBox17.Items11"),
- componentResourceManager.GetString("ComboBox17.Items12"),
- componentResourceManager.GetString("ComboBox17.Items13"),
- componentResourceManager.GetString("ComboBox17.Items14"),
- componentResourceManager.GetString("ComboBox17.Items15"),
- componentResourceManager.GetString("ComboBox17.Items16")
- });
- ComboBox17.Name = "ComboBox17";
- Label41.AccessibleDescription = null;
- Label41.AccessibleName = null;
- componentResourceManager.ApplyResources(Label41, "Label41");
- Label41.Font = null;
- Label41.Name = "Label41";
- ComboBox13.AccessibleDescription = null;
- ComboBox13.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox13, "ComboBox13");
- ComboBox13.BackgroundImage = null;
- ComboBox13.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox13.Font = null;
- ComboBox13.FormattingEnabled = true;
- ComboBox13.Items.AddRange(new object[17]
- {
- componentResourceManager.GetString("ComboBox13.Items"),
- componentResourceManager.GetString("ComboBox13.Items1"),
- componentResourceManager.GetString("ComboBox13.Items2"),
- componentResourceManager.GetString("ComboBox13.Items3"),
- componentResourceManager.GetString("ComboBox13.Items4"),
- componentResourceManager.GetString("ComboBox13.Items5"),
- componentResourceManager.GetString("ComboBox13.Items6"),
- componentResourceManager.GetString("ComboBox13.Items7"),
- componentResourceManager.GetString("ComboBox13.Items8"),
- componentResourceManager.GetString("ComboBox13.Items9"),
- componentResourceManager.GetString("ComboBox13.Items10"),
- componentResourceManager.GetString("ComboBox13.Items11"),
- componentResourceManager.GetString("ComboBox13.Items12"),
- componentResourceManager.GetString("ComboBox13.Items13"),
- componentResourceManager.GetString("ComboBox13.Items14"),
- componentResourceManager.GetString("ComboBox13.Items15"),
- componentResourceManager.GetString("ComboBox13.Items16")
- });
- ComboBox13.Name = "ComboBox13";
- Label40.AccessibleDescription = null;
- Label40.AccessibleName = null;
- componentResourceManager.ApplyResources(Label40, "Label40");
- Label40.Font = null;
- Label40.Name = "Label40";
- ComboBox15.AccessibleDescription = null;
- ComboBox15.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox15, "ComboBox15");
- ComboBox15.BackgroundImage = null;
- ComboBox15.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox15.Font = null;
- ComboBox15.FormattingEnabled = true;
- ComboBox15.Items.AddRange(new object[17]
- {
- componentResourceManager.GetString("ComboBox15.Items"),
- componentResourceManager.GetString("ComboBox15.Items1"),
- componentResourceManager.GetString("ComboBox15.Items2"),
- componentResourceManager.GetString("ComboBox15.Items3"),
- componentResourceManager.GetString("ComboBox15.Items4"),
- componentResourceManager.GetString("ComboBox15.Items5"),
- componentResourceManager.GetString("ComboBox15.Items6"),
- componentResourceManager.GetString("ComboBox15.Items7"),
- componentResourceManager.GetString("ComboBox15.Items8"),
- componentResourceManager.GetString("ComboBox15.Items9"),
- componentResourceManager.GetString("ComboBox15.Items10"),
- componentResourceManager.GetString("ComboBox15.Items11"),
- componentResourceManager.GetString("ComboBox15.Items12"),
- componentResourceManager.GetString("ComboBox15.Items13"),
- componentResourceManager.GetString("ComboBox15.Items14"),
- componentResourceManager.GetString("ComboBox15.Items15"),
- componentResourceManager.GetString("ComboBox15.Items16")
- });
- ComboBox15.Name = "ComboBox15";
- Button5.AccessibleDescription = null;
- Button5.AccessibleName = null;
- componentResourceManager.ApplyResources(Button5, "Button5");
- Button5.BackgroundImage = null;
- Button5.Font = null;
- Button5.Name = "Button5";
- Button5.UseVisualStyleBackColor = true;
- Button6.AccessibleDescription = null;
- Button6.AccessibleName = null;
- componentResourceManager.ApplyResources(Button6, "Button6");
- Button6.BackgroundImage = null;
- Button6.Font = null;
- Button6.Name = "Button6";
- Button6.UseVisualStyleBackColor = true;
- ComboBox11.AccessibleDescription = null;
- ComboBox11.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox11, "ComboBox11");
- ComboBox11.BackgroundImage = null;
- ComboBox11.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox11.Font = null;
- ComboBox11.FormattingEnabled = true;
- ComboBox11.Items.AddRange(new object[33]
- {
- componentResourceManager.GetString("ComboBox11.Items"),
- componentResourceManager.GetString("ComboBox11.Items1"),
- componentResourceManager.GetString("ComboBox11.Items2"),
- componentResourceManager.GetString("ComboBox11.Items3"),
- componentResourceManager.GetString("ComboBox11.Items4"),
- componentResourceManager.GetString("ComboBox11.Items5"),
- componentResourceManager.GetString("ComboBox11.Items6"),
- componentResourceManager.GetString("ComboBox11.Items7"),
- componentResourceManager.GetString("ComboBox11.Items8"),
- componentResourceManager.GetString("ComboBox11.Items9"),
- componentResourceManager.GetString("ComboBox11.Items10"),
- componentResourceManager.GetString("ComboBox11.Items11"),
- componentResourceManager.GetString("ComboBox11.Items12"),
- componentResourceManager.GetString("ComboBox11.Items13"),
- componentResourceManager.GetString("ComboBox11.Items14"),
- componentResourceManager.GetString("ComboBox11.Items15"),
- componentResourceManager.GetString("ComboBox11.Items16"),
- componentResourceManager.GetString("ComboBox11.Items17"),
- componentResourceManager.GetString("ComboBox11.Items18"),
- componentResourceManager.GetString("ComboBox11.Items19"),
- componentResourceManager.GetString("ComboBox11.Items20"),
- componentResourceManager.GetString("ComboBox11.Items21"),
- componentResourceManager.GetString("ComboBox11.Items22"),
- componentResourceManager.GetString("ComboBox11.Items23"),
- componentResourceManager.GetString("ComboBox11.Items24"),
- componentResourceManager.GetString("ComboBox11.Items25"),
- componentResourceManager.GetString("ComboBox11.Items26"),
- componentResourceManager.GetString("ComboBox11.Items27"),
- componentResourceManager.GetString("ComboBox11.Items28"),
- componentResourceManager.GetString("ComboBox11.Items29"),
- componentResourceManager.GetString("ComboBox11.Items30"),
- componentResourceManager.GetString("ComboBox11.Items31"),
- componentResourceManager.GetString("ComboBox11.Items32")
- });
- ComboBox11.Name = "ComboBox11";
- ComboBox12.AccessibleDescription = null;
- ComboBox12.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox12, "ComboBox12");
- ComboBox12.BackgroundImage = null;
- ComboBox12.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox12.Font = null;
- ComboBox12.FormattingEnabled = true;
- ComboBox12.Items.AddRange(new object[33]
- {
- componentResourceManager.GetString("ComboBox12.Items"),
- componentResourceManager.GetString("ComboBox12.Items1"),
- componentResourceManager.GetString("ComboBox12.Items2"),
- componentResourceManager.GetString("ComboBox12.Items3"),
- componentResourceManager.GetString("ComboBox12.Items4"),
- componentResourceManager.GetString("ComboBox12.Items5"),
- componentResourceManager.GetString("ComboBox12.Items6"),
- componentResourceManager.GetString("ComboBox12.Items7"),
- componentResourceManager.GetString("ComboBox12.Items8"),
- componentResourceManager.GetString("ComboBox12.Items9"),
- componentResourceManager.GetString("ComboBox12.Items10"),
- componentResourceManager.GetString("ComboBox12.Items11"),
- componentResourceManager.GetString("ComboBox12.Items12"),
- componentResourceManager.GetString("ComboBox12.Items13"),
- componentResourceManager.GetString("ComboBox12.Items14"),
- componentResourceManager.GetString("ComboBox12.Items15"),
- componentResourceManager.GetString("ComboBox12.Items16"),
- componentResourceManager.GetString("ComboBox12.Items17"),
- componentResourceManager.GetString("ComboBox12.Items18"),
- componentResourceManager.GetString("ComboBox12.Items19"),
- componentResourceManager.GetString("ComboBox12.Items20"),
- componentResourceManager.GetString("ComboBox12.Items21"),
- componentResourceManager.GetString("ComboBox12.Items22"),
- componentResourceManager.GetString("ComboBox12.Items23"),
- componentResourceManager.GetString("ComboBox12.Items24"),
- componentResourceManager.GetString("ComboBox12.Items25"),
- componentResourceManager.GetString("ComboBox12.Items26"),
- componentResourceManager.GetString("ComboBox12.Items27"),
- componentResourceManager.GetString("ComboBox12.Items28"),
- componentResourceManager.GetString("ComboBox12.Items29"),
- componentResourceManager.GetString("ComboBox12.Items30"),
- componentResourceManager.GetString("ComboBox12.Items31"),
- componentResourceManager.GetString("ComboBox12.Items32")
- });
- ComboBox12.Name = "ComboBox12";
- Label44.AccessibleDescription = null;
- Label44.AccessibleName = null;
- componentResourceManager.ApplyResources(Label44, "Label44");
- Label44.Font = null;
- Label44.Name = "Label44";
- Label45.AccessibleDescription = null;
- Label45.AccessibleName = null;
- componentResourceManager.ApplyResources(Label45, "Label45");
- Label45.Font = null;
- Label45.Name = "Label45";
- TabControl1.AccessibleDescription = null;
- TabControl1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabControl1, "TabControl1");
- TabControl1.BackgroundImage = null;
- TabControl1.Controls.Add(TabPage1);
- TabControl1.Controls.Add(TabPage2);
- TabControl1.Controls.Add(TabPage3);
- TabControl1.Controls.Add(TabPage4);
- TabControl1.Font = null;
- TabControl1.Name = "TabControl1";
- TabControl1.SelectedIndex = 0;
- TabPage1.AccessibleDescription = null;
- TabPage1.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage1, "TabPage1");
- TabPage1.BackgroundImage = null;
- TabPage1.Controls.Add(GroupBox1);
- TabPage1.Controls.Add(DataGridView1);
- TabPage1.Font = null;
- TabPage1.Name = "TabPage1";
- TabPage1.UseVisualStyleBackColor = true;
- GroupBox1.AccessibleDescription = null;
- GroupBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
- GroupBox1.BackgroundImage = null;
- GroupBox1.Controls.Add(NumericUpDown16);
- GroupBox1.Controls.Add(Label16);
- GroupBox1.Controls.Add(NumericUpDown13);
- GroupBox1.Controls.Add(NumericUpDown12);
- GroupBox1.Controls.Add(NumericUpDown14);
- GroupBox1.Controls.Add(NumericUpDown11);
- GroupBox1.Controls.Add(NumericUpDown5);
- GroupBox1.Controls.Add(Label14);
- GroupBox1.Controls.Add(Label12);
- GroupBox1.Controls.Add(NumericUpDown10);
- GroupBox1.Controls.Add(Label10);
- GroupBox1.Controls.Add(NumericUpDown8);
- GroupBox1.Controls.Add(NumericUpDown15);
- GroupBox1.Controls.Add(Label8);
- GroupBox1.Controls.Add(NumericUpDown6);
- GroupBox1.Controls.Add(Label6);
- GroupBox1.Controls.Add(NumericUpDown9);
- GroupBox1.Controls.Add(NumericUpDown4);
- GroupBox1.Controls.Add(Label15);
- GroupBox1.Controls.Add(NumericUpDown7);
- GroupBox1.Controls.Add(Label13);
- GroupBox1.Controls.Add(Label4);
- GroupBox1.Controls.Add(Label11);
- GroupBox1.Controls.Add(Label9);
- GroupBox1.Controls.Add(NumericUpDown2);
- GroupBox1.Controls.Add(Label7);
- GroupBox1.Controls.Add(NumericUpDown3);
- GroupBox1.Controls.Add(Label5);
- GroupBox1.Controls.Add(Label2);
- GroupBox1.Controls.Add(Label3);
- GroupBox1.Controls.Add(NumericUpDown1);
- GroupBox1.Controls.Add(Label1);
- GroupBox1.Font = null;
- GroupBox1.Name = "GroupBox1";
- GroupBox1.TabStop = false;
- NumericUpDown16.AccessibleDescription = null;
- NumericUpDown16.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown16, "NumericUpDown16");
- NumericUpDown16.DecimalPlaces = 1;
- NumericUpDown16.Font = null;
- var numericUpDown16_1 = NumericUpDown16;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num11 = num1;
- numericUpDown16_1.Maximum = num11;
- var numericUpDown16_2 = NumericUpDown16;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num12 = num1;
- numericUpDown16_2.Minimum = num12;
- NumericUpDown16.Name = "NumericUpDown16";
- var numericUpDown16_3 = NumericUpDown16;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num13 = num1;
- numericUpDown16_3.Value = num13;
- Label16.AccessibleDescription = null;
- Label16.AccessibleName = null;
- componentResourceManager.ApplyResources(Label16, "Label16");
- Label16.Font = null;
- Label16.Name = "Label16";
- NumericUpDown13.AccessibleDescription = null;
- NumericUpDown13.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown13, "NumericUpDown13");
- NumericUpDown13.DecimalPlaces = 1;
- NumericUpDown13.Font = null;
- var numericUpDown13_1 = NumericUpDown13;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num14 = num1;
- numericUpDown13_1.Maximum = num14;
- var numericUpDown13_2 = NumericUpDown13;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num15 = num1;
- numericUpDown13_2.Minimum = num15;
- NumericUpDown13.Name = "NumericUpDown13";
- var numericUpDown13_3 = NumericUpDown13;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num16 = num1;
- numericUpDown13_3.Value = num16;
- NumericUpDown12.AccessibleDescription = null;
- NumericUpDown12.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown12, "NumericUpDown12");
- NumericUpDown12.DecimalPlaces = 1;
- NumericUpDown12.Font = null;
- var numericUpDown12_1 = NumericUpDown12;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num17 = num1;
- numericUpDown12_1.Maximum = num17;
- var numericUpDown12_2 = NumericUpDown12;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num18 = num1;
- numericUpDown12_2.Minimum = num18;
- NumericUpDown12.Name = "NumericUpDown12";
- var numericUpDown12_3 = NumericUpDown12;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num19 = num1;
- numericUpDown12_3.Value = num19;
- NumericUpDown14.AccessibleDescription = null;
- NumericUpDown14.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown14, "NumericUpDown14");
- NumericUpDown14.DecimalPlaces = 1;
- NumericUpDown14.Font = null;
- var numericUpDown14_1 = NumericUpDown14;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num20 = num1;
- numericUpDown14_1.Maximum = num20;
- var numericUpDown14_2 = NumericUpDown14;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num21 = num1;
- numericUpDown14_2.Minimum = num21;
- NumericUpDown14.Name = "NumericUpDown14";
- var numericUpDown14_3 = NumericUpDown14;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num22 = num1;
- numericUpDown14_3.Value = num22;
- NumericUpDown11.AccessibleDescription = null;
- NumericUpDown11.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown11, "NumericUpDown11");
- NumericUpDown11.DecimalPlaces = 1;
- NumericUpDown11.Font = null;
- var numericUpDown11_1 = NumericUpDown11;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num23 = num1;
- numericUpDown11_1.Maximum = num23;
- var numericUpDown11_2 = NumericUpDown11;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num24 = num1;
- numericUpDown11_2.Minimum = num24;
- NumericUpDown11.Name = "NumericUpDown11";
- var numericUpDown11_3 = NumericUpDown11;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num25 = num1;
- numericUpDown11_3.Value = num25;
- NumericUpDown5.AccessibleDescription = null;
- NumericUpDown5.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown5, "NumericUpDown5");
- NumericUpDown5.DecimalPlaces = 1;
- NumericUpDown5.Font = null;
- var numericUpDown5_1 = NumericUpDown5;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num26 = num1;
- numericUpDown5_1.Maximum = num26;
- var numericUpDown5_2 = NumericUpDown5;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num27 = num1;
- numericUpDown5_2.Minimum = num27;
- NumericUpDown5.Name = "NumericUpDown5";
- var numericUpDown5_3 = NumericUpDown5;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num28 = num1;
- numericUpDown5_3.Value = num28;
- Label14.AccessibleDescription = null;
- Label14.AccessibleName = null;
- componentResourceManager.ApplyResources(Label14, "Label14");
- Label14.Font = null;
- Label14.Name = "Label14";
- Label12.AccessibleDescription = null;
- Label12.AccessibleName = null;
- componentResourceManager.ApplyResources(Label12, "Label12");
- Label12.Font = null;
- Label12.Name = "Label12";
- NumericUpDown10.AccessibleDescription = null;
- NumericUpDown10.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown10, "NumericUpDown10");
- NumericUpDown10.DecimalPlaces = 1;
- NumericUpDown10.Font = null;
- var numericUpDown10_1 = NumericUpDown10;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num29 = num1;
- numericUpDown10_1.Maximum = num29;
- var numericUpDown10_2 = NumericUpDown10;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num30 = num1;
- numericUpDown10_2.Minimum = num30;
- NumericUpDown10.Name = "NumericUpDown10";
- var numericUpDown10_3 = NumericUpDown10;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num31 = num1;
- numericUpDown10_3.Value = num31;
- Label10.AccessibleDescription = null;
- Label10.AccessibleName = null;
- componentResourceManager.ApplyResources(Label10, "Label10");
- Label10.Font = null;
- Label10.Name = "Label10";
- NumericUpDown8.AccessibleDescription = null;
- NumericUpDown8.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown8, "NumericUpDown8");
- NumericUpDown8.DecimalPlaces = 1;
- NumericUpDown8.Font = null;
- var numericUpDown8_1 = NumericUpDown8;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num32 = num1;
- numericUpDown8_1.Maximum = num32;
- var numericUpDown8_2 = NumericUpDown8;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num33 = num1;
- numericUpDown8_2.Minimum = num33;
- NumericUpDown8.Name = "NumericUpDown8";
- var numericUpDown8_3 = NumericUpDown8;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num34 = num1;
- numericUpDown8_3.Value = num34;
- NumericUpDown15.AccessibleDescription = null;
- NumericUpDown15.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown15, "NumericUpDown15");
- NumericUpDown15.DecimalPlaces = 1;
- NumericUpDown15.Font = null;
- var numericUpDown15_1 = NumericUpDown15;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num35 = num1;
- numericUpDown15_1.Maximum = num35;
- var numericUpDown15_2 = NumericUpDown15;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num36 = num1;
- numericUpDown15_2.Minimum = num36;
- NumericUpDown15.Name = "NumericUpDown15";
- var numericUpDown15_3 = NumericUpDown15;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num37 = num1;
- numericUpDown15_3.Value = num37;
- Label8.AccessibleDescription = null;
- Label8.AccessibleName = null;
- componentResourceManager.ApplyResources(Label8, "Label8");
- Label8.Font = null;
- Label8.Name = "Label8";
- NumericUpDown6.AccessibleDescription = null;
- NumericUpDown6.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown6, "NumericUpDown6");
- NumericUpDown6.DecimalPlaces = 1;
- NumericUpDown6.Font = null;
- var numericUpDown6_1 = NumericUpDown6;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num38 = num1;
- numericUpDown6_1.Maximum = num38;
- var numericUpDown6_2 = NumericUpDown6;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num39 = num1;
- numericUpDown6_2.Minimum = num39;
- NumericUpDown6.Name = "NumericUpDown6";
- var numericUpDown6_3 = NumericUpDown6;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num40 = num1;
- numericUpDown6_3.Value = num40;
- Label6.AccessibleDescription = null;
- Label6.AccessibleName = null;
- componentResourceManager.ApplyResources(Label6, "Label6");
- Label6.Font = null;
- Label6.Name = "Label6";
- NumericUpDown9.AccessibleDescription = null;
- NumericUpDown9.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown9, "NumericUpDown9");
- NumericUpDown9.DecimalPlaces = 1;
- NumericUpDown9.Font = null;
- var numericUpDown9_1 = NumericUpDown9;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num41 = num1;
- numericUpDown9_1.Maximum = num41;
- var numericUpDown9_2 = NumericUpDown9;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num42 = num1;
- numericUpDown9_2.Minimum = num42;
- NumericUpDown9.Name = "NumericUpDown9";
- var numericUpDown9_3 = NumericUpDown9;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num43 = num1;
- numericUpDown9_3.Value = num43;
- NumericUpDown4.AccessibleDescription = null;
- NumericUpDown4.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown4, "NumericUpDown4");
- NumericUpDown4.DecimalPlaces = 1;
- NumericUpDown4.Font = null;
- var numericUpDown4_1 = NumericUpDown4;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num44 = num1;
- numericUpDown4_1.Maximum = num44;
- var numericUpDown4_2 = NumericUpDown4;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num45 = num1;
- numericUpDown4_2.Minimum = num45;
- NumericUpDown4.Name = "NumericUpDown4";
- var numericUpDown4_3 = NumericUpDown4;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num46 = num1;
- numericUpDown4_3.Value = num46;
- Label15.AccessibleDescription = null;
- Label15.AccessibleName = null;
- componentResourceManager.ApplyResources(Label15, "Label15");
- Label15.Font = null;
- Label15.Name = "Label15";
- NumericUpDown7.AccessibleDescription = null;
- NumericUpDown7.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown7, "NumericUpDown7");
- NumericUpDown7.DecimalPlaces = 1;
- NumericUpDown7.Font = null;
- var numericUpDown7_1 = NumericUpDown7;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num47 = num1;
- numericUpDown7_1.Maximum = num47;
- var numericUpDown7_2 = NumericUpDown7;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num48 = num1;
- numericUpDown7_2.Minimum = num48;
- NumericUpDown7.Name = "NumericUpDown7";
- var numericUpDown7_3 = NumericUpDown7;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num49 = num1;
- numericUpDown7_3.Value = num49;
- Label13.AccessibleDescription = null;
- Label13.AccessibleName = null;
- componentResourceManager.ApplyResources(Label13, "Label13");
- Label13.Font = null;
- Label13.Name = "Label13";
- Label4.AccessibleDescription = null;
- Label4.AccessibleName = null;
- componentResourceManager.ApplyResources(Label4, "Label4");
- Label4.Font = null;
- Label4.Name = "Label4";
- Label11.AccessibleDescription = null;
- Label11.AccessibleName = null;
- componentResourceManager.ApplyResources(Label11, "Label11");
- Label11.Font = null;
- Label11.Name = "Label11";
- Label9.AccessibleDescription = null;
- Label9.AccessibleName = null;
- componentResourceManager.ApplyResources(Label9, "Label9");
- Label9.Font = null;
- Label9.Name = "Label9";
- NumericUpDown2.AccessibleDescription = null;
- NumericUpDown2.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown2, "NumericUpDown2");
- NumericUpDown2.DecimalPlaces = 1;
- NumericUpDown2.Font = null;
- var numericUpDown2_1 = NumericUpDown2;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num50 = num1;
- numericUpDown2_1.Maximum = num50;
- var numericUpDown2_2 = NumericUpDown2;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num51 = num1;
- numericUpDown2_2.Minimum = num51;
- NumericUpDown2.Name = "NumericUpDown2";
- var numericUpDown2_3 = NumericUpDown2;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num52 = num1;
- numericUpDown2_3.Value = num52;
- Label7.AccessibleDescription = null;
- Label7.AccessibleName = null;
- componentResourceManager.ApplyResources(Label7, "Label7");
- Label7.Font = null;
- Label7.Name = "Label7";
- NumericUpDown3.AccessibleDescription = null;
- NumericUpDown3.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown3, "NumericUpDown3");
- NumericUpDown3.DecimalPlaces = 1;
- NumericUpDown3.Font = null;
- var numericUpDown3_1 = NumericUpDown3;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num53 = num1;
- numericUpDown3_1.Maximum = num53;
- var numericUpDown3_2 = NumericUpDown3;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num54 = num1;
- numericUpDown3_2.Minimum = num54;
- NumericUpDown3.Name = "NumericUpDown3";
- var numericUpDown3_3 = NumericUpDown3;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num55 = num1;
- numericUpDown3_3.Value = num55;
- Label5.AccessibleDescription = null;
- Label5.AccessibleName = null;
- componentResourceManager.ApplyResources(Label5, "Label5");
- Label5.Font = null;
- Label5.Name = "Label5";
- Label2.AccessibleDescription = null;
- Label2.AccessibleName = null;
- componentResourceManager.ApplyResources(Label2, "Label2");
- Label2.Font = null;
- Label2.Name = "Label2";
- Label3.AccessibleDescription = null;
- Label3.AccessibleName = null;
- componentResourceManager.ApplyResources(Label3, "Label3");
- Label3.Font = null;
- Label3.Name = "Label3";
- NumericUpDown1.AccessibleDescription = null;
- NumericUpDown1.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown1, "NumericUpDown1");
- NumericUpDown1.DecimalPlaces = 1;
- NumericUpDown1.Font = null;
- var numericUpDown1_1 = NumericUpDown1;
- num1 = new Decimal(new int[4]{ 1, 0, 0, 65536 });
- var num56 = num1;
- numericUpDown1_1.Increment = num56;
- var numericUpDown1_2 = NumericUpDown1;
- num1 = new Decimal(new int[4]{ 30000, 0, 0, 65536 });
- var num57 = num1;
- numericUpDown1_2.Maximum = num57;
- var numericUpDown1_3 = NumericUpDown1;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num58 = num1;
- numericUpDown1_3.Minimum = num58;
- NumericUpDown1.Name = "NumericUpDown1";
- var numericUpDown1_4 = NumericUpDown1;
- num1 = new Decimal(new int[4]{ 3000, 0, 0, 65536 });
- var num59 = num1;
- numericUpDown1_4.Value = num59;
- Label1.AccessibleDescription = null;
- Label1.AccessibleName = null;
- componentResourceManager.ApplyResources(Label1, "Label1");
- Label1.Font = null;
- Label1.Name = "Label1";
- DataGridView1.AccessibleDescription = null;
- DataGridView1.AccessibleName = null;
- DataGridView1.AllowUserToAddRows = false;
- DataGridView1.AllowUserToDeleteRows = false;
- DataGridView1.AllowUserToResizeColumns = false;
- DataGridView1.AllowUserToResizeRows = false;
- gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
- componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
- DataGridView1.BackgroundImage = null;
- gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle2.BackColor = SystemColors.Control;
- gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle2.ForeColor = SystemColors.WindowText;
- gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
- DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
- DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView1.Columns.AddRange(Column0, Column1, Column2);
- DataGridView1.Font = null;
- DataGridView1.Name = "DataGridView1";
- gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle3.BackColor = SystemColors.Control;
- gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle3.ForeColor = SystemColors.WindowText;
- gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
- DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
- DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
- DataGridView1.RowTemplate.Height = 23;
- Column0.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
- Column0.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column0, "Column0");
- Column0.Items.AddRange("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");
- Column0.Name = "Column0";
- Column0.Resizable = DataGridViewTriState.True;
- Column1.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column1, "Column1");
- Column1.Items.AddRange("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F");
- Column1.Name = "Column1";
- Column2.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(Column2, "Column2");
- Column2.Items.AddRange("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F");
- Column2.Name = "Column2";
- TabPage2.AccessibleDescription = null;
- TabPage2.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage2, "TabPage2");
- TabPage2.BackgroundImage = null;
- TabPage2.Controls.Add(SplitContainer1);
- TabPage2.Controls.Add(CheckBox5_Tone侧音);
- TabPage2.Controls.Add(DataGridView2);
- TabPage2.Controls.Add(ComboBox1);
- TabPage2.Controls.Add(Label22);
- TabPage2.Controls.Add(NumericUpDown21);
- TabPage2.Controls.Add(Label21);
- TabPage2.Controls.Add(NumericUpDown20);
- TabPage2.Controls.Add(Label20);
- TabPage2.Controls.Add(NumericUpDown19);
- TabPage2.Controls.Add(Label19);
- TabPage2.Controls.Add(NumericUpDown18);
- TabPage2.Controls.Add(Label18);
- TabPage2.Controls.Add(NumericUpDown17);
- TabPage2.Controls.Add(Label17);
- TabPage2.Font = null;
- TabPage2.Name = "TabPage2";
- TabPage2.UseVisualStyleBackColor = true;
- CheckBox5_Tone侧音.AccessibleDescription = null;
- CheckBox5_Tone侧音.AccessibleName = null;
- componentResourceManager.ApplyResources(CheckBox5_Tone侧音, "CheckBox5_Tone侧音");
- CheckBox5_Tone侧音.BackgroundImage = null;
- CheckBox5_Tone侧音.Font = null;
- CheckBox5_Tone侧音.Name = "CheckBox5_Tone侧音";
- CheckBox5_Tone侧音.UseVisualStyleBackColor = true;
- DataGridView2.AccessibleDescription = null;
- DataGridView2.AccessibleName = null;
- DataGridView2.AllowUserToAddRows = false;
- DataGridView2.AllowUserToDeleteRows = false;
- DataGridView2.AllowUserToResizeColumns = false;
- DataGridView2.AllowUserToResizeRows = false;
- gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView2.AlternatingRowsDefaultCellStyle = gridViewCellStyle5;
- componentResourceManager.ApplyResources(DataGridView2, "DataGridView2");
- DataGridView2.BackgroundImage = null;
- gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle6.BackColor = SystemColors.Control;
- gridViewCellStyle6.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle6.ForeColor = SystemColors.WindowText;
- gridViewCellStyle6.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle6.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle6.WrapMode = DataGridViewTriState.True;
- DataGridView2.ColumnHeadersDefaultCellStyle = gridViewCellStyle6;
- DataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- DataGridView2.Columns.AddRange(DataGridViewComboBoxColumn1, DataGridViewComboBoxColumn2);
- DataGridView2.Font = null;
- DataGridView2.Name = "DataGridView2";
- gridViewCellStyle7.Alignment = DataGridViewContentAlignment.MiddleCenter;
- gridViewCellStyle7.BackColor = SystemColors.Control;
- gridViewCellStyle7.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- gridViewCellStyle7.ForeColor = SystemColors.WindowText;
- gridViewCellStyle7.SelectionBackColor = SystemColors.Highlight;
- gridViewCellStyle7.SelectionForeColor = SystemColors.HighlightText;
- gridViewCellStyle7.WrapMode = DataGridViewTriState.True;
- DataGridView2.RowHeadersDefaultCellStyle = gridViewCellStyle7;
- DataGridView2.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- gridViewCellStyle8.Alignment = DataGridViewContentAlignment.MiddleCenter;
- DataGridView2.RowsDefaultCellStyle = gridViewCellStyle8;
- DataGridView2.RowTemplate.Height = 23;
- DataGridViewComboBoxColumn1.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
- DataGridViewComboBoxColumn1.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
- componentResourceManager.ApplyResources(DataGridViewComboBoxColumn1, "DataGridViewComboBoxColumn1");
- DataGridViewComboBoxColumn1.Items.AddRange("ZVEI1", "ZVEI2", "ZVEI3", "PZVEI", "DZVEI", "PDZVEI", "CCIR1", "CCIR2", "PCCIR", "EEA", "EUIRO SIGNAL", "NATEL", "EIA", "MODAT", "CCITT");
- DataGridViewComboBoxColumn1.Name = "DataGridViewComboBoxColumn1";
- DataGridViewComboBoxColumn1.Resizable = DataGridViewTriState.False;
- componentResourceManager.ApplyResources(DataGridViewComboBoxColumn2, "DataGridViewComboBoxColumn2");
- DataGridViewComboBoxColumn2.MaxInputLength = 8;
- DataGridViewComboBoxColumn2.Name = "DataGridViewComboBoxColumn2";
- DataGridViewComboBoxColumn2.Resizable = DataGridViewTriState.False;
- DataGridViewComboBoxColumn2.SortMode = DataGridViewColumnSortMode.NotSortable;
- ComboBox1.AccessibleDescription = null;
- ComboBox1.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox1, "ComboBox1");
- ComboBox1.BackgroundImage = null;
- ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox1.Font = null;
- ComboBox1.FormattingEnabled = true;
- ComboBox1.Items.AddRange(new object[17]
- {
- componentResourceManager.GetString("ComboBox1.Items"),
- componentResourceManager.GetString("ComboBox1.Items1"),
- componentResourceManager.GetString("ComboBox1.Items2"),
- componentResourceManager.GetString("ComboBox1.Items3"),
- componentResourceManager.GetString("ComboBox1.Items4"),
- componentResourceManager.GetString("ComboBox1.Items5"),
- componentResourceManager.GetString("ComboBox1.Items6"),
- componentResourceManager.GetString("ComboBox1.Items7"),
- componentResourceManager.GetString("ComboBox1.Items8"),
- componentResourceManager.GetString("ComboBox1.Items9"),
- componentResourceManager.GetString("ComboBox1.Items10"),
- componentResourceManager.GetString("ComboBox1.Items11"),
- componentResourceManager.GetString("ComboBox1.Items12"),
- componentResourceManager.GetString("ComboBox1.Items13"),
- componentResourceManager.GetString("ComboBox1.Items14"),
- componentResourceManager.GetString("ComboBox1.Items15"),
- componentResourceManager.GetString("ComboBox1.Items16")
- });
- ComboBox1.Name = "ComboBox1";
- Label22.AccessibleDescription = null;
- Label22.AccessibleName = null;
- componentResourceManager.ApplyResources(Label22, "Label22");
- Label22.Font = null;
- Label22.Name = "Label22";
- NumericUpDown21.AccessibleDescription = null;
- NumericUpDown21.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown21, "NumericUpDown21");
- NumericUpDown21.Font = null;
- var numericUpDown21_1 = NumericUpDown21;
- num1 = new Decimal(new int[4]{ 10, 0, 0, 0 });
- var num60 = num1;
- numericUpDown21_1.Increment = num60;
- var numericUpDown21_2 = NumericUpDown21;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num61 = num1;
- numericUpDown21_2.Maximum = num61;
- NumericUpDown21.Name = "NumericUpDown21";
- Label21.AccessibleDescription = null;
- Label21.AccessibleName = null;
- componentResourceManager.ApplyResources(Label21, "Label21");
- Label21.Font = null;
- Label21.Name = "Label21";
- NumericUpDown20.AccessibleDescription = null;
- NumericUpDown20.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown20, "NumericUpDown20");
- NumericUpDown20.Font = null;
- var numericUpDown20_1 = NumericUpDown20;
- num1 = new Decimal(new int[4]{ 10, 0, 0, 0 });
- var num62 = num1;
- numericUpDown20_1.Increment = num62;
- var numericUpDown20_2 = NumericUpDown20;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num63 = num1;
- numericUpDown20_2.Maximum = num63;
- NumericUpDown20.Name = "NumericUpDown20";
- Label20.AccessibleDescription = null;
- Label20.AccessibleName = null;
- componentResourceManager.ApplyResources(Label20, "Label20");
- Label20.Font = null;
- Label20.Name = "Label20";
- NumericUpDown19.AccessibleDescription = null;
- NumericUpDown19.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown19, "NumericUpDown19");
- NumericUpDown19.Font = null;
- var numericUpDown19_1 = NumericUpDown19;
- num1 = new Decimal(new int[4]{ 10, 0, 0, 0 });
- var num64 = num1;
- numericUpDown19_1.Increment = num64;
- var numericUpDown19_2 = NumericUpDown19;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num65 = num1;
- numericUpDown19_2.Maximum = num65;
- NumericUpDown19.Name = "NumericUpDown19";
- Label19.AccessibleDescription = null;
- Label19.AccessibleName = null;
- componentResourceManager.ApplyResources(Label19, "Label19");
- Label19.Font = null;
- Label19.Name = "Label19";
- NumericUpDown18.AccessibleDescription = null;
- NumericUpDown18.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown18, "NumericUpDown18");
- NumericUpDown18.Font = null;
- var numericUpDown18_1 = NumericUpDown18;
- num1 = new Decimal(new int[4]{ 10, 0, 0, 0 });
- var num66 = num1;
- numericUpDown18_1.Increment = num66;
- var numericUpDown18_2 = NumericUpDown18;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num67 = num1;
- numericUpDown18_2.Maximum = num67;
- NumericUpDown18.Name = "NumericUpDown18";
- Label18.AccessibleDescription = null;
- Label18.AccessibleName = null;
- componentResourceManager.ApplyResources(Label18, "Label18");
- Label18.Font = null;
- Label18.Name = "Label18";
- NumericUpDown17.AccessibleDescription = null;
- NumericUpDown17.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown17, "NumericUpDown17");
- NumericUpDown17.Font = null;
- var numericUpDown17_1 = NumericUpDown17;
- num1 = new Decimal(new int[4]{ 10, 0, 0, 0 });
- var num68 = num1;
- numericUpDown17_1.Increment = num68;
- var numericUpDown17_2 = NumericUpDown17;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num69 = num1;
- numericUpDown17_2.Maximum = num69;
- NumericUpDown17.Name = "NumericUpDown17";
- Label17.AccessibleDescription = null;
- Label17.AccessibleName = null;
- componentResourceManager.ApplyResources(Label17, "Label17");
- Label17.Font = null;
- Label17.Name = "Label17";
- TabPage3.AccessibleDescription = null;
- TabPage3.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage3, "TabPage3");
- TabPage3.BackgroundImage = null;
- TabPage3.Controls.Add(SplitContainer2);
- TabPage3.Controls.Add(NumericUpDown25);
- TabPage3.Controls.Add(Label29);
- TabPage3.Controls.Add(ComboBox3);
- TabPage3.Controls.Add(Label28);
- TabPage3.Font = null;
- TabPage3.Name = "TabPage3";
- TabPage3.UseVisualStyleBackColor = true;
- NumericUpDown25.AccessibleDescription = null;
- NumericUpDown25.AccessibleName = null;
- componentResourceManager.ApplyResources(NumericUpDown25, "NumericUpDown25");
- NumericUpDown25.Font = null;
- var numericUpDown25 = NumericUpDown25;
- num1 = new Decimal(new int[4]{ 2550, 0, 0, 0 });
- var num70 = num1;
- numericUpDown25.Maximum = num70;
- NumericUpDown25.Name = "NumericUpDown25";
- Label29.AccessibleDescription = null;
- Label29.AccessibleName = null;
- componentResourceManager.ApplyResources(Label29, "Label29");
- Label29.Font = null;
- Label29.Name = "Label29";
- ComboBox3.AccessibleDescription = null;
- ComboBox3.AccessibleName = null;
- componentResourceManager.ApplyResources(ComboBox3, "ComboBox3");
- ComboBox3.BackgroundImage = null;
- ComboBox3.DropDownStyle = ComboBoxStyle.DropDownList;
- ComboBox3.Font = null;
- ComboBox3.FormattingEnabled = true;
- ComboBox3.Items.AddRange(new object[181]
- {
- componentResourceManager.GetString("ComboBox3.Items"),
- componentResourceManager.GetString("ComboBox3.Items1"),
- componentResourceManager.GetString("ComboBox3.Items2"),
- componentResourceManager.GetString("ComboBox3.Items3"),
- componentResourceManager.GetString("ComboBox3.Items4"),
- componentResourceManager.GetString("ComboBox3.Items5"),
- componentResourceManager.GetString("ComboBox3.Items6"),
- componentResourceManager.GetString("ComboBox3.Items7"),
- componentResourceManager.GetString("ComboBox3.Items8"),
- componentResourceManager.GetString("ComboBox3.Items9"),
- componentResourceManager.GetString("ComboBox3.Items10"),
- componentResourceManager.GetString("ComboBox3.Items11"),
- componentResourceManager.GetString("ComboBox3.Items12"),
- componentResourceManager.GetString("ComboBox3.Items13"),
- componentResourceManager.GetString("ComboBox3.Items14"),
- componentResourceManager.GetString("ComboBox3.Items15"),
- componentResourceManager.GetString("ComboBox3.Items16"),
- componentResourceManager.GetString("ComboBox3.Items17"),
- componentResourceManager.GetString("ComboBox3.Items18"),
- componentResourceManager.GetString("ComboBox3.Items19"),
- componentResourceManager.GetString("ComboBox3.Items20"),
- componentResourceManager.GetString("ComboBox3.Items21"),
- componentResourceManager.GetString("ComboBox3.Items22"),
- componentResourceManager.GetString("ComboBox3.Items23"),
- componentResourceManager.GetString("ComboBox3.Items24"),
- componentResourceManager.GetString("ComboBox3.Items25"),
- componentResourceManager.GetString("ComboBox3.Items26"),
- componentResourceManager.GetString("ComboBox3.Items27"),
- componentResourceManager.GetString("ComboBox3.Items28"),
- componentResourceManager.GetString("ComboBox3.Items29"),
- componentResourceManager.GetString("ComboBox3.Items30"),
- componentResourceManager.GetString("ComboBox3.Items31"),
- componentResourceManager.GetString("ComboBox3.Items32"),
- componentResourceManager.GetString("ComboBox3.Items33"),
- componentResourceManager.GetString("ComboBox3.Items34"),
- componentResourceManager.GetString("ComboBox3.Items35"),
- componentResourceManager.GetString("ComboBox3.Items36"),
- componentResourceManager.GetString("ComboBox3.Items37"),
- componentResourceManager.GetString("ComboBox3.Items38"),
- componentResourceManager.GetString("ComboBox3.Items39"),
- componentResourceManager.GetString("ComboBox3.Items40"),
- componentResourceManager.GetString("ComboBox3.Items41"),
- componentResourceManager.GetString("ComboBox3.Items42"),
- componentResourceManager.GetString("ComboBox3.Items43"),
- componentResourceManager.GetString("ComboBox3.Items44"),
- componentResourceManager.GetString("ComboBox3.Items45"),
- componentResourceManager.GetString("ComboBox3.Items46"),
- componentResourceManager.GetString("ComboBox3.Items47"),
- componentResourceManager.GetString("ComboBox3.Items48"),
- componentResourceManager.GetString("ComboBox3.Items49"),
- componentResourceManager.GetString("ComboBox3.Items50"),
- componentResourceManager.GetString("ComboBox3.Items51"),
- componentResourceManager.GetString("ComboBox3.Items52"),
- componentResourceManager.GetString("ComboBox3.Items53"),
- componentResourceManager.GetString("ComboBox3.Items54"),
- componentResourceManager.GetString("ComboBox3.Items55"),
- componentResourceManager.GetString("ComboBox3.Items56"),
- componentResourceManager.GetString("ComboBox3.Items57"),
- componentResourceManager.GetString("ComboBox3.Items58"),
- componentResourceManager.GetString("ComboBox3.Items59"),
- componentResourceManager.GetString("ComboBox3.Items60"),
- componentResourceManager.GetString("ComboBox3.Items61"),
- componentResourceManager.GetString("ComboBox3.Items62"),
- componentResourceManager.GetString("ComboBox3.Items63"),
- componentResourceManager.GetString("ComboBox3.Items64"),
- componentResourceManager.GetString("ComboBox3.Items65"),
- componentResourceManager.GetString("ComboBox3.Items66"),
- componentResourceManager.GetString("ComboBox3.Items67"),
- componentResourceManager.GetString("ComboBox3.Items68"),
- componentResourceManager.GetString("ComboBox3.Items69"),
- componentResourceManager.GetString("ComboBox3.Items70"),
- componentResourceManager.GetString("ComboBox3.Items71"),
- componentResourceManager.GetString("ComboBox3.Items72"),
- componentResourceManager.GetString("ComboBox3.Items73"),
- componentResourceManager.GetString("ComboBox3.Items74"),
- componentResourceManager.GetString("ComboBox3.Items75"),
- componentResourceManager.GetString("ComboBox3.Items76"),
- componentResourceManager.GetString("ComboBox3.Items77"),
- componentResourceManager.GetString("ComboBox3.Items78"),
- componentResourceManager.GetString("ComboBox3.Items79"),
- componentResourceManager.GetString("ComboBox3.Items80"),
- componentResourceManager.GetString("ComboBox3.Items81"),
- componentResourceManager.GetString("ComboBox3.Items82"),
- componentResourceManager.GetString("ComboBox3.Items83"),
- componentResourceManager.GetString("ComboBox3.Items84"),
- componentResourceManager.GetString("ComboBox3.Items85"),
- componentResourceManager.GetString("ComboBox3.Items86"),
- componentResourceManager.GetString("ComboBox3.Items87"),
- componentResourceManager.GetString("ComboBox3.Items88"),
- componentResourceManager.GetString("ComboBox3.Items89"),
- componentResourceManager.GetString("ComboBox3.Items90"),
- componentResourceManager.GetString("ComboBox3.Items91"),
- componentResourceManager.GetString("ComboBox3.Items92"),
- componentResourceManager.GetString("ComboBox3.Items93"),
- componentResourceManager.GetString("ComboBox3.Items94"),
- componentResourceManager.GetString("ComboBox3.Items95"),
- componentResourceManager.GetString("ComboBox3.Items96"),
- componentResourceManager.GetString("ComboBox3.Items97"),
- componentResourceManager.GetString("ComboBox3.Items98"),
- componentResourceManager.GetString("ComboBox3.Items99"),
- componentResourceManager.GetString("ComboBox3.Items100"),
- componentResourceManager.GetString("ComboBox3.Items101"),
- componentResourceManager.GetString("ComboBox3.Items102"),
- componentResourceManager.GetString("ComboBox3.Items103"),
- componentResourceManager.GetString("ComboBox3.Items104"),
- componentResourceManager.GetString("ComboBox3.Items105"),
- componentResourceManager.GetString("ComboBox3.Items106"),
- componentResourceManager.GetString("ComboBox3.Items107"),
- componentResourceManager.GetString("ComboBox3.Items108"),
- componentResourceManager.GetString("ComboBox3.Items109"),
- componentResourceManager.GetString("ComboBox3.Items110"),
- componentResourceManager.GetString("ComboBox3.Items111"),
- componentResourceManager.GetString("ComboBox3.Items112"),
- componentResourceManager.GetString("ComboBox3.Items113"),
- componentResourceManager.GetString("ComboBox3.Items114"),
- componentResourceManager.GetString("ComboBox3.Items115"),
- componentResourceManager.GetString("ComboBox3.Items116"),
- componentResourceManager.GetString("ComboBox3.Items117"),
- componentResourceManager.GetString("ComboBox3.Items118"),
- componentResourceManager.GetString("ComboBox3.Items119"),
- componentResourceManager.GetString("ComboBox3.Items120"),
- componentResourceManager.GetString("ComboBox3.Items121"),
- componentResourceManager.GetString("ComboBox3.Items122"),
- componentResourceManager.GetString("ComboBox3.Items123"),
- componentResourceManager.GetString("ComboBox3.Items124"),
- componentResourceManager.GetString("ComboBox3.Items125"),
- componentResourceManager.GetString("ComboBox3.Items126"),
- componentResourceManager.GetString("ComboBox3.Items127"),
- componentResourceManager.GetString("ComboBox3.Items128"),
- componentResourceManager.GetString("ComboBox3.Items129"),
- componentResourceManager.GetString("ComboBox3.Items130"),
- componentResourceManager.GetString("ComboBox3.Items131"),
- componentResourceManager.GetString("ComboBox3.Items132"),
- componentResourceManager.GetString("ComboBox3.Items133"),
- componentResourceManager.GetString("ComboBox3.Items134"),
- componentResourceManager.GetString("ComboBox3.Items135"),
- componentResourceManager.GetString("ComboBox3.Items136"),
- componentResourceManager.GetString("ComboBox3.Items137"),
- componentResourceManager.GetString("ComboBox3.Items138"),
- componentResourceManager.GetString("ComboBox3.Items139"),
- componentResourceManager.GetString("ComboBox3.Items140"),
- componentResourceManager.GetString("ComboBox3.Items141"),
- componentResourceManager.GetString("ComboBox3.Items142"),
- componentResourceManager.GetString("ComboBox3.Items143"),
- componentResourceManager.GetString("ComboBox3.Items144"),
- componentResourceManager.GetString("ComboBox3.Items145"),
- componentResourceManager.GetString("ComboBox3.Items146"),
- componentResourceManager.GetString("ComboBox3.Items147"),
- componentResourceManager.GetString("ComboBox3.Items148"),
- componentResourceManager.GetString("ComboBox3.Items149"),
- componentResourceManager.GetString("ComboBox3.Items150"),
- componentResourceManager.GetString("ComboBox3.Items151"),
- componentResourceManager.GetString("ComboBox3.Items152"),
- componentResourceManager.GetString("ComboBox3.Items153"),
- componentResourceManager.GetString("ComboBox3.Items154"),
- componentResourceManager.GetString("ComboBox3.Items155"),
- componentResourceManager.GetString("ComboBox3.Items156"),
- componentResourceManager.GetString("ComboBox3.Items157"),
- componentResourceManager.GetString("ComboBox3.Items158"),
- componentResourceManager.GetString("ComboBox3.Items159"),
- componentResourceManager.GetString("ComboBox3.Items160"),
- componentResourceManager.GetString("ComboBox3.Items161"),
- componentResourceManager.GetString("ComboBox3.Items162"),
- componentResourceManager.GetString("ComboBox3.Items163"),
- componentResourceManager.GetString("ComboBox3.Items164"),
- componentResourceManager.GetString("ComboBox3.Items165"),
- componentResourceManager.GetString("ComboBox3.Items166"),
- componentResourceManager.GetString("ComboBox3.Items167"),
- componentResourceManager.GetString("ComboBox3.Items168"),
- componentResourceManager.GetString("ComboBox3.Items169"),
- componentResourceManager.GetString("ComboBox3.Items170"),
- componentResourceManager.GetString("ComboBox3.Items171"),
- componentResourceManager.GetString("ComboBox3.Items172"),
- componentResourceManager.GetString("ComboBox3.Items173"),
- componentResourceManager.GetString("ComboBox3.Items174"),
- componentResourceManager.GetString("ComboBox3.Items175"),
- componentResourceManager.GetString("ComboBox3.Items176"),
- componentResourceManager.GetString("ComboBox3.Items177"),
- componentResourceManager.GetString("ComboBox3.Items178"),
- componentResourceManager.GetString("ComboBox3.Items179"),
- componentResourceManager.GetString("ComboBox3.Items180")
- });
- ComboBox3.Name = "ComboBox3";
- Label28.AccessibleDescription = null;
- Label28.AccessibleName = null;
- componentResourceManager.ApplyResources(Label28, "Label28");
- Label28.Font = null;
- Label28.Name = "Label28";
- TabPage4.AccessibleDescription = null;
- TabPage4.AccessibleName = null;
- componentResourceManager.ApplyResources(TabPage4, "TabPage4");
- TabPage4.BackgroundImage = null;
- TabPage4.Controls.Add(SplitContainer3);
- TabPage4.Font = null;
- TabPage4.Name = "TabPage4";
- TabPage4.UseVisualStyleBackColor = true;
- Button7.AccessibleDescription = null;
- Button7.AccessibleName = null;
- componentResourceManager.ApplyResources(Button7, "Button7");
- Button7.BackgroundImage = null;
- Button7.Font = null;
- Button7.Name = "Button7";
- Button7.UseVisualStyleBackColor = true;
- Button8.AccessibleDescription = null;
- Button8.AccessibleName = null;
- componentResourceManager.ApplyResources(Button8, "Button8");
- Button8.BackgroundImage = null;
- Button8.Font = null;
- Button8.Name = "Button8";
- Button8.UseVisualStyleBackColor = true;
- Button9.AccessibleDescription = null;
- Button9.AccessibleName = null;
- componentResourceManager.ApplyResources(Button9, "Button9");
- Button9.BackgroundImage = null;
- Button9.Font = null;
- Button9.Name = "Button9";
- Button9.UseVisualStyleBackColor = true;
- AccessibleDescription = null;
- AccessibleName = null;
- componentResourceManager.ApplyResources(this, "$this");
- AutoScaleMode = AutoScaleMode.Font;
- BackgroundImage = null;
- Controls.Add(Button7);
- Controls.Add(Button8);
- Controls.Add(Button9);
- Controls.Add(TabControl1);
- Font = null;
- Name = nameof (_5ToneForm);
- SplitContainer1.Panel1.ResumeLayout(false);
- SplitContainer1.Panel1.PerformLayout();
- SplitContainer1.Panel2.ResumeLayout(false);
- SplitContainer1.Panel2.PerformLayout();
- SplitContainer1.ResumeLayout(false);
- NumericUpDown编码_信息码.EndInit();
- SplitContainer2.Panel1.ResumeLayout(false);
- SplitContainer2.Panel1.PerformLayout();
- SplitContainer2.Panel2.ResumeLayout(false);
- SplitContainer2.Panel2.PerformLayout();
- SplitContainer2.ResumeLayout(false);
- NumericUpDown解码_信息码.EndInit();
- SplitContainer3.Panel1.ResumeLayout(false);
- SplitContainer3.Panel1.PerformLayout();
- SplitContainer3.Panel2.ResumeLayout(false);
- SplitContainer3.Panel2.PerformLayout();
- SplitContainer3.ResumeLayout(false);
- NumericUpDown27.EndInit();
- GroupBox3.ResumeLayout(false);
- GroupBox3.PerformLayout();
- GroupBox2.ResumeLayout(false);
- GroupBox2.PerformLayout();
- TabControl1.ResumeLayout(false);
- TabPage1.ResumeLayout(false);
- GroupBox1.ResumeLayout(false);
- GroupBox1.PerformLayout();
- NumericUpDown16.EndInit();
- NumericUpDown13.EndInit();
- NumericUpDown12.EndInit();
- NumericUpDown14.EndInit();
- NumericUpDown11.EndInit();
- NumericUpDown5.EndInit();
- NumericUpDown10.EndInit();
- NumericUpDown8.EndInit();
- NumericUpDown15.EndInit();
- NumericUpDown6.EndInit();
- NumericUpDown9.EndInit();
- NumericUpDown4.EndInit();
- NumericUpDown7.EndInit();
- NumericUpDown2.EndInit();
- NumericUpDown3.EndInit();
- NumericUpDown1.EndInit();
- ((ISupportInitialize) DataGridView1).EndInit();
- TabPage2.ResumeLayout(false);
- TabPage2.PerformLayout();
- ((ISupportInitialize) DataGridView2).EndInit();
- NumericUpDown21.EndInit();
- NumericUpDown20.EndInit();
- NumericUpDown19.EndInit();
- NumericUpDown18.EndInit();
- NumericUpDown17.EndInit();
- TabPage3.ResumeLayout(false);
- TabPage3.PerformLayout();
- NumericUpDown25.EndInit();
- TabPage4.ResumeLayout(false);
- ResumeLayout(false);
- }
-
- internal virtual TabControl TabControl1
- {
- [DebuggerNonUserCode] get => _TabControl1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabControl1 = value;
- }
- }
-
- internal virtual TabPage TabPage1
- {
- [DebuggerNonUserCode] get => _TabPage1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage1 = value;
- }
- }
-
- internal virtual TabPage TabPage2
- {
- [DebuggerNonUserCode] get => _TabPage2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage2 = value;
- }
- }
-
- internal virtual DataGridView DataGridView1
- {
- [DebuggerNonUserCode] get => _DataGridView1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView1 != null)
+ [DebuggerNonUserCode]
+ static _5ToneForm()
{
- _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
- _DataGridView1.CellMouseClick -= DataGridView1_CellMouseClick;
}
- _DataGridView1 = value;
- if (_DataGridView1 == null)
- return;
- _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
- _DataGridView1.CellMouseClick += DataGridView1_CellMouseClick;
- }
- }
- internal virtual GroupBox GroupBox1
- {
- [DebuggerNonUserCode] get => _GroupBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox1 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown1
- {
- [DebuggerNonUserCode] get => _NumericUpDown1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown1 != null)
- _NumericUpDown1.ValueChanged -= NumericUpDown1_ValueChanged;
- _NumericUpDown1 = value;
- if (_NumericUpDown1 == null)
- return;
- _NumericUpDown1.ValueChanged += NumericUpDown1_ValueChanged;
- }
- }
-
- internal virtual Label Label1
- {
- [DebuggerNonUserCode] get => _Label1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label1 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown16
- {
- [DebuggerNonUserCode] get => _NumericUpDown16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown16 != null)
- _NumericUpDown16.ValueChanged -= NumericUpDown16_ValueChanged;
- _NumericUpDown16 = value;
- if (_NumericUpDown16 == null)
- return;
- _NumericUpDown16.ValueChanged += NumericUpDown16_ValueChanged;
- }
- }
-
- internal virtual Label Label16
- {
- [DebuggerNonUserCode] get => _Label16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label16 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown14
- {
- [DebuggerNonUserCode] get => _NumericUpDown14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown14 != null)
- _NumericUpDown14.ValueChanged -= NumericUpDown14_ValueChanged;
- _NumericUpDown14 = value;
- if (_NumericUpDown14 == null)
- return;
- _NumericUpDown14.ValueChanged += NumericUpDown14_ValueChanged;
- }
- }
-
- internal virtual Label Label14
- {
- [DebuggerNonUserCode] get => _Label14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label14 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown12
- {
- [DebuggerNonUserCode] get => _NumericUpDown12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown12 != null)
- _NumericUpDown12.ValueChanged -= NumericUpDown12_ValueChanged;
- _NumericUpDown12 = value;
- if (_NumericUpDown12 == null)
- return;
- _NumericUpDown12.ValueChanged += NumericUpDown12_ValueChanged;
- }
- }
-
- internal virtual Label Label12
- {
- [DebuggerNonUserCode] get => _Label12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label12 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown10
- {
- [DebuggerNonUserCode] get => _NumericUpDown10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown10 != null)
- _NumericUpDown10.ValueChanged -= NumericUpDown10_ValueChanged;
- _NumericUpDown10 = value;
- if (_NumericUpDown10 == null)
- return;
- _NumericUpDown10.ValueChanged += NumericUpDown10_ValueChanged;
- }
- }
-
- internal virtual Label Label10
- {
- [DebuggerNonUserCode] get => _Label10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label10 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown8
- {
- [DebuggerNonUserCode] get => _NumericUpDown8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown8 != null)
- _NumericUpDown8.ValueChanged -= NumericUpDown8_ValueChanged;
- _NumericUpDown8 = value;
- if (_NumericUpDown8 == null)
- return;
- _NumericUpDown8.ValueChanged += NumericUpDown8_ValueChanged;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown15
- {
- [DebuggerNonUserCode] get => _NumericUpDown15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown15 != null)
- _NumericUpDown15.ValueChanged -= NumericUpDown15_ValueChanged;
- _NumericUpDown15 = value;
- if (_NumericUpDown15 == null)
- return;
- _NumericUpDown15.ValueChanged += NumericUpDown15_ValueChanged;
- }
- }
-
- internal virtual Label Label8
- {
- [DebuggerNonUserCode] get => _Label8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label8 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown13
- {
- [DebuggerNonUserCode] get => _NumericUpDown13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown13 != null)
- _NumericUpDown13.ValueChanged -= NumericUpDown13_ValueChanged;
- _NumericUpDown13 = value;
- if (_NumericUpDown13 == null)
- return;
- _NumericUpDown13.ValueChanged += NumericUpDown13_ValueChanged;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown6
- {
- [DebuggerNonUserCode] get => _NumericUpDown6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown6 != null)
- _NumericUpDown6.ValueChanged -= NumericUpDown6_ValueChanged;
- _NumericUpDown6 = value;
- if (_NumericUpDown6 == null)
- return;
- _NumericUpDown6.ValueChanged += NumericUpDown6_ValueChanged;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown11
- {
- [DebuggerNonUserCode] get => _NumericUpDown11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown11 != null)
- _NumericUpDown11.ValueChanged -= NumericUpDown11_ValueChanged;
- _NumericUpDown11 = value;
- if (_NumericUpDown11 == null)
- return;
- _NumericUpDown11.ValueChanged += NumericUpDown11_ValueChanged;
- }
- }
-
- internal virtual Label Label6
- {
- [DebuggerNonUserCode] get => _Label6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label6 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown9
- {
- [DebuggerNonUserCode] get => _NumericUpDown9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown9 != null)
- _NumericUpDown9.ValueChanged -= NumericUpDown9_ValueChanged;
- _NumericUpDown9 = value;
- if (_NumericUpDown9 == null)
- return;
- _NumericUpDown9.ValueChanged += NumericUpDown9_ValueChanged;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown4
- {
- [DebuggerNonUserCode] get => _NumericUpDown4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown4 != null)
- _NumericUpDown4.ValueChanged -= NumericUpDown4_ValueChanged;
- _NumericUpDown4 = value;
- if (_NumericUpDown4 == null)
- return;
- _NumericUpDown4.ValueChanged += NumericUpDown4_ValueChanged;
- }
- }
-
- internal virtual Label Label15
- {
- [DebuggerNonUserCode] get => _Label15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label15 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown7
- {
- [DebuggerNonUserCode] get => _NumericUpDown7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown7 != null)
- _NumericUpDown7.ValueChanged -= NumericUpDown7_ValueChanged;
- _NumericUpDown7 = value;
- if (_NumericUpDown7 == null)
- return;
- _NumericUpDown7.ValueChanged += NumericUpDown7_ValueChanged;
- }
- }
-
- internal virtual Label Label13
- {
- [DebuggerNonUserCode] get => _Label13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label13 = value;
- }
- }
-
- internal virtual Label Label4
- {
- [DebuggerNonUserCode] get => _Label4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label4 = value;
- }
-
- internal virtual Label Label11
- {
- [DebuggerNonUserCode] get => _Label11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label11 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown5
- {
- [DebuggerNonUserCode] get => _NumericUpDown5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown5 != null)
- _NumericUpDown5.ValueChanged -= NumericUpDown5_ValueChanged;
- _NumericUpDown5 = value;
- if (_NumericUpDown5 == null)
- return;
- _NumericUpDown5.ValueChanged += NumericUpDown5_ValueChanged;
- }
- }
-
- internal virtual Label Label9
- {
- [DebuggerNonUserCode] get => _Label9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label9 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown2
- {
- [DebuggerNonUserCode] get => _NumericUpDown2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown2 != null)
- _NumericUpDown2.ValueChanged -= NumericUpDown2_ValueChanged;
- _NumericUpDown2 = value;
- if (_NumericUpDown2 == null)
- return;
- _NumericUpDown2.ValueChanged += NumericUpDown2_ValueChanged;
- }
- }
-
- internal virtual Label Label7
- {
- [DebuggerNonUserCode] get => _Label7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label7 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown3
- {
- [DebuggerNonUserCode] get => _NumericUpDown3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown3 != null)
- _NumericUpDown3.ValueChanged -= NumericUpDown3_ValueChanged;
- _NumericUpDown3 = value;
- if (_NumericUpDown3 == null)
- return;
- _NumericUpDown3.ValueChanged += NumericUpDown3_ValueChanged;
- }
- }
-
- internal virtual Label Label5
- {
- [DebuggerNonUserCode] get => _Label5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label5 = value;
- }
-
- internal virtual Label Label2
- {
- [DebuggerNonUserCode] get => _Label2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label2 = value;
- }
-
- internal virtual Label Label3
- {
- [DebuggerNonUserCode] get => _Label3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set => _Label3 = value;
- }
-
- internal virtual NumericUpDown NumericUpDown18
- {
- [DebuggerNonUserCode] get => _NumericUpDown18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown18 = value;
- }
- }
-
- internal virtual Label Label18
- {
- [DebuggerNonUserCode] get => _Label18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label18 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown17
- {
- [DebuggerNonUserCode] get => _NumericUpDown17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown17 = value;
- }
- }
-
- internal virtual Label Label17
- {
- [DebuggerNonUserCode] get => _Label17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label17 = value;
- }
- }
-
- internal virtual TabPage TabPage3
- {
- [DebuggerNonUserCode] get => _TabPage3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage3 = value;
- }
- }
-
- internal virtual TabPage TabPage4
- {
- [DebuggerNonUserCode] get => _TabPage4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _TabPage4 = value;
- }
- }
-
- internal virtual ComboBox ComboBox1
- {
- [DebuggerNonUserCode] get => _ComboBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox1 = value;
- }
- }
-
- internal virtual Label Label22
- {
- [DebuggerNonUserCode] get => _Label22;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label22 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown21
- {
- [DebuggerNonUserCode] get => _NumericUpDown21;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown21 = value;
- }
- }
-
- internal virtual Label Label21
- {
- [DebuggerNonUserCode] get => _Label21;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label21 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown20
- {
- [DebuggerNonUserCode] get => _NumericUpDown20;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown20 = value;
- }
- }
-
- internal virtual Label Label20
- {
- [DebuggerNonUserCode] get => _Label20;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label20 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown19
- {
- [DebuggerNonUserCode] get => _NumericUpDown19;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown19 = value;
- }
- }
-
- internal virtual Label Label19
- {
- [DebuggerNonUserCode] get => _Label19;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label19 = value;
- }
- }
-
- internal virtual DataGridView DataGridView2
- {
- [DebuggerNonUserCode] get => _DataGridView2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_DataGridView2 != null)
+ [DebuggerNonUserCode]
+ public _5ToneForm()
{
- _DataGridView2.EditingControlShowing -= DataGridView2_EditingControlShowing;
- _DataGridView2.RowPostPaint -= DataGridView2_RowPostPaint;
- _DataGridView2.MouseClick -= DataGridView2_MouseClick;
- _DataGridView2.CellClick -= DataGridView2_CellClick;
- _DataGridView2.CellEndEdit -= DataGridView2_CellEndEdit;
+ Deactivate += _5ToneForm_Deactivate;
+ FormClosing += _5ToneForm_FormClosing;
+ Load += _5ToneForm_Load;
+ __ENCList.Add(new WeakReference(this));
+ InitializeComponent();
}
- _DataGridView2 = value;
- if (_DataGridView2 == null)
- return;
- _DataGridView2.EditingControlShowing += DataGridView2_EditingControlShowing;
- _DataGridView2.RowPostPaint += DataGridView2_RowPostPaint;
- _DataGridView2.MouseClick += DataGridView2_MouseClick;
- _DataGridView2.CellClick += DataGridView2_CellClick;
- _DataGridView2.CellEndEdit += DataGridView2_CellEndEdit;
- }
- }
- internal virtual CheckBox CheckBox5_Tone侧音
- {
- [DebuggerNonUserCode] get => _CheckBox5_Tone侧音;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox5_Tone侧音 = value;
- }
- }
-
- internal virtual SplitContainer SplitContainer1
- {
- [DebuggerNonUserCode] get => _SplitContainer1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SplitContainer1 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown编码_信息码
- {
- [DebuggerNonUserCode] get => _NumericUpDown编码_信息码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown编码_信息码 != null)
- _NumericUpDown编码_信息码.ValueChanged -= NumericUpDown编码_信息码_ValueChanged;
- _NumericUpDown编码_信息码 = value;
- if (_NumericUpDown编码_信息码 == null)
- return;
- _NumericUpDown编码_信息码.ValueChanged += NumericUpDown编码_信息码_ValueChanged;
- }
- }
-
- internal virtual Label Label23
- {
- [DebuggerNonUserCode] get => _Label23;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label23 = value;
- }
- }
-
- internal virtual CheckBox CheckBox第一个音扩展
- {
- [DebuggerNonUserCode] get => _CheckBox第一个音扩展;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox第一个音扩展 = value;
- }
- }
-
- internal virtual Label Label24
- {
- [DebuggerNonUserCode] get => _Label24;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label24 = value;
- }
- }
-
- internal virtual TextBox TextBox1
- {
- [DebuggerNonUserCode] get => _TextBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBox1 != null)
+ [DebuggerNonUserCode]
+ protected override void Dispose(bool disposing)
{
- _TextBox1.LostFocus -= TextBox1_LostFocus;
- _TextBox1.KeyPress -= TextBox1_KeyPress;
+ if (disposing && components != null)
+ components.Dispose();
+ base.Dispose(disposing);
}
- _TextBox1 = value;
- if (_TextBox1 == null)
- return;
- _TextBox1.LostFocus += TextBox1_LostFocus;
- _TextBox1.KeyPress += TextBox1_KeyPress;
- }
- }
- internal virtual Label Label27
- {
- [DebuggerNonUserCode] get => _Label27;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label27 = value;
- }
- }
-
- internal virtual CheckBox CheckBox第二个音扩展
- {
- [DebuggerNonUserCode] get => _CheckBox第二个音扩展;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _CheckBox第二个音扩展 = value;
- }
- }
-
- internal virtual ComboBox ComboBox2
- {
- [DebuggerNonUserCode] get => _ComboBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox2 != null)
- _ComboBox2.SelectionChangeCommitted -= ComboBox2_SelectionChangeCommitted;
- _ComboBox2 = value;
- if (_ComboBox2 == null)
- return;
- _ComboBox2.SelectionChangeCommitted += ComboBox2_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label26
- {
- [DebuggerNonUserCode] get => _Label26;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label26 = value;
- }
- }
-
- internal virtual Label Label25
- {
- [DebuggerNonUserCode] get => _Label25;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label25 = value;
- }
- }
-
- internal virtual Button Button2
- {
- [DebuggerNonUserCode] get => _Button2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button2 != null)
- _Button2.Click -= Button2_Click;
- _Button2 = value;
- if (_Button2 == null)
- return;
- _Button2.Click += Button2_Click;
- }
- }
-
- internal virtual Button Button1
- {
- [DebuggerNonUserCode] get => _Button1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button1 != null)
- _Button1.Click -= Button1_Click;
- _Button1 = value;
- if (_Button1 == null)
- return;
- _Button1.Click += Button1_Click;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown25
- {
- [DebuggerNonUserCode] get => _NumericUpDown25;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _NumericUpDown25 = value;
- }
- }
-
- internal virtual Label Label29
- {
- [DebuggerNonUserCode] get => _Label29;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label29 = value;
- }
- }
-
- internal virtual ComboBox ComboBox3
- {
- [DebuggerNonUserCode] get => _ComboBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _ComboBox3 = value;
- }
- }
-
- internal virtual Label Label28
- {
- [DebuggerNonUserCode] get => _Label28;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label28 = value;
- }
- }
-
- internal virtual SplitContainer SplitContainer2
- {
- [DebuggerNonUserCode] get => _SplitContainer2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SplitContainer2 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown解码_信息码
- {
- [DebuggerNonUserCode] get => _NumericUpDown解码_信息码;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown解码_信息码 != null)
- _NumericUpDown解码_信息码.ValueChanged -= NumericUpDown解码_信息码_ValueChanged;
- _NumericUpDown解码_信息码 = value;
- if (_NumericUpDown解码_信息码 == null)
- return;
- _NumericUpDown解码_信息码.ValueChanged += NumericUpDown解码_信息码_ValueChanged;
- }
- }
-
- internal virtual Label Label30
- {
- [DebuggerNonUserCode] get => _Label30;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label30 = value;
- }
- }
-
- internal virtual Button Button3
- {
- [DebuggerNonUserCode] get => _Button3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button3 != null)
- _Button3.Click -= Button3_Click;
- _Button3 = value;
- if (_Button3 == null)
- return;
- _Button3.Click += Button3_Click;
- }
- }
-
- internal virtual Button Button4
- {
- [DebuggerNonUserCode] get => _Button4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button4 != null)
- _Button4.Click -= Button4_Click;
- _Button4 = value;
- if (_Button4 == null)
- return;
- _Button4.Click += Button4_Click;
- }
- }
-
- internal virtual ComboBox ComboBox7
- {
- [DebuggerNonUserCode] get => _ComboBox7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox7 != null)
- _ComboBox7.SelectionChangeCommitted -= ComboBox7_SelectionChangeCommitted;
- _ComboBox7 = value;
- if (_ComboBox7 == null)
- return;
- _ComboBox7.SelectionChangeCommitted += ComboBox7_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox6
- {
- [DebuggerNonUserCode] get => _ComboBox6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox6 != null)
- _ComboBox6.SelectionChangeCommitted -= ComboBox6_SelectionChangeCommitted;
- _ComboBox6 = value;
- if (_ComboBox6 == null)
- return;
- _ComboBox6.SelectionChangeCommitted += ComboBox6_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox5
- {
- [DebuggerNonUserCode] get => _ComboBox5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox5 != null)
- _ComboBox5.SelectionChangeCommitted -= ComboBox5_SelectionChangeCommitted;
- _ComboBox5 = value;
- if (_ComboBox5 == null)
- return;
- _ComboBox5.SelectionChangeCommitted += ComboBox5_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox4
- {
- [DebuggerNonUserCode] get => _ComboBox4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox4 != null)
- _ComboBox4.SelectionChangeCommitted -= ComboBox4_SelectionChangeCommitted;
- _ComboBox4 = value;
- if (_ComboBox4 == null)
- return;
- _ComboBox4.SelectionChangeCommitted += ComboBox4_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label32
- {
- [DebuggerNonUserCode] get => _Label32;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label32 = value;
- }
- }
-
- internal virtual Label Label33
- {
- [DebuggerNonUserCode] get => _Label33;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label33 = value;
- }
- }
-
- internal virtual Label Label35
- {
- [DebuggerNonUserCode] get => _Label35;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label35 = value;
- }
- }
-
- internal virtual Label Label34
- {
- [DebuggerNonUserCode] get => _Label34;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label34 = value;
- }
- }
-
- internal virtual TextBox TextBox3
- {
- [DebuggerNonUserCode] get => _TextBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBox3 != null)
+ [DebuggerStepThrough]
+ private void InitializeComponent()
{
- _TextBox3.LostFocus -= TextBox3_LostFocus;
- _TextBox3.KeyPress -= TextBox3_KeyPress;
- }
- _TextBox3 = value;
- if (_TextBox3 == null)
- return;
- _TextBox3.LostFocus += TextBox3_LostFocus;
- _TextBox3.KeyPress += TextBox3_KeyPress;
- }
- }
+ var componentResourceManager = new ComponentResourceManager(typeof(_5ToneForm));
+ var gridViewCellStyle1 = new DataGridViewCellStyle();
+ var gridViewCellStyle2 = new DataGridViewCellStyle();
+ var gridViewCellStyle3 = new DataGridViewCellStyle();
+ var gridViewCellStyle4 = new DataGridViewCellStyle();
+ var gridViewCellStyle5 = new DataGridViewCellStyle();
+ var gridViewCellStyle6 = new DataGridViewCellStyle();
+ var gridViewCellStyle7 = new DataGridViewCellStyle();
+ var gridViewCellStyle8 = new DataGridViewCellStyle();
+ SplitContainer1 = new SplitContainer();
+ NumericUpDown编码_信息码 = new NumericUpDown();
+ Label23 = new Label();
+ Button2 = new Button();
+ Button1 = new Button();
+ TextBox1 = new TextBox();
+ Label27 = new Label();
+ CheckBox第二个音扩展 = new CheckBox();
+ CheckBox第一个音扩展 = new CheckBox();
+ ComboBox14 = new ComboBox();
+ ComboBox18 = new ComboBox();
+ ComboBox2 = new ComboBox();
+ Label26 = new Label();
+ Label25 = new Label();
+ Label24 = new Label();
+ SplitContainer2 = new SplitContainer();
+ NumericUpDown解码_信息码 = new NumericUpDown();
+ Label30 = new Label();
+ Button3 = new Button();
+ Button4 = new Button();
+ TextBox3 = new TextBox();
+ TextBox4 = new TextBox();
+ ComboBox7 = new ComboBox();
+ ComboBox6 = new ComboBox();
+ ComboBox5 = new ComboBox();
+ ComboBox10 = new ComboBox();
+ Label37 = new Label();
+ ComboBox9 = new ComboBox();
+ Label36 = new Label();
+ ComboBox8 = new ComboBox();
+ Label31 = new Label();
+ ComboBox4 = new ComboBox();
+ Label32 = new Label();
+ Label33 = new Label();
+ Label35 = new Label();
+ Label34 = new Label();
+ SplitContainer3 = new SplitContainer();
+ NumericUpDown27 = new NumericUpDown();
+ Label38 = new Label();
+ GroupBox3 = new GroupBox();
+ CheckBox8 = new CheckBox();
+ CheckBox4 = new CheckBox();
+ CheckBox7 = new CheckBox();
+ CheckBox3 = new CheckBox();
+ CheckBox6 = new CheckBox();
+ CheckBox2 = new CheckBox();
+ CheckBox5 = new CheckBox();
+ CheckBox1 = new CheckBox();
+ GroupBox2 = new GroupBox();
+ ComboBox16 = new ComboBox();
+ Label43 = new Label();
+ Label42 = new Label();
+ ComboBox17 = new ComboBox();
+ Label41 = new Label();
+ ComboBox13 = new ComboBox();
+ Label40 = new Label();
+ ComboBox15 = new ComboBox();
+ Button5 = new Button();
+ Button6 = new Button();
+ ComboBox11 = new ComboBox();
+ ComboBox12 = new ComboBox();
+ Label44 = new Label();
+ Label45 = new Label();
+ TabControl1 = new TabControl();
+ TabPage1 = new TabPage();
+ GroupBox1 = new GroupBox();
+ NumericUpDown16 = new NumericUpDown();
+ Label16 = new Label();
+ NumericUpDown13 = new NumericUpDown();
+ NumericUpDown12 = new NumericUpDown();
+ NumericUpDown14 = new NumericUpDown();
+ NumericUpDown11 = new NumericUpDown();
+ NumericUpDown5 = new NumericUpDown();
+ Label14 = new Label();
+ Label12 = new Label();
+ NumericUpDown10 = new NumericUpDown();
+ Label10 = new Label();
+ NumericUpDown8 = new NumericUpDown();
+ NumericUpDown15 = new NumericUpDown();
+ Label8 = new Label();
+ NumericUpDown6 = new NumericUpDown();
+ Label6 = new Label();
+ NumericUpDown9 = new NumericUpDown();
+ NumericUpDown4 = new NumericUpDown();
+ Label15 = new Label();
+ NumericUpDown7 = new NumericUpDown();
+ Label13 = new Label();
+ Label4 = new Label();
+ Label11 = new Label();
+ Label9 = new Label();
+ NumericUpDown2 = new NumericUpDown();
+ Label7 = new Label();
+ NumericUpDown3 = new NumericUpDown();
+ Label5 = new Label();
+ Label2 = new Label();
+ Label3 = new Label();
+ NumericUpDown1 = new NumericUpDown();
+ Label1 = new Label();
+ DataGridView1 = new DataGridView();
+ Column0 = new DataGridViewComboBoxColumn();
+ Column1 = new DataGridViewComboBoxColumn();
+ Column2 = new DataGridViewComboBoxColumn();
+ TabPage2 = new TabPage();
+ CheckBox5_Tone侧音 = new CheckBox();
+ DataGridView2 = new DataGridView();
+ DataGridViewComboBoxColumn1 = new DataGridViewComboBoxColumn();
+ DataGridViewComboBoxColumn2 = new DataGridViewTextBoxColumn();
+ ComboBox1 = new ComboBox();
+ Label22 = new Label();
+ NumericUpDown21 = new NumericUpDown();
+ Label21 = new Label();
+ NumericUpDown20 = new NumericUpDown();
+ Label20 = new Label();
+ NumericUpDown19 = new NumericUpDown();
+ Label19 = new Label();
+ NumericUpDown18 = new NumericUpDown();
+ Label18 = new Label();
+ NumericUpDown17 = new NumericUpDown();
+ Label17 = new Label();
+ TabPage3 = new TabPage();
+ NumericUpDown25 = new NumericUpDown();
+ Label29 = new Label();
+ ComboBox3 = new ComboBox();
+ Label28 = new Label();
+ TabPage4 = new TabPage();
+ Button7 = new Button();
+ Button8 = new Button();
+ Button9 = new Button();
+ SplitContainer1.Panel1.SuspendLayout();
+ SplitContainer1.Panel2.SuspendLayout();
+ SplitContainer1.SuspendLayout();
+ NumericUpDown编码_信息码.BeginInit();
+ SplitContainer2.Panel1.SuspendLayout();
+ SplitContainer2.Panel2.SuspendLayout();
+ SplitContainer2.SuspendLayout();
+ NumericUpDown解码_信息码.BeginInit();
+ SplitContainer3.Panel1.SuspendLayout();
+ SplitContainer3.Panel2.SuspendLayout();
+ SplitContainer3.SuspendLayout();
+ NumericUpDown27.BeginInit();
+ GroupBox3.SuspendLayout();
+ GroupBox2.SuspendLayout();
+ TabControl1.SuspendLayout();
+ TabPage1.SuspendLayout();
+ GroupBox1.SuspendLayout();
+ NumericUpDown16.BeginInit();
+ NumericUpDown13.BeginInit();
+ NumericUpDown12.BeginInit();
+ NumericUpDown14.BeginInit();
+ NumericUpDown11.BeginInit();
+ NumericUpDown5.BeginInit();
+ NumericUpDown10.BeginInit();
+ NumericUpDown8.BeginInit();
+ NumericUpDown15.BeginInit();
+ NumericUpDown6.BeginInit();
+ NumericUpDown9.BeginInit();
+ NumericUpDown4.BeginInit();
+ NumericUpDown7.BeginInit();
+ NumericUpDown2.BeginInit();
+ NumericUpDown3.BeginInit();
+ NumericUpDown1.BeginInit();
+ ((ISupportInitialize) DataGridView1).BeginInit();
+ TabPage2.SuspendLayout();
+ ((ISupportInitialize) DataGridView2).BeginInit();
+ NumericUpDown21.BeginInit();
+ NumericUpDown20.BeginInit();
+ NumericUpDown19.BeginInit();
+ NumericUpDown18.BeginInit();
+ NumericUpDown17.BeginInit();
+ TabPage3.SuspendLayout();
+ NumericUpDown25.BeginInit();
+ TabPage4.SuspendLayout();
+ SuspendLayout();
+ SplitContainer1.AccessibleDescription = null;
+ SplitContainer1.AccessibleName = null;
+ componentResourceManager.ApplyResources(SplitContainer1, "SplitContainer1");
+ SplitContainer1.BackgroundImage = null;
+ SplitContainer1.BorderStyle = BorderStyle.FixedSingle;
+ SplitContainer1.Font = null;
+ SplitContainer1.Name = "SplitContainer1";
+ SplitContainer1.Panel1.AccessibleDescription = null;
+ SplitContainer1.Panel1.AccessibleName = null;
- internal virtual TextBox TextBox4
- {
- [DebuggerNonUserCode] get => _TextBox4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_TextBox4 != null)
+ //componentResourceManager.ApplyResources((object) this.SplitContainer1.Panel1, "SplitContainer1.Panel1");
+ SplitContainer1.Panel1.BackgroundImage = null;
+ SplitContainer1.Panel1.Controls.Add(NumericUpDown编码_信息码);
+ SplitContainer1.Panel1.Controls.Add(Label23);
+ SplitContainer1.Panel1.Font = null;
+ SplitContainer1.Panel2.AccessibleDescription = null;
+ SplitContainer1.Panel2.AccessibleName = null;
+
+ //componentResourceManager.ApplyResources((object) this.SplitContainer1.Panel2, "SplitContainer1.Panel2");
+ SplitContainer1.Panel2.BackgroundImage = null;
+ SplitContainer1.Panel2.Controls.Add(Button2);
+ SplitContainer1.Panel2.Controls.Add(Button1);
+ SplitContainer1.Panel2.Controls.Add(TextBox1);
+ SplitContainer1.Panel2.Controls.Add(Label27);
+ SplitContainer1.Panel2.Controls.Add(CheckBox第二个音扩展);
+ SplitContainer1.Panel2.Controls.Add(CheckBox第一个音扩展);
+ SplitContainer1.Panel2.Controls.Add(ComboBox14);
+ SplitContainer1.Panel2.Controls.Add(ComboBox18);
+ SplitContainer1.Panel2.Controls.Add(ComboBox2);
+ SplitContainer1.Panel2.Controls.Add(Label26);
+ SplitContainer1.Panel2.Controls.Add(Label25);
+ SplitContainer1.Panel2.Controls.Add(Label24);
+ SplitContainer1.Panel2.Font = null;
+ NumericUpDown编码_信息码.AccessibleDescription = null;
+ NumericUpDown编码_信息码.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown编码_信息码, "NumericUpDown编码_信息码");
+ NumericUpDown编码_信息码.Font = null;
+ var numericUpDown编码信息码1 = NumericUpDown编码_信息码;
+ var num1 = new Decimal(new int[4] {32, 0, 0, 0});
+ var num2 = num1;
+ numericUpDown编码信息码1.Maximum = num2;
+ var numericUpDown编码信息码2 = NumericUpDown编码_信息码;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num3 = num1;
+ numericUpDown编码信息码2.Minimum = num3;
+ NumericUpDown编码_信息码.Name = "NumericUpDown编码_信息码";
+ var numericUpDown编码信息码3 = NumericUpDown编码_信息码;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num4 = num1;
+ numericUpDown编码信息码3.Value = num4;
+ Label23.AccessibleDescription = null;
+ Label23.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label23, "Label23");
+ Label23.Font = null;
+ Label23.Name = "Label23";
+ Button2.AccessibleDescription = null;
+ Button2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button2, "Button2");
+ Button2.BackgroundImage = null;
+ Button2.Font = null;
+ Button2.Name = "Button2";
+ Button2.UseVisualStyleBackColor = true;
+ Button1.AccessibleDescription = null;
+ Button1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button1, "Button1");
+ Button1.BackgroundImage = null;
+ Button1.Font = null;
+ Button1.Name = "Button1";
+ Button1.UseVisualStyleBackColor = true;
+ TextBox1.AccessibleDescription = null;
+ TextBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox1, "TextBox1");
+ TextBox1.BackgroundImage = null;
+ TextBox1.Font = null;
+ TextBox1.Name = "TextBox1";
+ Label27.AccessibleDescription = null;
+ Label27.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label27, "Label27");
+ Label27.Font = null;
+ Label27.Name = "Label27";
+ CheckBox第二个音扩展.AccessibleDescription = null;
+ CheckBox第二个音扩展.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox第二个音扩展, "CheckBox第二个音扩展");
+ CheckBox第二个音扩展.BackgroundImage = null;
+ CheckBox第二个音扩展.Font = null;
+ CheckBox第二个音扩展.Name = "CheckBox第二个音扩展";
+ CheckBox第二个音扩展.UseVisualStyleBackColor = true;
+ CheckBox第一个音扩展.AccessibleDescription = null;
+ CheckBox第一个音扩展.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox第一个音扩展, "CheckBox第一个音扩展");
+ CheckBox第一个音扩展.BackgroundImage = null;
+ CheckBox第一个音扩展.Font = null;
+ CheckBox第一个音扩展.Name = "CheckBox第一个音扩展";
+ CheckBox第一个音扩展.UseVisualStyleBackColor = true;
+ ComboBox14.AccessibleDescription = null;
+ ComboBox14.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox14, "ComboBox14");
+ ComboBox14.BackgroundImage = null;
+ ComboBox14.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox14.Font = null;
+ ComboBox14.FormattingEnabled = true;
+ ComboBox14.Items.AddRange(new object[33]
+ {
+ componentResourceManager.GetString("ComboBox14.Items"),
+ componentResourceManager.GetString("ComboBox14.Items1"),
+ componentResourceManager.GetString("ComboBox14.Items2"),
+ componentResourceManager.GetString("ComboBox14.Items3"),
+ componentResourceManager.GetString("ComboBox14.Items4"),
+ componentResourceManager.GetString("ComboBox14.Items5"),
+ componentResourceManager.GetString("ComboBox14.Items6"),
+ componentResourceManager.GetString("ComboBox14.Items7"),
+ componentResourceManager.GetString("ComboBox14.Items8"),
+ componentResourceManager.GetString("ComboBox14.Items9"),
+ componentResourceManager.GetString("ComboBox14.Items10"),
+ componentResourceManager.GetString("ComboBox14.Items11"),
+ componentResourceManager.GetString("ComboBox14.Items12"),
+ componentResourceManager.GetString("ComboBox14.Items13"),
+ componentResourceManager.GetString("ComboBox14.Items14"),
+ componentResourceManager.GetString("ComboBox14.Items15"),
+ componentResourceManager.GetString("ComboBox14.Items16"),
+ componentResourceManager.GetString("ComboBox14.Items17"),
+ componentResourceManager.GetString("ComboBox14.Items18"),
+ componentResourceManager.GetString("ComboBox14.Items19"),
+ componentResourceManager.GetString("ComboBox14.Items20"),
+ componentResourceManager.GetString("ComboBox14.Items21"),
+ componentResourceManager.GetString("ComboBox14.Items22"),
+ componentResourceManager.GetString("ComboBox14.Items23"),
+ componentResourceManager.GetString("ComboBox14.Items24"),
+ componentResourceManager.GetString("ComboBox14.Items25"),
+ componentResourceManager.GetString("ComboBox14.Items26"),
+ componentResourceManager.GetString("ComboBox14.Items27"),
+ componentResourceManager.GetString("ComboBox14.Items28"),
+ componentResourceManager.GetString("ComboBox14.Items29"),
+ componentResourceManager.GetString("ComboBox14.Items30"),
+ componentResourceManager.GetString("ComboBox14.Items31"),
+ componentResourceManager.GetString("ComboBox14.Items32")
+ });
+ ComboBox14.Name = "ComboBox14";
+ ComboBox18.AccessibleDescription = null;
+ ComboBox18.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox18, "ComboBox18");
+ ComboBox18.BackgroundImage = null;
+ ComboBox18.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox18.Font = null;
+ ComboBox18.FormattingEnabled = true;
+ ComboBox18.Items.AddRange(new object[33]
+ {
+ componentResourceManager.GetString("ComboBox18.Items"),
+ componentResourceManager.GetString("ComboBox18.Items1"),
+ componentResourceManager.GetString("ComboBox18.Items2"),
+ componentResourceManager.GetString("ComboBox18.Items3"),
+ componentResourceManager.GetString("ComboBox18.Items4"),
+ componentResourceManager.GetString("ComboBox18.Items5"),
+ componentResourceManager.GetString("ComboBox18.Items6"),
+ componentResourceManager.GetString("ComboBox18.Items7"),
+ componentResourceManager.GetString("ComboBox18.Items8"),
+ componentResourceManager.GetString("ComboBox18.Items9"),
+ componentResourceManager.GetString("ComboBox18.Items10"),
+ componentResourceManager.GetString("ComboBox18.Items11"),
+ componentResourceManager.GetString("ComboBox18.Items12"),
+ componentResourceManager.GetString("ComboBox18.Items13"),
+ componentResourceManager.GetString("ComboBox18.Items14"),
+ componentResourceManager.GetString("ComboBox18.Items15"),
+ componentResourceManager.GetString("ComboBox18.Items16"),
+ componentResourceManager.GetString("ComboBox18.Items17"),
+ componentResourceManager.GetString("ComboBox18.Items18"),
+ componentResourceManager.GetString("ComboBox18.Items19"),
+ componentResourceManager.GetString("ComboBox18.Items20"),
+ componentResourceManager.GetString("ComboBox18.Items21"),
+ componentResourceManager.GetString("ComboBox18.Items22"),
+ componentResourceManager.GetString("ComboBox18.Items23"),
+ componentResourceManager.GetString("ComboBox18.Items24"),
+ componentResourceManager.GetString("ComboBox18.Items25"),
+ componentResourceManager.GetString("ComboBox18.Items26"),
+ componentResourceManager.GetString("ComboBox18.Items27"),
+ componentResourceManager.GetString("ComboBox18.Items28"),
+ componentResourceManager.GetString("ComboBox18.Items29"),
+ componentResourceManager.GetString("ComboBox18.Items30"),
+ componentResourceManager.GetString("ComboBox18.Items31"),
+ componentResourceManager.GetString("ComboBox18.Items32")
+ });
+ ComboBox18.Name = "ComboBox18";
+ ComboBox2.AccessibleDescription = null;
+ ComboBox2.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox2, "ComboBox2");
+ ComboBox2.BackgroundImage = null;
+ ComboBox2.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox2.Font = null;
+ ComboBox2.FormattingEnabled = true;
+ ComboBox2.Items.AddRange(new object[9]
+ {
+ componentResourceManager.GetString("ComboBox2.Items"),
+ componentResourceManager.GetString("ComboBox2.Items1"),
+ componentResourceManager.GetString("ComboBox2.Items2"),
+ componentResourceManager.GetString("ComboBox2.Items3"),
+ componentResourceManager.GetString("ComboBox2.Items4"),
+ componentResourceManager.GetString("ComboBox2.Items5"),
+ componentResourceManager.GetString("ComboBox2.Items6"),
+ componentResourceManager.GetString("ComboBox2.Items7"),
+ componentResourceManager.GetString("ComboBox2.Items8")
+ });
+ ComboBox2.Name = "ComboBox2";
+ Label26.AccessibleDescription = null;
+ Label26.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label26, "Label26");
+ Label26.Font = null;
+ Label26.Name = "Label26";
+ Label25.AccessibleDescription = null;
+ Label25.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label25, "Label25");
+ Label25.Font = null;
+ Label25.Name = "Label25";
+ Label24.AccessibleDescription = null;
+ Label24.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label24, "Label24");
+ Label24.Font = null;
+ Label24.Name = "Label24";
+ SplitContainer2.AccessibleDescription = null;
+ SplitContainer2.AccessibleName = null;
+ componentResourceManager.ApplyResources(SplitContainer2, "SplitContainer2");
+ SplitContainer2.BackgroundImage = null;
+ SplitContainer2.BorderStyle = BorderStyle.FixedSingle;
+ SplitContainer2.Font = null;
+ SplitContainer2.Name = "SplitContainer2";
+ SplitContainer2.Panel1.AccessibleDescription = null;
+ SplitContainer2.Panel1.AccessibleName = null;
+
+ //componentResourceManager.ApplyResources((object) this.SplitContainer2.Panel1, "SplitContainer2.Panel1");
+ SplitContainer2.Panel1.BackgroundImage = null;
+ SplitContainer2.Panel1.Controls.Add(NumericUpDown解码_信息码);
+ SplitContainer2.Panel1.Controls.Add(Label30);
+ SplitContainer2.Panel1.Font = null;
+ SplitContainer2.Panel2.AccessibleDescription = null;
+ SplitContainer2.Panel2.AccessibleName = null;
+
+ //componentResourceManager.ApplyResources((object) this.SplitContainer2.Panel2, "SplitContainer2.Panel2");
+ SplitContainer2.Panel2.BackgroundImage = null;
+ SplitContainer2.Panel2.Controls.Add(Button3);
+ SplitContainer2.Panel2.Controls.Add(Button4);
+ SplitContainer2.Panel2.Controls.Add(TextBox3);
+ SplitContainer2.Panel2.Controls.Add(TextBox4);
+ SplitContainer2.Panel2.Controls.Add(ComboBox7);
+ SplitContainer2.Panel2.Controls.Add(ComboBox6);
+ SplitContainer2.Panel2.Controls.Add(ComboBox5);
+ SplitContainer2.Panel2.Controls.Add(ComboBox10);
+ SplitContainer2.Panel2.Controls.Add(Label37);
+ SplitContainer2.Panel2.Controls.Add(ComboBox9);
+ SplitContainer2.Panel2.Controls.Add(Label36);
+ SplitContainer2.Panel2.Controls.Add(ComboBox8);
+ SplitContainer2.Panel2.Controls.Add(Label31);
+ SplitContainer2.Panel2.Controls.Add(ComboBox4);
+ SplitContainer2.Panel2.Controls.Add(Label32);
+ SplitContainer2.Panel2.Controls.Add(Label33);
+ SplitContainer2.Panel2.Controls.Add(Label35);
+ SplitContainer2.Panel2.Controls.Add(Label34);
+ SplitContainer2.Panel2.Font = null;
+ NumericUpDown解码_信息码.AccessibleDescription = null;
+ NumericUpDown解码_信息码.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown解码_信息码, "NumericUpDown解码_信息码");
+ NumericUpDown解码_信息码.Font = null;
+ var numericUpDown解码信息码1 = NumericUpDown解码_信息码;
+ num1 = new Decimal(new int[4] {16, 0, 0, 0});
+ var num5 = num1;
+ numericUpDown解码信息码1.Maximum = num5;
+ var numericUpDown解码信息码2 = NumericUpDown解码_信息码;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num6 = num1;
+ numericUpDown解码信息码2.Minimum = num6;
+ NumericUpDown解码_信息码.Name = "NumericUpDown解码_信息码";
+ var numericUpDown解码信息码3 = NumericUpDown解码_信息码;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num7 = num1;
+ numericUpDown解码信息码3.Value = num7;
+ Label30.AccessibleDescription = null;
+ Label30.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label30, "Label30");
+ Label30.Font = null;
+ Label30.Name = "Label30";
+ Button3.AccessibleDescription = null;
+ Button3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button3, "Button3");
+ Button3.BackgroundImage = null;
+ Button3.Font = null;
+ Button3.Name = "Button3";
+ Button3.UseVisualStyleBackColor = true;
+ Button4.AccessibleDescription = null;
+ Button4.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button4, "Button4");
+ Button4.BackgroundImage = null;
+ Button4.Font = null;
+ Button4.Name = "Button4";
+ Button4.UseVisualStyleBackColor = true;
+ TextBox3.AccessibleDescription = null;
+ TextBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox3, "TextBox3");
+ TextBox3.BackgroundImage = null;
+ TextBox3.Font = null;
+ TextBox3.Name = "TextBox3";
+ TextBox4.AccessibleDescription = null;
+ TextBox4.AccessibleName = null;
+ componentResourceManager.ApplyResources(TextBox4, "TextBox4");
+ TextBox4.BackgroundImage = null;
+ TextBox4.Font = null;
+ TextBox4.Name = "TextBox4";
+ ComboBox7.AccessibleDescription = null;
+ ComboBox7.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox7, "ComboBox7");
+ ComboBox7.BackgroundImage = null;
+ ComboBox7.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox7.Font = null;
+ ComboBox7.FormattingEnabled = true;
+ ComboBox7.Items.AddRange(new object[16]
+ {
+ componentResourceManager.GetString("ComboBox7.Items"),
+ componentResourceManager.GetString("ComboBox7.Items1"),
+ componentResourceManager.GetString("ComboBox7.Items2"),
+ componentResourceManager.GetString("ComboBox7.Items3"),
+ componentResourceManager.GetString("ComboBox7.Items4"),
+ componentResourceManager.GetString("ComboBox7.Items5"),
+ componentResourceManager.GetString("ComboBox7.Items6"),
+ componentResourceManager.GetString("ComboBox7.Items7"),
+ componentResourceManager.GetString("ComboBox7.Items8"),
+ componentResourceManager.GetString("ComboBox7.Items9"),
+ componentResourceManager.GetString("ComboBox7.Items10"),
+ componentResourceManager.GetString("ComboBox7.Items11"),
+ componentResourceManager.GetString("ComboBox7.Items12"),
+ componentResourceManager.GetString("ComboBox7.Items13"),
+ componentResourceManager.GetString("ComboBox7.Items14"),
+ componentResourceManager.GetString("ComboBox7.Items15")
+ });
+ ComboBox7.Name = "ComboBox7";
+ ComboBox6.AccessibleDescription = null;
+ ComboBox6.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox6, "ComboBox6");
+ ComboBox6.BackgroundImage = null;
+ ComboBox6.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox6.Font = null;
+ ComboBox6.FormattingEnabled = true;
+ ComboBox6.Items.AddRange(new object[2]
+ {
+ componentResourceManager.GetString("ComboBox6.Items"),
+ componentResourceManager.GetString("ComboBox6.Items1")
+ });
+ ComboBox6.Name = "ComboBox6";
+ ComboBox5.AccessibleDescription = null;
+ ComboBox5.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox5, "ComboBox5");
+ ComboBox5.BackgroundImage = null;
+ ComboBox5.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox5.Font = null;
+ ComboBox5.FormattingEnabled = true;
+ ComboBox5.Items.AddRange(new object[2]
+ {
+ componentResourceManager.GetString("ComboBox5.Items"),
+ componentResourceManager.GetString("ComboBox5.Items1")
+ });
+ ComboBox5.Name = "ComboBox5";
+ ComboBox10.AccessibleDescription = null;
+ ComboBox10.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox10, "ComboBox10");
+ ComboBox10.BackgroundImage = null;
+ ComboBox10.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox10.Font = null;
+ ComboBox10.FormattingEnabled = true;
+ ComboBox10.Items.AddRange(new object[9]
+ {
+ componentResourceManager.GetString("ComboBox10.Items"),
+ componentResourceManager.GetString("ComboBox10.Items1"),
+ componentResourceManager.GetString("ComboBox10.Items2"),
+ componentResourceManager.GetString("ComboBox10.Items3"),
+ componentResourceManager.GetString("ComboBox10.Items4"),
+ componentResourceManager.GetString("ComboBox10.Items5"),
+ componentResourceManager.GetString("ComboBox10.Items6"),
+ componentResourceManager.GetString("ComboBox10.Items7"),
+ componentResourceManager.GetString("ComboBox10.Items8")
+ });
+ ComboBox10.Name = "ComboBox10";
+ Label37.AccessibleDescription = null;
+ Label37.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label37, "Label37");
+ Label37.Font = null;
+ Label37.Name = "Label37";
+ ComboBox9.AccessibleDescription = null;
+ ComboBox9.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox9, "ComboBox9");
+ ComboBox9.BackgroundImage = null;
+ ComboBox9.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox9.Font = null;
+ ComboBox9.FormattingEnabled = true;
+ ComboBox9.Items.AddRange(new object[9]
+ {
+ componentResourceManager.GetString("ComboBox9.Items"),
+ componentResourceManager.GetString("ComboBox9.Items1"),
+ componentResourceManager.GetString("ComboBox9.Items2"),
+ componentResourceManager.GetString("ComboBox9.Items3"),
+ componentResourceManager.GetString("ComboBox9.Items4"),
+ componentResourceManager.GetString("ComboBox9.Items5"),
+ componentResourceManager.GetString("ComboBox9.Items6"),
+ componentResourceManager.GetString("ComboBox9.Items7"),
+ componentResourceManager.GetString("ComboBox9.Items8")
+ });
+ ComboBox9.Name = "ComboBox9";
+ Label36.AccessibleDescription = null;
+ Label36.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label36, "Label36");
+ Label36.Font = null;
+ Label36.Name = "Label36";
+ ComboBox8.AccessibleDescription = null;
+ ComboBox8.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox8, "ComboBox8");
+ ComboBox8.BackgroundImage = null;
+ ComboBox8.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox8.Font = null;
+ ComboBox8.FormattingEnabled = true;
+ ComboBox8.Items.AddRange(new object[33]
+ {
+ componentResourceManager.GetString("ComboBox8.Items"),
+ componentResourceManager.GetString("ComboBox8.Items1"),
+ componentResourceManager.GetString("ComboBox8.Items2"),
+ componentResourceManager.GetString("ComboBox8.Items3"),
+ componentResourceManager.GetString("ComboBox8.Items4"),
+ componentResourceManager.GetString("ComboBox8.Items5"),
+ componentResourceManager.GetString("ComboBox8.Items6"),
+ componentResourceManager.GetString("ComboBox8.Items7"),
+ componentResourceManager.GetString("ComboBox8.Items8"),
+ componentResourceManager.GetString("ComboBox8.Items9"),
+ componentResourceManager.GetString("ComboBox8.Items10"),
+ componentResourceManager.GetString("ComboBox8.Items11"),
+ componentResourceManager.GetString("ComboBox8.Items12"),
+ componentResourceManager.GetString("ComboBox8.Items13"),
+ componentResourceManager.GetString("ComboBox8.Items14"),
+ componentResourceManager.GetString("ComboBox8.Items15"),
+ componentResourceManager.GetString("ComboBox8.Items16"),
+ componentResourceManager.GetString("ComboBox8.Items17"),
+ componentResourceManager.GetString("ComboBox8.Items18"),
+ componentResourceManager.GetString("ComboBox8.Items19"),
+ componentResourceManager.GetString("ComboBox8.Items20"),
+ componentResourceManager.GetString("ComboBox8.Items21"),
+ componentResourceManager.GetString("ComboBox8.Items22"),
+ componentResourceManager.GetString("ComboBox8.Items23"),
+ componentResourceManager.GetString("ComboBox8.Items24"),
+ componentResourceManager.GetString("ComboBox8.Items25"),
+ componentResourceManager.GetString("ComboBox8.Items26"),
+ componentResourceManager.GetString("ComboBox8.Items27"),
+ componentResourceManager.GetString("ComboBox8.Items28"),
+ componentResourceManager.GetString("ComboBox8.Items29"),
+ componentResourceManager.GetString("ComboBox8.Items30"),
+ componentResourceManager.GetString("ComboBox8.Items31"),
+ componentResourceManager.GetString("ComboBox8.Items32")
+ });
+ ComboBox8.Name = "ComboBox8";
+ Label31.AccessibleDescription = null;
+ Label31.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label31, "Label31");
+ Label31.Font = null;
+ Label31.Name = "Label31";
+ ComboBox4.AccessibleDescription = null;
+ ComboBox4.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox4, "ComboBox4");
+ ComboBox4.BackgroundImage = null;
+ ComboBox4.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox4.Font = null;
+ ComboBox4.FormattingEnabled = true;
+ ComboBox4.Items.AddRange(new object[3]
+ {
+ componentResourceManager.GetString("ComboBox4.Items"),
+ componentResourceManager.GetString("ComboBox4.Items1"),
+ componentResourceManager.GetString("ComboBox4.Items2")
+ });
+ ComboBox4.Name = "ComboBox4";
+ Label32.AccessibleDescription = null;
+ Label32.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label32, "Label32");
+ Label32.Font = null;
+ Label32.Name = "Label32";
+ Label33.AccessibleDescription = null;
+ Label33.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label33, "Label33");
+ Label33.Font = null;
+ Label33.Name = "Label33";
+ Label35.AccessibleDescription = null;
+ Label35.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label35, "Label35");
+ Label35.Font = null;
+ Label35.Name = "Label35";
+ Label34.AccessibleDescription = null;
+ Label34.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label34, "Label34");
+ Label34.Font = null;
+ Label34.Name = "Label34";
+ SplitContainer3.AccessibleDescription = null;
+ SplitContainer3.AccessibleName = null;
+ componentResourceManager.ApplyResources(SplitContainer3, "SplitContainer3");
+ SplitContainer3.BackgroundImage = null;
+ SplitContainer3.BorderStyle = BorderStyle.FixedSingle;
+ SplitContainer3.Font = null;
+ SplitContainer3.Name = "SplitContainer3";
+ SplitContainer3.Panel1.AccessibleDescription = null;
+ SplitContainer3.Panel1.AccessibleName = null;
+
+ //componentResourceManager.ApplyResources((object) this.SplitContainer3.Panel1, "SplitContainer3.Panel1");
+ SplitContainer3.Panel1.BackgroundImage = null;
+ SplitContainer3.Panel1.Controls.Add(NumericUpDown27);
+ SplitContainer3.Panel1.Controls.Add(Label38);
+ SplitContainer3.Panel1.Font = null;
+ SplitContainer3.Panel2.AccessibleDescription = null;
+ SplitContainer3.Panel2.AccessibleName = null;
+
+ //componentResourceManager.ApplyResources((object) this.SplitContainer3.Panel2, "SplitContainer3.Panel2");
+ SplitContainer3.Panel2.BackgroundImage = null;
+ SplitContainer3.Panel2.Controls.Add(GroupBox3);
+ SplitContainer3.Panel2.Controls.Add(GroupBox2);
+ SplitContainer3.Panel2.Controls.Add(Button5);
+ SplitContainer3.Panel2.Controls.Add(Button6);
+ SplitContainer3.Panel2.Controls.Add(ComboBox11);
+ SplitContainer3.Panel2.Controls.Add(ComboBox12);
+ SplitContainer3.Panel2.Controls.Add(Label44);
+ SplitContainer3.Panel2.Controls.Add(Label45);
+ SplitContainer3.Panel2.Font = null;
+ NumericUpDown27.AccessibleDescription = null;
+ NumericUpDown27.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown27, "NumericUpDown27");
+ NumericUpDown27.Font = null;
+ var numericUpDown27_1 = NumericUpDown27;
+ num1 = new Decimal(new int[4] {16, 0, 0, 0});
+ var num8 = num1;
+ numericUpDown27_1.Maximum = num8;
+ var numericUpDown27_2 = NumericUpDown27;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num9 = num1;
+ numericUpDown27_2.Minimum = num9;
+ NumericUpDown27.Name = "NumericUpDown27";
+ var numericUpDown27_3 = NumericUpDown27;
+ num1 = new Decimal(new int[4] {1, 0, 0, 0});
+ var num10 = num1;
+ numericUpDown27_3.Value = num10;
+ Label38.AccessibleDescription = null;
+ Label38.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label38, "Label38");
+ Label38.Font = null;
+ Label38.Name = "Label38";
+ GroupBox3.AccessibleDescription = null;
+ GroupBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox3, "GroupBox3");
+ GroupBox3.BackgroundImage = null;
+ GroupBox3.Controls.Add(CheckBox8);
+ GroupBox3.Controls.Add(CheckBox4);
+ GroupBox3.Controls.Add(CheckBox7);
+ GroupBox3.Controls.Add(CheckBox3);
+ GroupBox3.Controls.Add(CheckBox6);
+ GroupBox3.Controls.Add(CheckBox2);
+ GroupBox3.Controls.Add(CheckBox5);
+ GroupBox3.Controls.Add(CheckBox1);
+ GroupBox3.Font = null;
+ GroupBox3.Name = "GroupBox3";
+ GroupBox3.TabStop = false;
+ CheckBox8.AccessibleDescription = null;
+ CheckBox8.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox8, "CheckBox8");
+ CheckBox8.BackgroundImage = null;
+ CheckBox8.Font = null;
+ CheckBox8.Name = "CheckBox8";
+ CheckBox8.UseVisualStyleBackColor = true;
+ CheckBox4.AccessibleDescription = null;
+ CheckBox4.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox4, "CheckBox4");
+ CheckBox4.BackgroundImage = null;
+ CheckBox4.Font = null;
+ CheckBox4.Name = "CheckBox4";
+ CheckBox4.UseVisualStyleBackColor = true;
+ CheckBox7.AccessibleDescription = null;
+ CheckBox7.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox7, "CheckBox7");
+ CheckBox7.BackgroundImage = null;
+ CheckBox7.Font = null;
+ CheckBox7.Name = "CheckBox7";
+ CheckBox7.UseVisualStyleBackColor = true;
+ CheckBox3.AccessibleDescription = null;
+ CheckBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox3, "CheckBox3");
+ CheckBox3.BackgroundImage = null;
+ CheckBox3.Font = null;
+ CheckBox3.Name = "CheckBox3";
+ CheckBox3.UseVisualStyleBackColor = true;
+ CheckBox6.AccessibleDescription = null;
+ CheckBox6.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox6, "CheckBox6");
+ CheckBox6.BackgroundImage = null;
+ CheckBox6.Font = null;
+ CheckBox6.Name = "CheckBox6";
+ CheckBox6.UseVisualStyleBackColor = true;
+ CheckBox2.AccessibleDescription = null;
+ CheckBox2.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox2, "CheckBox2");
+ CheckBox2.BackgroundImage = null;
+ CheckBox2.Font = null;
+ CheckBox2.Name = "CheckBox2";
+ CheckBox2.UseVisualStyleBackColor = true;
+ CheckBox5.AccessibleDescription = null;
+ CheckBox5.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox5, "CheckBox5");
+ CheckBox5.BackgroundImage = null;
+ CheckBox5.Font = null;
+ CheckBox5.Name = "CheckBox5";
+ CheckBox5.UseVisualStyleBackColor = true;
+ CheckBox1.AccessibleDescription = null;
+ CheckBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox1, "CheckBox1");
+ CheckBox1.BackgroundImage = null;
+ CheckBox1.Font = null;
+ CheckBox1.Name = "CheckBox1";
+ CheckBox1.UseVisualStyleBackColor = true;
+ GroupBox2.AccessibleDescription = null;
+ GroupBox2.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox2, "GroupBox2");
+ GroupBox2.BackgroundImage = null;
+ GroupBox2.Controls.Add(ComboBox16);
+ GroupBox2.Controls.Add(Label43);
+ GroupBox2.Controls.Add(Label42);
+ GroupBox2.Controls.Add(ComboBox17);
+ GroupBox2.Controls.Add(Label41);
+ GroupBox2.Controls.Add(ComboBox13);
+ GroupBox2.Controls.Add(Label40);
+ GroupBox2.Controls.Add(ComboBox15);
+ GroupBox2.Font = null;
+ GroupBox2.Name = "GroupBox2";
+ GroupBox2.TabStop = false;
+ ComboBox16.AccessibleDescription = null;
+ ComboBox16.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox16, "ComboBox16");
+ ComboBox16.BackgroundImage = null;
+ ComboBox16.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox16.Font = null;
+ ComboBox16.FormattingEnabled = true;
+ ComboBox16.Items.AddRange(new object[17]
+ {
+ componentResourceManager.GetString("ComboBox16.Items"),
+ componentResourceManager.GetString("ComboBox16.Items1"),
+ componentResourceManager.GetString("ComboBox16.Items2"),
+ componentResourceManager.GetString("ComboBox16.Items3"),
+ componentResourceManager.GetString("ComboBox16.Items4"),
+ componentResourceManager.GetString("ComboBox16.Items5"),
+ componentResourceManager.GetString("ComboBox16.Items6"),
+ componentResourceManager.GetString("ComboBox16.Items7"),
+ componentResourceManager.GetString("ComboBox16.Items8"),
+ componentResourceManager.GetString("ComboBox16.Items9"),
+ componentResourceManager.GetString("ComboBox16.Items10"),
+ componentResourceManager.GetString("ComboBox16.Items11"),
+ componentResourceManager.GetString("ComboBox16.Items12"),
+ componentResourceManager.GetString("ComboBox16.Items13"),
+ componentResourceManager.GetString("ComboBox16.Items14"),
+ componentResourceManager.GetString("ComboBox16.Items15"),
+ componentResourceManager.GetString("ComboBox16.Items16")
+ });
+ ComboBox16.Name = "ComboBox16";
+ Label43.AccessibleDescription = null;
+ Label43.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label43, "Label43");
+ Label43.Font = null;
+ Label43.Name = "Label43";
+ Label42.AccessibleDescription = null;
+ Label42.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label42, "Label42");
+ Label42.Font = null;
+ Label42.Name = "Label42";
+ ComboBox17.AccessibleDescription = null;
+ ComboBox17.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox17, "ComboBox17");
+ ComboBox17.BackgroundImage = null;
+ ComboBox17.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox17.Font = null;
+ ComboBox17.FormattingEnabled = true;
+ ComboBox17.Items.AddRange(new object[17]
+ {
+ componentResourceManager.GetString("ComboBox17.Items"),
+ componentResourceManager.GetString("ComboBox17.Items1"),
+ componentResourceManager.GetString("ComboBox17.Items2"),
+ componentResourceManager.GetString("ComboBox17.Items3"),
+ componentResourceManager.GetString("ComboBox17.Items4"),
+ componentResourceManager.GetString("ComboBox17.Items5"),
+ componentResourceManager.GetString("ComboBox17.Items6"),
+ componentResourceManager.GetString("ComboBox17.Items7"),
+ componentResourceManager.GetString("ComboBox17.Items8"),
+ componentResourceManager.GetString("ComboBox17.Items9"),
+ componentResourceManager.GetString("ComboBox17.Items10"),
+ componentResourceManager.GetString("ComboBox17.Items11"),
+ componentResourceManager.GetString("ComboBox17.Items12"),
+ componentResourceManager.GetString("ComboBox17.Items13"),
+ componentResourceManager.GetString("ComboBox17.Items14"),
+ componentResourceManager.GetString("ComboBox17.Items15"),
+ componentResourceManager.GetString("ComboBox17.Items16")
+ });
+ ComboBox17.Name = "ComboBox17";
+ Label41.AccessibleDescription = null;
+ Label41.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label41, "Label41");
+ Label41.Font = null;
+ Label41.Name = "Label41";
+ ComboBox13.AccessibleDescription = null;
+ ComboBox13.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox13, "ComboBox13");
+ ComboBox13.BackgroundImage = null;
+ ComboBox13.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox13.Font = null;
+ ComboBox13.FormattingEnabled = true;
+ ComboBox13.Items.AddRange(new object[17]
+ {
+ componentResourceManager.GetString("ComboBox13.Items"),
+ componentResourceManager.GetString("ComboBox13.Items1"),
+ componentResourceManager.GetString("ComboBox13.Items2"),
+ componentResourceManager.GetString("ComboBox13.Items3"),
+ componentResourceManager.GetString("ComboBox13.Items4"),
+ componentResourceManager.GetString("ComboBox13.Items5"),
+ componentResourceManager.GetString("ComboBox13.Items6"),
+ componentResourceManager.GetString("ComboBox13.Items7"),
+ componentResourceManager.GetString("ComboBox13.Items8"),
+ componentResourceManager.GetString("ComboBox13.Items9"),
+ componentResourceManager.GetString("ComboBox13.Items10"),
+ componentResourceManager.GetString("ComboBox13.Items11"),
+ componentResourceManager.GetString("ComboBox13.Items12"),
+ componentResourceManager.GetString("ComboBox13.Items13"),
+ componentResourceManager.GetString("ComboBox13.Items14"),
+ componentResourceManager.GetString("ComboBox13.Items15"),
+ componentResourceManager.GetString("ComboBox13.Items16")
+ });
+ ComboBox13.Name = "ComboBox13";
+ Label40.AccessibleDescription = null;
+ Label40.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label40, "Label40");
+ Label40.Font = null;
+ Label40.Name = "Label40";
+ ComboBox15.AccessibleDescription = null;
+ ComboBox15.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox15, "ComboBox15");
+ ComboBox15.BackgroundImage = null;
+ ComboBox15.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox15.Font = null;
+ ComboBox15.FormattingEnabled = true;
+ ComboBox15.Items.AddRange(new object[17]
+ {
+ componentResourceManager.GetString("ComboBox15.Items"),
+ componentResourceManager.GetString("ComboBox15.Items1"),
+ componentResourceManager.GetString("ComboBox15.Items2"),
+ componentResourceManager.GetString("ComboBox15.Items3"),
+ componentResourceManager.GetString("ComboBox15.Items4"),
+ componentResourceManager.GetString("ComboBox15.Items5"),
+ componentResourceManager.GetString("ComboBox15.Items6"),
+ componentResourceManager.GetString("ComboBox15.Items7"),
+ componentResourceManager.GetString("ComboBox15.Items8"),
+ componentResourceManager.GetString("ComboBox15.Items9"),
+ componentResourceManager.GetString("ComboBox15.Items10"),
+ componentResourceManager.GetString("ComboBox15.Items11"),
+ componentResourceManager.GetString("ComboBox15.Items12"),
+ componentResourceManager.GetString("ComboBox15.Items13"),
+ componentResourceManager.GetString("ComboBox15.Items14"),
+ componentResourceManager.GetString("ComboBox15.Items15"),
+ componentResourceManager.GetString("ComboBox15.Items16")
+ });
+ ComboBox15.Name = "ComboBox15";
+ Button5.AccessibleDescription = null;
+ Button5.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button5, "Button5");
+ Button5.BackgroundImage = null;
+ Button5.Font = null;
+ Button5.Name = "Button5";
+ Button5.UseVisualStyleBackColor = true;
+ Button6.AccessibleDescription = null;
+ Button6.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button6, "Button6");
+ Button6.BackgroundImage = null;
+ Button6.Font = null;
+ Button6.Name = "Button6";
+ Button6.UseVisualStyleBackColor = true;
+ ComboBox11.AccessibleDescription = null;
+ ComboBox11.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox11, "ComboBox11");
+ ComboBox11.BackgroundImage = null;
+ ComboBox11.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox11.Font = null;
+ ComboBox11.FormattingEnabled = true;
+ ComboBox11.Items.AddRange(new object[33]
+ {
+ componentResourceManager.GetString("ComboBox11.Items"),
+ componentResourceManager.GetString("ComboBox11.Items1"),
+ componentResourceManager.GetString("ComboBox11.Items2"),
+ componentResourceManager.GetString("ComboBox11.Items3"),
+ componentResourceManager.GetString("ComboBox11.Items4"),
+ componentResourceManager.GetString("ComboBox11.Items5"),
+ componentResourceManager.GetString("ComboBox11.Items6"),
+ componentResourceManager.GetString("ComboBox11.Items7"),
+ componentResourceManager.GetString("ComboBox11.Items8"),
+ componentResourceManager.GetString("ComboBox11.Items9"),
+ componentResourceManager.GetString("ComboBox11.Items10"),
+ componentResourceManager.GetString("ComboBox11.Items11"),
+ componentResourceManager.GetString("ComboBox11.Items12"),
+ componentResourceManager.GetString("ComboBox11.Items13"),
+ componentResourceManager.GetString("ComboBox11.Items14"),
+ componentResourceManager.GetString("ComboBox11.Items15"),
+ componentResourceManager.GetString("ComboBox11.Items16"),
+ componentResourceManager.GetString("ComboBox11.Items17"),
+ componentResourceManager.GetString("ComboBox11.Items18"),
+ componentResourceManager.GetString("ComboBox11.Items19"),
+ componentResourceManager.GetString("ComboBox11.Items20"),
+ componentResourceManager.GetString("ComboBox11.Items21"),
+ componentResourceManager.GetString("ComboBox11.Items22"),
+ componentResourceManager.GetString("ComboBox11.Items23"),
+ componentResourceManager.GetString("ComboBox11.Items24"),
+ componentResourceManager.GetString("ComboBox11.Items25"),
+ componentResourceManager.GetString("ComboBox11.Items26"),
+ componentResourceManager.GetString("ComboBox11.Items27"),
+ componentResourceManager.GetString("ComboBox11.Items28"),
+ componentResourceManager.GetString("ComboBox11.Items29"),
+ componentResourceManager.GetString("ComboBox11.Items30"),
+ componentResourceManager.GetString("ComboBox11.Items31"),
+ componentResourceManager.GetString("ComboBox11.Items32")
+ });
+ ComboBox11.Name = "ComboBox11";
+ ComboBox12.AccessibleDescription = null;
+ ComboBox12.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox12, "ComboBox12");
+ ComboBox12.BackgroundImage = null;
+ ComboBox12.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox12.Font = null;
+ ComboBox12.FormattingEnabled = true;
+ ComboBox12.Items.AddRange(new object[33]
+ {
+ componentResourceManager.GetString("ComboBox12.Items"),
+ componentResourceManager.GetString("ComboBox12.Items1"),
+ componentResourceManager.GetString("ComboBox12.Items2"),
+ componentResourceManager.GetString("ComboBox12.Items3"),
+ componentResourceManager.GetString("ComboBox12.Items4"),
+ componentResourceManager.GetString("ComboBox12.Items5"),
+ componentResourceManager.GetString("ComboBox12.Items6"),
+ componentResourceManager.GetString("ComboBox12.Items7"),
+ componentResourceManager.GetString("ComboBox12.Items8"),
+ componentResourceManager.GetString("ComboBox12.Items9"),
+ componentResourceManager.GetString("ComboBox12.Items10"),
+ componentResourceManager.GetString("ComboBox12.Items11"),
+ componentResourceManager.GetString("ComboBox12.Items12"),
+ componentResourceManager.GetString("ComboBox12.Items13"),
+ componentResourceManager.GetString("ComboBox12.Items14"),
+ componentResourceManager.GetString("ComboBox12.Items15"),
+ componentResourceManager.GetString("ComboBox12.Items16"),
+ componentResourceManager.GetString("ComboBox12.Items17"),
+ componentResourceManager.GetString("ComboBox12.Items18"),
+ componentResourceManager.GetString("ComboBox12.Items19"),
+ componentResourceManager.GetString("ComboBox12.Items20"),
+ componentResourceManager.GetString("ComboBox12.Items21"),
+ componentResourceManager.GetString("ComboBox12.Items22"),
+ componentResourceManager.GetString("ComboBox12.Items23"),
+ componentResourceManager.GetString("ComboBox12.Items24"),
+ componentResourceManager.GetString("ComboBox12.Items25"),
+ componentResourceManager.GetString("ComboBox12.Items26"),
+ componentResourceManager.GetString("ComboBox12.Items27"),
+ componentResourceManager.GetString("ComboBox12.Items28"),
+ componentResourceManager.GetString("ComboBox12.Items29"),
+ componentResourceManager.GetString("ComboBox12.Items30"),
+ componentResourceManager.GetString("ComboBox12.Items31"),
+ componentResourceManager.GetString("ComboBox12.Items32")
+ });
+ ComboBox12.Name = "ComboBox12";
+ Label44.AccessibleDescription = null;
+ Label44.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label44, "Label44");
+ Label44.Font = null;
+ Label44.Name = "Label44";
+ Label45.AccessibleDescription = null;
+ Label45.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label45, "Label45");
+ Label45.Font = null;
+ Label45.Name = "Label45";
+ TabControl1.AccessibleDescription = null;
+ TabControl1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabControl1, "TabControl1");
+ TabControl1.BackgroundImage = null;
+ TabControl1.Controls.Add(TabPage1);
+ TabControl1.Controls.Add(TabPage2);
+ TabControl1.Controls.Add(TabPage3);
+ TabControl1.Controls.Add(TabPage4);
+ TabControl1.Font = null;
+ TabControl1.Name = "TabControl1";
+ TabControl1.SelectedIndex = 0;
+ TabPage1.AccessibleDescription = null;
+ TabPage1.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage1, "TabPage1");
+ TabPage1.BackgroundImage = null;
+ TabPage1.Controls.Add(GroupBox1);
+ TabPage1.Controls.Add(DataGridView1);
+ TabPage1.Font = null;
+ TabPage1.Name = "TabPage1";
+ TabPage1.UseVisualStyleBackColor = true;
+ GroupBox1.AccessibleDescription = null;
+ GroupBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(GroupBox1, "GroupBox1");
+ GroupBox1.BackgroundImage = null;
+ GroupBox1.Controls.Add(NumericUpDown16);
+ GroupBox1.Controls.Add(Label16);
+ GroupBox1.Controls.Add(NumericUpDown13);
+ GroupBox1.Controls.Add(NumericUpDown12);
+ GroupBox1.Controls.Add(NumericUpDown14);
+ GroupBox1.Controls.Add(NumericUpDown11);
+ GroupBox1.Controls.Add(NumericUpDown5);
+ GroupBox1.Controls.Add(Label14);
+ GroupBox1.Controls.Add(Label12);
+ GroupBox1.Controls.Add(NumericUpDown10);
+ GroupBox1.Controls.Add(Label10);
+ GroupBox1.Controls.Add(NumericUpDown8);
+ GroupBox1.Controls.Add(NumericUpDown15);
+ GroupBox1.Controls.Add(Label8);
+ GroupBox1.Controls.Add(NumericUpDown6);
+ GroupBox1.Controls.Add(Label6);
+ GroupBox1.Controls.Add(NumericUpDown9);
+ GroupBox1.Controls.Add(NumericUpDown4);
+ GroupBox1.Controls.Add(Label15);
+ GroupBox1.Controls.Add(NumericUpDown7);
+ GroupBox1.Controls.Add(Label13);
+ GroupBox1.Controls.Add(Label4);
+ GroupBox1.Controls.Add(Label11);
+ GroupBox1.Controls.Add(Label9);
+ GroupBox1.Controls.Add(NumericUpDown2);
+ GroupBox1.Controls.Add(Label7);
+ GroupBox1.Controls.Add(NumericUpDown3);
+ GroupBox1.Controls.Add(Label5);
+ GroupBox1.Controls.Add(Label2);
+ GroupBox1.Controls.Add(Label3);
+ GroupBox1.Controls.Add(NumericUpDown1);
+ GroupBox1.Controls.Add(Label1);
+ GroupBox1.Font = null;
+ GroupBox1.Name = "GroupBox1";
+ GroupBox1.TabStop = false;
+ NumericUpDown16.AccessibleDescription = null;
+ NumericUpDown16.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown16, "NumericUpDown16");
+ NumericUpDown16.DecimalPlaces = 1;
+ NumericUpDown16.Font = null;
+ var numericUpDown16_1 = NumericUpDown16;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num11 = num1;
+ numericUpDown16_1.Maximum = num11;
+ var numericUpDown16_2 = NumericUpDown16;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num12 = num1;
+ numericUpDown16_2.Minimum = num12;
+ NumericUpDown16.Name = "NumericUpDown16";
+ var numericUpDown16_3 = NumericUpDown16;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num13 = num1;
+ numericUpDown16_3.Value = num13;
+ Label16.AccessibleDescription = null;
+ Label16.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label16, "Label16");
+ Label16.Font = null;
+ Label16.Name = "Label16";
+ NumericUpDown13.AccessibleDescription = null;
+ NumericUpDown13.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown13, "NumericUpDown13");
+ NumericUpDown13.DecimalPlaces = 1;
+ NumericUpDown13.Font = null;
+ var numericUpDown13_1 = NumericUpDown13;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num14 = num1;
+ numericUpDown13_1.Maximum = num14;
+ var numericUpDown13_2 = NumericUpDown13;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num15 = num1;
+ numericUpDown13_2.Minimum = num15;
+ NumericUpDown13.Name = "NumericUpDown13";
+ var numericUpDown13_3 = NumericUpDown13;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num16 = num1;
+ numericUpDown13_3.Value = num16;
+ NumericUpDown12.AccessibleDescription = null;
+ NumericUpDown12.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown12, "NumericUpDown12");
+ NumericUpDown12.DecimalPlaces = 1;
+ NumericUpDown12.Font = null;
+ var numericUpDown12_1 = NumericUpDown12;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num17 = num1;
+ numericUpDown12_1.Maximum = num17;
+ var numericUpDown12_2 = NumericUpDown12;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num18 = num1;
+ numericUpDown12_2.Minimum = num18;
+ NumericUpDown12.Name = "NumericUpDown12";
+ var numericUpDown12_3 = NumericUpDown12;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num19 = num1;
+ numericUpDown12_3.Value = num19;
+ NumericUpDown14.AccessibleDescription = null;
+ NumericUpDown14.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown14, "NumericUpDown14");
+ NumericUpDown14.DecimalPlaces = 1;
+ NumericUpDown14.Font = null;
+ var numericUpDown14_1 = NumericUpDown14;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num20 = num1;
+ numericUpDown14_1.Maximum = num20;
+ var numericUpDown14_2 = NumericUpDown14;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num21 = num1;
+ numericUpDown14_2.Minimum = num21;
+ NumericUpDown14.Name = "NumericUpDown14";
+ var numericUpDown14_3 = NumericUpDown14;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num22 = num1;
+ numericUpDown14_3.Value = num22;
+ NumericUpDown11.AccessibleDescription = null;
+ NumericUpDown11.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown11, "NumericUpDown11");
+ NumericUpDown11.DecimalPlaces = 1;
+ NumericUpDown11.Font = null;
+ var numericUpDown11_1 = NumericUpDown11;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num23 = num1;
+ numericUpDown11_1.Maximum = num23;
+ var numericUpDown11_2 = NumericUpDown11;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num24 = num1;
+ numericUpDown11_2.Minimum = num24;
+ NumericUpDown11.Name = "NumericUpDown11";
+ var numericUpDown11_3 = NumericUpDown11;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num25 = num1;
+ numericUpDown11_3.Value = num25;
+ NumericUpDown5.AccessibleDescription = null;
+ NumericUpDown5.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown5, "NumericUpDown5");
+ NumericUpDown5.DecimalPlaces = 1;
+ NumericUpDown5.Font = null;
+ var numericUpDown5_1 = NumericUpDown5;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num26 = num1;
+ numericUpDown5_1.Maximum = num26;
+ var numericUpDown5_2 = NumericUpDown5;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num27 = num1;
+ numericUpDown5_2.Minimum = num27;
+ NumericUpDown5.Name = "NumericUpDown5";
+ var numericUpDown5_3 = NumericUpDown5;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num28 = num1;
+ numericUpDown5_3.Value = num28;
+ Label14.AccessibleDescription = null;
+ Label14.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label14, "Label14");
+ Label14.Font = null;
+ Label14.Name = "Label14";
+ Label12.AccessibleDescription = null;
+ Label12.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label12, "Label12");
+ Label12.Font = null;
+ Label12.Name = "Label12";
+ NumericUpDown10.AccessibleDescription = null;
+ NumericUpDown10.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown10, "NumericUpDown10");
+ NumericUpDown10.DecimalPlaces = 1;
+ NumericUpDown10.Font = null;
+ var numericUpDown10_1 = NumericUpDown10;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num29 = num1;
+ numericUpDown10_1.Maximum = num29;
+ var numericUpDown10_2 = NumericUpDown10;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num30 = num1;
+ numericUpDown10_2.Minimum = num30;
+ NumericUpDown10.Name = "NumericUpDown10";
+ var numericUpDown10_3 = NumericUpDown10;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num31 = num1;
+ numericUpDown10_3.Value = num31;
+ Label10.AccessibleDescription = null;
+ Label10.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label10, "Label10");
+ Label10.Font = null;
+ Label10.Name = "Label10";
+ NumericUpDown8.AccessibleDescription = null;
+ NumericUpDown8.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown8, "NumericUpDown8");
+ NumericUpDown8.DecimalPlaces = 1;
+ NumericUpDown8.Font = null;
+ var numericUpDown8_1 = NumericUpDown8;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num32 = num1;
+ numericUpDown8_1.Maximum = num32;
+ var numericUpDown8_2 = NumericUpDown8;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num33 = num1;
+ numericUpDown8_2.Minimum = num33;
+ NumericUpDown8.Name = "NumericUpDown8";
+ var numericUpDown8_3 = NumericUpDown8;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num34 = num1;
+ numericUpDown8_3.Value = num34;
+ NumericUpDown15.AccessibleDescription = null;
+ NumericUpDown15.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown15, "NumericUpDown15");
+ NumericUpDown15.DecimalPlaces = 1;
+ NumericUpDown15.Font = null;
+ var numericUpDown15_1 = NumericUpDown15;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num35 = num1;
+ numericUpDown15_1.Maximum = num35;
+ var numericUpDown15_2 = NumericUpDown15;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num36 = num1;
+ numericUpDown15_2.Minimum = num36;
+ NumericUpDown15.Name = "NumericUpDown15";
+ var numericUpDown15_3 = NumericUpDown15;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num37 = num1;
+ numericUpDown15_3.Value = num37;
+ Label8.AccessibleDescription = null;
+ Label8.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label8, "Label8");
+ Label8.Font = null;
+ Label8.Name = "Label8";
+ NumericUpDown6.AccessibleDescription = null;
+ NumericUpDown6.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown6, "NumericUpDown6");
+ NumericUpDown6.DecimalPlaces = 1;
+ NumericUpDown6.Font = null;
+ var numericUpDown6_1 = NumericUpDown6;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num38 = num1;
+ numericUpDown6_1.Maximum = num38;
+ var numericUpDown6_2 = NumericUpDown6;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num39 = num1;
+ numericUpDown6_2.Minimum = num39;
+ NumericUpDown6.Name = "NumericUpDown6";
+ var numericUpDown6_3 = NumericUpDown6;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num40 = num1;
+ numericUpDown6_3.Value = num40;
+ Label6.AccessibleDescription = null;
+ Label6.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label6, "Label6");
+ Label6.Font = null;
+ Label6.Name = "Label6";
+ NumericUpDown9.AccessibleDescription = null;
+ NumericUpDown9.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown9, "NumericUpDown9");
+ NumericUpDown9.DecimalPlaces = 1;
+ NumericUpDown9.Font = null;
+ var numericUpDown9_1 = NumericUpDown9;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num41 = num1;
+ numericUpDown9_1.Maximum = num41;
+ var numericUpDown9_2 = NumericUpDown9;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num42 = num1;
+ numericUpDown9_2.Minimum = num42;
+ NumericUpDown9.Name = "NumericUpDown9";
+ var numericUpDown9_3 = NumericUpDown9;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num43 = num1;
+ numericUpDown9_3.Value = num43;
+ NumericUpDown4.AccessibleDescription = null;
+ NumericUpDown4.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown4, "NumericUpDown4");
+ NumericUpDown4.DecimalPlaces = 1;
+ NumericUpDown4.Font = null;
+ var numericUpDown4_1 = NumericUpDown4;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num44 = num1;
+ numericUpDown4_1.Maximum = num44;
+ var numericUpDown4_2 = NumericUpDown4;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num45 = num1;
+ numericUpDown4_2.Minimum = num45;
+ NumericUpDown4.Name = "NumericUpDown4";
+ var numericUpDown4_3 = NumericUpDown4;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num46 = num1;
+ numericUpDown4_3.Value = num46;
+ Label15.AccessibleDescription = null;
+ Label15.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label15, "Label15");
+ Label15.Font = null;
+ Label15.Name = "Label15";
+ NumericUpDown7.AccessibleDescription = null;
+ NumericUpDown7.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown7, "NumericUpDown7");
+ NumericUpDown7.DecimalPlaces = 1;
+ NumericUpDown7.Font = null;
+ var numericUpDown7_1 = NumericUpDown7;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num47 = num1;
+ numericUpDown7_1.Maximum = num47;
+ var numericUpDown7_2 = NumericUpDown7;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num48 = num1;
+ numericUpDown7_2.Minimum = num48;
+ NumericUpDown7.Name = "NumericUpDown7";
+ var numericUpDown7_3 = NumericUpDown7;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num49 = num1;
+ numericUpDown7_3.Value = num49;
+ Label13.AccessibleDescription = null;
+ Label13.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label13, "Label13");
+ Label13.Font = null;
+ Label13.Name = "Label13";
+ Label4.AccessibleDescription = null;
+ Label4.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label4, "Label4");
+ Label4.Font = null;
+ Label4.Name = "Label4";
+ Label11.AccessibleDescription = null;
+ Label11.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label11, "Label11");
+ Label11.Font = null;
+ Label11.Name = "Label11";
+ Label9.AccessibleDescription = null;
+ Label9.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label9, "Label9");
+ Label9.Font = null;
+ Label9.Name = "Label9";
+ NumericUpDown2.AccessibleDescription = null;
+ NumericUpDown2.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown2, "NumericUpDown2");
+ NumericUpDown2.DecimalPlaces = 1;
+ NumericUpDown2.Font = null;
+ var numericUpDown2_1 = NumericUpDown2;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num50 = num1;
+ numericUpDown2_1.Maximum = num50;
+ var numericUpDown2_2 = NumericUpDown2;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num51 = num1;
+ numericUpDown2_2.Minimum = num51;
+ NumericUpDown2.Name = "NumericUpDown2";
+ var numericUpDown2_3 = NumericUpDown2;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num52 = num1;
+ numericUpDown2_3.Value = num52;
+ Label7.AccessibleDescription = null;
+ Label7.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label7, "Label7");
+ Label7.Font = null;
+ Label7.Name = "Label7";
+ NumericUpDown3.AccessibleDescription = null;
+ NumericUpDown3.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown3, "NumericUpDown3");
+ NumericUpDown3.DecimalPlaces = 1;
+ NumericUpDown3.Font = null;
+ var numericUpDown3_1 = NumericUpDown3;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num53 = num1;
+ numericUpDown3_1.Maximum = num53;
+ var numericUpDown3_2 = NumericUpDown3;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num54 = num1;
+ numericUpDown3_2.Minimum = num54;
+ NumericUpDown3.Name = "NumericUpDown3";
+ var numericUpDown3_3 = NumericUpDown3;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num55 = num1;
+ numericUpDown3_3.Value = num55;
+ Label5.AccessibleDescription = null;
+ Label5.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label5, "Label5");
+ Label5.Font = null;
+ Label5.Name = "Label5";
+ Label2.AccessibleDescription = null;
+ Label2.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label2, "Label2");
+ Label2.Font = null;
+ Label2.Name = "Label2";
+ Label3.AccessibleDescription = null;
+ Label3.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label3, "Label3");
+ Label3.Font = null;
+ Label3.Name = "Label3";
+ NumericUpDown1.AccessibleDescription = null;
+ NumericUpDown1.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown1, "NumericUpDown1");
+ NumericUpDown1.DecimalPlaces = 1;
+ NumericUpDown1.Font = null;
+ var numericUpDown1_1 = NumericUpDown1;
+ num1 = new Decimal(new int[4] {1, 0, 0, 65536});
+ var num56 = num1;
+ numericUpDown1_1.Increment = num56;
+ var numericUpDown1_2 = NumericUpDown1;
+ num1 = new Decimal(new int[4] {30000, 0, 0, 65536});
+ var num57 = num1;
+ numericUpDown1_2.Maximum = num57;
+ var numericUpDown1_3 = NumericUpDown1;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num58 = num1;
+ numericUpDown1_3.Minimum = num58;
+ NumericUpDown1.Name = "NumericUpDown1";
+ var numericUpDown1_4 = NumericUpDown1;
+ num1 = new Decimal(new int[4] {3000, 0, 0, 65536});
+ var num59 = num1;
+ numericUpDown1_4.Value = num59;
+ Label1.AccessibleDescription = null;
+ Label1.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label1, "Label1");
+ Label1.Font = null;
+ Label1.Name = "Label1";
+ DataGridView1.AccessibleDescription = null;
+ DataGridView1.AccessibleName = null;
+ DataGridView1.AllowUserToAddRows = false;
+ DataGridView1.AllowUserToDeleteRows = false;
+ DataGridView1.AllowUserToResizeColumns = false;
+ DataGridView1.AllowUserToResizeRows = false;
+ gridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.AlternatingRowsDefaultCellStyle = gridViewCellStyle1;
+ componentResourceManager.ApplyResources(DataGridView1, "DataGridView1");
+ DataGridView1.BackgroundImage = null;
+ gridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle2.BackColor = SystemColors.Control;
+ gridViewCellStyle2.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle2.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle2.WrapMode = DataGridViewTriState.True;
+ DataGridView1.ColumnHeadersDefaultCellStyle = gridViewCellStyle2;
+ DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView1.Columns.AddRange(Column0, Column1, Column2);
+ DataGridView1.Font = null;
+ DataGridView1.Name = "DataGridView1";
+ gridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle3.BackColor = SystemColors.Control;
+ gridViewCellStyle3.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle3.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle3.WrapMode = DataGridViewTriState.True;
+ DataGridView1.RowHeadersDefaultCellStyle = gridViewCellStyle3;
+ DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView1.RowsDefaultCellStyle = gridViewCellStyle4;
+ DataGridView1.RowTemplate.Height = 23;
+ Column0.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
+ Column0.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column0, "Column0");
+ Column0.Items.AddRange("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");
+ Column0.Name = "Column0";
+ Column0.Resizable = DataGridViewTriState.True;
+ Column1.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column1, "Column1");
+ Column1.Items.AddRange("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F");
+ Column1.Name = "Column1";
+ Column2.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(Column2, "Column2");
+ Column2.Items.AddRange("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F");
+ Column2.Name = "Column2";
+ TabPage2.AccessibleDescription = null;
+ TabPage2.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage2, "TabPage2");
+ TabPage2.BackgroundImage = null;
+ TabPage2.Controls.Add(SplitContainer1);
+ TabPage2.Controls.Add(CheckBox5_Tone侧音);
+ TabPage2.Controls.Add(DataGridView2);
+ TabPage2.Controls.Add(ComboBox1);
+ TabPage2.Controls.Add(Label22);
+ TabPage2.Controls.Add(NumericUpDown21);
+ TabPage2.Controls.Add(Label21);
+ TabPage2.Controls.Add(NumericUpDown20);
+ TabPage2.Controls.Add(Label20);
+ TabPage2.Controls.Add(NumericUpDown19);
+ TabPage2.Controls.Add(Label19);
+ TabPage2.Controls.Add(NumericUpDown18);
+ TabPage2.Controls.Add(Label18);
+ TabPage2.Controls.Add(NumericUpDown17);
+ TabPage2.Controls.Add(Label17);
+ TabPage2.Font = null;
+ TabPage2.Name = "TabPage2";
+ TabPage2.UseVisualStyleBackColor = true;
+ CheckBox5_Tone侧音.AccessibleDescription = null;
+ CheckBox5_Tone侧音.AccessibleName = null;
+ componentResourceManager.ApplyResources(CheckBox5_Tone侧音, "CheckBox5_Tone侧音");
+ CheckBox5_Tone侧音.BackgroundImage = null;
+ CheckBox5_Tone侧音.Font = null;
+ CheckBox5_Tone侧音.Name = "CheckBox5_Tone侧音";
+ CheckBox5_Tone侧音.UseVisualStyleBackColor = true;
+ DataGridView2.AccessibleDescription = null;
+ DataGridView2.AccessibleName = null;
+ DataGridView2.AllowUserToAddRows = false;
+ DataGridView2.AllowUserToDeleteRows = false;
+ DataGridView2.AllowUserToResizeColumns = false;
+ DataGridView2.AllowUserToResizeRows = false;
+ gridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView2.AlternatingRowsDefaultCellStyle = gridViewCellStyle5;
+ componentResourceManager.ApplyResources(DataGridView2, "DataGridView2");
+ DataGridView2.BackgroundImage = null;
+ gridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle6.BackColor = SystemColors.Control;
+ gridViewCellStyle6.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle6.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle6.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle6.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle6.WrapMode = DataGridViewTriState.True;
+ DataGridView2.ColumnHeadersDefaultCellStyle = gridViewCellStyle6;
+ DataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ DataGridView2.Columns.AddRange(DataGridViewComboBoxColumn1, DataGridViewComboBoxColumn2);
+ DataGridView2.Font = null;
+ DataGridView2.Name = "DataGridView2";
+ gridViewCellStyle7.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ gridViewCellStyle7.BackColor = SystemColors.Control;
+ gridViewCellStyle7.Font = new Font("宋体", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
+ gridViewCellStyle7.ForeColor = SystemColors.WindowText;
+ gridViewCellStyle7.SelectionBackColor = SystemColors.Highlight;
+ gridViewCellStyle7.SelectionForeColor = SystemColors.HighlightText;
+ gridViewCellStyle7.WrapMode = DataGridViewTriState.True;
+ DataGridView2.RowHeadersDefaultCellStyle = gridViewCellStyle7;
+ DataGridView2.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ gridViewCellStyle8.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ DataGridView2.RowsDefaultCellStyle = gridViewCellStyle8;
+ DataGridView2.RowTemplate.Height = 23;
+ DataGridViewComboBoxColumn1.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
+ DataGridViewComboBoxColumn1.DisplayStyle = DataGridViewComboBoxDisplayStyle.Nothing;
+ componentResourceManager.ApplyResources(DataGridViewComboBoxColumn1, "DataGridViewComboBoxColumn1");
+ DataGridViewComboBoxColumn1.Items.AddRange("ZVEI1", "ZVEI2", "ZVEI3", "PZVEI", "DZVEI", "PDZVEI", "CCIR1", "CCIR2", "PCCIR", "EEA",
+ "EUIRO SIGNAL", "NATEL", "EIA", "MODAT", "CCITT");
+ DataGridViewComboBoxColumn1.Name = "DataGridViewComboBoxColumn1";
+ DataGridViewComboBoxColumn1.Resizable = DataGridViewTriState.False;
+ componentResourceManager.ApplyResources(DataGridViewComboBoxColumn2, "DataGridViewComboBoxColumn2");
+ DataGridViewComboBoxColumn2.MaxInputLength = 8;
+ DataGridViewComboBoxColumn2.Name = "DataGridViewComboBoxColumn2";
+ DataGridViewComboBoxColumn2.Resizable = DataGridViewTriState.False;
+ DataGridViewComboBoxColumn2.SortMode = DataGridViewColumnSortMode.NotSortable;
+ ComboBox1.AccessibleDescription = null;
+ ComboBox1.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox1, "ComboBox1");
+ ComboBox1.BackgroundImage = null;
+ ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox1.Font = null;
+ ComboBox1.FormattingEnabled = true;
+ ComboBox1.Items.AddRange(new object[17]
+ {
+ componentResourceManager.GetString("ComboBox1.Items"),
+ componentResourceManager.GetString("ComboBox1.Items1"),
+ componentResourceManager.GetString("ComboBox1.Items2"),
+ componentResourceManager.GetString("ComboBox1.Items3"),
+ componentResourceManager.GetString("ComboBox1.Items4"),
+ componentResourceManager.GetString("ComboBox1.Items5"),
+ componentResourceManager.GetString("ComboBox1.Items6"),
+ componentResourceManager.GetString("ComboBox1.Items7"),
+ componentResourceManager.GetString("ComboBox1.Items8"),
+ componentResourceManager.GetString("ComboBox1.Items9"),
+ componentResourceManager.GetString("ComboBox1.Items10"),
+ componentResourceManager.GetString("ComboBox1.Items11"),
+ componentResourceManager.GetString("ComboBox1.Items12"),
+ componentResourceManager.GetString("ComboBox1.Items13"),
+ componentResourceManager.GetString("ComboBox1.Items14"),
+ componentResourceManager.GetString("ComboBox1.Items15"),
+ componentResourceManager.GetString("ComboBox1.Items16")
+ });
+ ComboBox1.Name = "ComboBox1";
+ Label22.AccessibleDescription = null;
+ Label22.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label22, "Label22");
+ Label22.Font = null;
+ Label22.Name = "Label22";
+ NumericUpDown21.AccessibleDescription = null;
+ NumericUpDown21.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown21, "NumericUpDown21");
+ NumericUpDown21.Font = null;
+ var numericUpDown21_1 = NumericUpDown21;
+ num1 = new Decimal(new int[4] {10, 0, 0, 0});
+ var num60 = num1;
+ numericUpDown21_1.Increment = num60;
+ var numericUpDown21_2 = NumericUpDown21;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num61 = num1;
+ numericUpDown21_2.Maximum = num61;
+ NumericUpDown21.Name = "NumericUpDown21";
+ Label21.AccessibleDescription = null;
+ Label21.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label21, "Label21");
+ Label21.Font = null;
+ Label21.Name = "Label21";
+ NumericUpDown20.AccessibleDescription = null;
+ NumericUpDown20.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown20, "NumericUpDown20");
+ NumericUpDown20.Font = null;
+ var numericUpDown20_1 = NumericUpDown20;
+ num1 = new Decimal(new int[4] {10, 0, 0, 0});
+ var num62 = num1;
+ numericUpDown20_1.Increment = num62;
+ var numericUpDown20_2 = NumericUpDown20;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num63 = num1;
+ numericUpDown20_2.Maximum = num63;
+ NumericUpDown20.Name = "NumericUpDown20";
+ Label20.AccessibleDescription = null;
+ Label20.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label20, "Label20");
+ Label20.Font = null;
+ Label20.Name = "Label20";
+ NumericUpDown19.AccessibleDescription = null;
+ NumericUpDown19.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown19, "NumericUpDown19");
+ NumericUpDown19.Font = null;
+ var numericUpDown19_1 = NumericUpDown19;
+ num1 = new Decimal(new int[4] {10, 0, 0, 0});
+ var num64 = num1;
+ numericUpDown19_1.Increment = num64;
+ var numericUpDown19_2 = NumericUpDown19;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num65 = num1;
+ numericUpDown19_2.Maximum = num65;
+ NumericUpDown19.Name = "NumericUpDown19";
+ Label19.AccessibleDescription = null;
+ Label19.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label19, "Label19");
+ Label19.Font = null;
+ Label19.Name = "Label19";
+ NumericUpDown18.AccessibleDescription = null;
+ NumericUpDown18.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown18, "NumericUpDown18");
+ NumericUpDown18.Font = null;
+ var numericUpDown18_1 = NumericUpDown18;
+ num1 = new Decimal(new int[4] {10, 0, 0, 0});
+ var num66 = num1;
+ numericUpDown18_1.Increment = num66;
+ var numericUpDown18_2 = NumericUpDown18;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num67 = num1;
+ numericUpDown18_2.Maximum = num67;
+ NumericUpDown18.Name = "NumericUpDown18";
+ Label18.AccessibleDescription = null;
+ Label18.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label18, "Label18");
+ Label18.Font = null;
+ Label18.Name = "Label18";
+ NumericUpDown17.AccessibleDescription = null;
+ NumericUpDown17.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown17, "NumericUpDown17");
+ NumericUpDown17.Font = null;
+ var numericUpDown17_1 = NumericUpDown17;
+ num1 = new Decimal(new int[4] {10, 0, 0, 0});
+ var num68 = num1;
+ numericUpDown17_1.Increment = num68;
+ var numericUpDown17_2 = NumericUpDown17;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num69 = num1;
+ numericUpDown17_2.Maximum = num69;
+ NumericUpDown17.Name = "NumericUpDown17";
+ Label17.AccessibleDescription = null;
+ Label17.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label17, "Label17");
+ Label17.Font = null;
+ Label17.Name = "Label17";
+ TabPage3.AccessibleDescription = null;
+ TabPage3.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage3, "TabPage3");
+ TabPage3.BackgroundImage = null;
+ TabPage3.Controls.Add(SplitContainer2);
+ TabPage3.Controls.Add(NumericUpDown25);
+ TabPage3.Controls.Add(Label29);
+ TabPage3.Controls.Add(ComboBox3);
+ TabPage3.Controls.Add(Label28);
+ TabPage3.Font = null;
+ TabPage3.Name = "TabPage3";
+ TabPage3.UseVisualStyleBackColor = true;
+ NumericUpDown25.AccessibleDescription = null;
+ NumericUpDown25.AccessibleName = null;
+ componentResourceManager.ApplyResources(NumericUpDown25, "NumericUpDown25");
+ NumericUpDown25.Font = null;
+ var numericUpDown25 = NumericUpDown25;
+ num1 = new Decimal(new int[4] {2550, 0, 0, 0});
+ var num70 = num1;
+ numericUpDown25.Maximum = num70;
+ NumericUpDown25.Name = "NumericUpDown25";
+ Label29.AccessibleDescription = null;
+ Label29.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label29, "Label29");
+ Label29.Font = null;
+ Label29.Name = "Label29";
+ ComboBox3.AccessibleDescription = null;
+ ComboBox3.AccessibleName = null;
+ componentResourceManager.ApplyResources(ComboBox3, "ComboBox3");
+ ComboBox3.BackgroundImage = null;
+ ComboBox3.DropDownStyle = ComboBoxStyle.DropDownList;
+ ComboBox3.Font = null;
+ ComboBox3.FormattingEnabled = true;
+ ComboBox3.Items.AddRange(new object[181]
+ {
+ componentResourceManager.GetString("ComboBox3.Items"),
+ componentResourceManager.GetString("ComboBox3.Items1"),
+ componentResourceManager.GetString("ComboBox3.Items2"),
+ componentResourceManager.GetString("ComboBox3.Items3"),
+ componentResourceManager.GetString("ComboBox3.Items4"),
+ componentResourceManager.GetString("ComboBox3.Items5"),
+ componentResourceManager.GetString("ComboBox3.Items6"),
+ componentResourceManager.GetString("ComboBox3.Items7"),
+ componentResourceManager.GetString("ComboBox3.Items8"),
+ componentResourceManager.GetString("ComboBox3.Items9"),
+ componentResourceManager.GetString("ComboBox3.Items10"),
+ componentResourceManager.GetString("ComboBox3.Items11"),
+ componentResourceManager.GetString("ComboBox3.Items12"),
+ componentResourceManager.GetString("ComboBox3.Items13"),
+ componentResourceManager.GetString("ComboBox3.Items14"),
+ componentResourceManager.GetString("ComboBox3.Items15"),
+ componentResourceManager.GetString("ComboBox3.Items16"),
+ componentResourceManager.GetString("ComboBox3.Items17"),
+ componentResourceManager.GetString("ComboBox3.Items18"),
+ componentResourceManager.GetString("ComboBox3.Items19"),
+ componentResourceManager.GetString("ComboBox3.Items20"),
+ componentResourceManager.GetString("ComboBox3.Items21"),
+ componentResourceManager.GetString("ComboBox3.Items22"),
+ componentResourceManager.GetString("ComboBox3.Items23"),
+ componentResourceManager.GetString("ComboBox3.Items24"),
+ componentResourceManager.GetString("ComboBox3.Items25"),
+ componentResourceManager.GetString("ComboBox3.Items26"),
+ componentResourceManager.GetString("ComboBox3.Items27"),
+ componentResourceManager.GetString("ComboBox3.Items28"),
+ componentResourceManager.GetString("ComboBox3.Items29"),
+ componentResourceManager.GetString("ComboBox3.Items30"),
+ componentResourceManager.GetString("ComboBox3.Items31"),
+ componentResourceManager.GetString("ComboBox3.Items32"),
+ componentResourceManager.GetString("ComboBox3.Items33"),
+ componentResourceManager.GetString("ComboBox3.Items34"),
+ componentResourceManager.GetString("ComboBox3.Items35"),
+ componentResourceManager.GetString("ComboBox3.Items36"),
+ componentResourceManager.GetString("ComboBox3.Items37"),
+ componentResourceManager.GetString("ComboBox3.Items38"),
+ componentResourceManager.GetString("ComboBox3.Items39"),
+ componentResourceManager.GetString("ComboBox3.Items40"),
+ componentResourceManager.GetString("ComboBox3.Items41"),
+ componentResourceManager.GetString("ComboBox3.Items42"),
+ componentResourceManager.GetString("ComboBox3.Items43"),
+ componentResourceManager.GetString("ComboBox3.Items44"),
+ componentResourceManager.GetString("ComboBox3.Items45"),
+ componentResourceManager.GetString("ComboBox3.Items46"),
+ componentResourceManager.GetString("ComboBox3.Items47"),
+ componentResourceManager.GetString("ComboBox3.Items48"),
+ componentResourceManager.GetString("ComboBox3.Items49"),
+ componentResourceManager.GetString("ComboBox3.Items50"),
+ componentResourceManager.GetString("ComboBox3.Items51"),
+ componentResourceManager.GetString("ComboBox3.Items52"),
+ componentResourceManager.GetString("ComboBox3.Items53"),
+ componentResourceManager.GetString("ComboBox3.Items54"),
+ componentResourceManager.GetString("ComboBox3.Items55"),
+ componentResourceManager.GetString("ComboBox3.Items56"),
+ componentResourceManager.GetString("ComboBox3.Items57"),
+ componentResourceManager.GetString("ComboBox3.Items58"),
+ componentResourceManager.GetString("ComboBox3.Items59"),
+ componentResourceManager.GetString("ComboBox3.Items60"),
+ componentResourceManager.GetString("ComboBox3.Items61"),
+ componentResourceManager.GetString("ComboBox3.Items62"),
+ componentResourceManager.GetString("ComboBox3.Items63"),
+ componentResourceManager.GetString("ComboBox3.Items64"),
+ componentResourceManager.GetString("ComboBox3.Items65"),
+ componentResourceManager.GetString("ComboBox3.Items66"),
+ componentResourceManager.GetString("ComboBox3.Items67"),
+ componentResourceManager.GetString("ComboBox3.Items68"),
+ componentResourceManager.GetString("ComboBox3.Items69"),
+ componentResourceManager.GetString("ComboBox3.Items70"),
+ componentResourceManager.GetString("ComboBox3.Items71"),
+ componentResourceManager.GetString("ComboBox3.Items72"),
+ componentResourceManager.GetString("ComboBox3.Items73"),
+ componentResourceManager.GetString("ComboBox3.Items74"),
+ componentResourceManager.GetString("ComboBox3.Items75"),
+ componentResourceManager.GetString("ComboBox3.Items76"),
+ componentResourceManager.GetString("ComboBox3.Items77"),
+ componentResourceManager.GetString("ComboBox3.Items78"),
+ componentResourceManager.GetString("ComboBox3.Items79"),
+ componentResourceManager.GetString("ComboBox3.Items80"),
+ componentResourceManager.GetString("ComboBox3.Items81"),
+ componentResourceManager.GetString("ComboBox3.Items82"),
+ componentResourceManager.GetString("ComboBox3.Items83"),
+ componentResourceManager.GetString("ComboBox3.Items84"),
+ componentResourceManager.GetString("ComboBox3.Items85"),
+ componentResourceManager.GetString("ComboBox3.Items86"),
+ componentResourceManager.GetString("ComboBox3.Items87"),
+ componentResourceManager.GetString("ComboBox3.Items88"),
+ componentResourceManager.GetString("ComboBox3.Items89"),
+ componentResourceManager.GetString("ComboBox3.Items90"),
+ componentResourceManager.GetString("ComboBox3.Items91"),
+ componentResourceManager.GetString("ComboBox3.Items92"),
+ componentResourceManager.GetString("ComboBox3.Items93"),
+ componentResourceManager.GetString("ComboBox3.Items94"),
+ componentResourceManager.GetString("ComboBox3.Items95"),
+ componentResourceManager.GetString("ComboBox3.Items96"),
+ componentResourceManager.GetString("ComboBox3.Items97"),
+ componentResourceManager.GetString("ComboBox3.Items98"),
+ componentResourceManager.GetString("ComboBox3.Items99"),
+ componentResourceManager.GetString("ComboBox3.Items100"),
+ componentResourceManager.GetString("ComboBox3.Items101"),
+ componentResourceManager.GetString("ComboBox3.Items102"),
+ componentResourceManager.GetString("ComboBox3.Items103"),
+ componentResourceManager.GetString("ComboBox3.Items104"),
+ componentResourceManager.GetString("ComboBox3.Items105"),
+ componentResourceManager.GetString("ComboBox3.Items106"),
+ componentResourceManager.GetString("ComboBox3.Items107"),
+ componentResourceManager.GetString("ComboBox3.Items108"),
+ componentResourceManager.GetString("ComboBox3.Items109"),
+ componentResourceManager.GetString("ComboBox3.Items110"),
+ componentResourceManager.GetString("ComboBox3.Items111"),
+ componentResourceManager.GetString("ComboBox3.Items112"),
+ componentResourceManager.GetString("ComboBox3.Items113"),
+ componentResourceManager.GetString("ComboBox3.Items114"),
+ componentResourceManager.GetString("ComboBox3.Items115"),
+ componentResourceManager.GetString("ComboBox3.Items116"),
+ componentResourceManager.GetString("ComboBox3.Items117"),
+ componentResourceManager.GetString("ComboBox3.Items118"),
+ componentResourceManager.GetString("ComboBox3.Items119"),
+ componentResourceManager.GetString("ComboBox3.Items120"),
+ componentResourceManager.GetString("ComboBox3.Items121"),
+ componentResourceManager.GetString("ComboBox3.Items122"),
+ componentResourceManager.GetString("ComboBox3.Items123"),
+ componentResourceManager.GetString("ComboBox3.Items124"),
+ componentResourceManager.GetString("ComboBox3.Items125"),
+ componentResourceManager.GetString("ComboBox3.Items126"),
+ componentResourceManager.GetString("ComboBox3.Items127"),
+ componentResourceManager.GetString("ComboBox3.Items128"),
+ componentResourceManager.GetString("ComboBox3.Items129"),
+ componentResourceManager.GetString("ComboBox3.Items130"),
+ componentResourceManager.GetString("ComboBox3.Items131"),
+ componentResourceManager.GetString("ComboBox3.Items132"),
+ componentResourceManager.GetString("ComboBox3.Items133"),
+ componentResourceManager.GetString("ComboBox3.Items134"),
+ componentResourceManager.GetString("ComboBox3.Items135"),
+ componentResourceManager.GetString("ComboBox3.Items136"),
+ componentResourceManager.GetString("ComboBox3.Items137"),
+ componentResourceManager.GetString("ComboBox3.Items138"),
+ componentResourceManager.GetString("ComboBox3.Items139"),
+ componentResourceManager.GetString("ComboBox3.Items140"),
+ componentResourceManager.GetString("ComboBox3.Items141"),
+ componentResourceManager.GetString("ComboBox3.Items142"),
+ componentResourceManager.GetString("ComboBox3.Items143"),
+ componentResourceManager.GetString("ComboBox3.Items144"),
+ componentResourceManager.GetString("ComboBox3.Items145"),
+ componentResourceManager.GetString("ComboBox3.Items146"),
+ componentResourceManager.GetString("ComboBox3.Items147"),
+ componentResourceManager.GetString("ComboBox3.Items148"),
+ componentResourceManager.GetString("ComboBox3.Items149"),
+ componentResourceManager.GetString("ComboBox3.Items150"),
+ componentResourceManager.GetString("ComboBox3.Items151"),
+ componentResourceManager.GetString("ComboBox3.Items152"),
+ componentResourceManager.GetString("ComboBox3.Items153"),
+ componentResourceManager.GetString("ComboBox3.Items154"),
+ componentResourceManager.GetString("ComboBox3.Items155"),
+ componentResourceManager.GetString("ComboBox3.Items156"),
+ componentResourceManager.GetString("ComboBox3.Items157"),
+ componentResourceManager.GetString("ComboBox3.Items158"),
+ componentResourceManager.GetString("ComboBox3.Items159"),
+ componentResourceManager.GetString("ComboBox3.Items160"),
+ componentResourceManager.GetString("ComboBox3.Items161"),
+ componentResourceManager.GetString("ComboBox3.Items162"),
+ componentResourceManager.GetString("ComboBox3.Items163"),
+ componentResourceManager.GetString("ComboBox3.Items164"),
+ componentResourceManager.GetString("ComboBox3.Items165"),
+ componentResourceManager.GetString("ComboBox3.Items166"),
+ componentResourceManager.GetString("ComboBox3.Items167"),
+ componentResourceManager.GetString("ComboBox3.Items168"),
+ componentResourceManager.GetString("ComboBox3.Items169"),
+ componentResourceManager.GetString("ComboBox3.Items170"),
+ componentResourceManager.GetString("ComboBox3.Items171"),
+ componentResourceManager.GetString("ComboBox3.Items172"),
+ componentResourceManager.GetString("ComboBox3.Items173"),
+ componentResourceManager.GetString("ComboBox3.Items174"),
+ componentResourceManager.GetString("ComboBox3.Items175"),
+ componentResourceManager.GetString("ComboBox3.Items176"),
+ componentResourceManager.GetString("ComboBox3.Items177"),
+ componentResourceManager.GetString("ComboBox3.Items178"),
+ componentResourceManager.GetString("ComboBox3.Items179"),
+ componentResourceManager.GetString("ComboBox3.Items180")
+ });
+ ComboBox3.Name = "ComboBox3";
+ Label28.AccessibleDescription = null;
+ Label28.AccessibleName = null;
+ componentResourceManager.ApplyResources(Label28, "Label28");
+ Label28.Font = null;
+ Label28.Name = "Label28";
+ TabPage4.AccessibleDescription = null;
+ TabPage4.AccessibleName = null;
+ componentResourceManager.ApplyResources(TabPage4, "TabPage4");
+ TabPage4.BackgroundImage = null;
+ TabPage4.Controls.Add(SplitContainer3);
+ TabPage4.Font = null;
+ TabPage4.Name = "TabPage4";
+ TabPage4.UseVisualStyleBackColor = true;
+ Button7.AccessibleDescription = null;
+ Button7.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button7, "Button7");
+ Button7.BackgroundImage = null;
+ Button7.Font = null;
+ Button7.Name = "Button7";
+ Button7.UseVisualStyleBackColor = true;
+ Button8.AccessibleDescription = null;
+ Button8.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button8, "Button8");
+ Button8.BackgroundImage = null;
+ Button8.Font = null;
+ Button8.Name = "Button8";
+ Button8.UseVisualStyleBackColor = true;
+ Button9.AccessibleDescription = null;
+ Button9.AccessibleName = null;
+ componentResourceManager.ApplyResources(Button9, "Button9");
+ Button9.BackgroundImage = null;
+ Button9.Font = null;
+ Button9.Name = "Button9";
+ Button9.UseVisualStyleBackColor = true;
+ AccessibleDescription = null;
+ AccessibleName = null;
+ componentResourceManager.ApplyResources(this, "$this");
+ AutoScaleMode = AutoScaleMode.Font;
+ BackgroundImage = null;
+ Controls.Add(Button7);
+ Controls.Add(Button8);
+ Controls.Add(Button9);
+ Controls.Add(TabControl1);
+ Font = null;
+ Name = nameof(_5ToneForm);
+ SplitContainer1.Panel1.ResumeLayout(false);
+ SplitContainer1.Panel1.PerformLayout();
+ SplitContainer1.Panel2.ResumeLayout(false);
+ SplitContainer1.Panel2.PerformLayout();
+ SplitContainer1.ResumeLayout(false);
+ NumericUpDown编码_信息码.EndInit();
+ SplitContainer2.Panel1.ResumeLayout(false);
+ SplitContainer2.Panel1.PerformLayout();
+ SplitContainer2.Panel2.ResumeLayout(false);
+ SplitContainer2.Panel2.PerformLayout();
+ SplitContainer2.ResumeLayout(false);
+ NumericUpDown解码_信息码.EndInit();
+ SplitContainer3.Panel1.ResumeLayout(false);
+ SplitContainer3.Panel1.PerformLayout();
+ SplitContainer3.Panel2.ResumeLayout(false);
+ SplitContainer3.Panel2.PerformLayout();
+ SplitContainer3.ResumeLayout(false);
+ NumericUpDown27.EndInit();
+ GroupBox3.ResumeLayout(false);
+ GroupBox3.PerformLayout();
+ GroupBox2.ResumeLayout(false);
+ GroupBox2.PerformLayout();
+ TabControl1.ResumeLayout(false);
+ TabPage1.ResumeLayout(false);
+ GroupBox1.ResumeLayout(false);
+ GroupBox1.PerformLayout();
+ NumericUpDown16.EndInit();
+ NumericUpDown13.EndInit();
+ NumericUpDown12.EndInit();
+ NumericUpDown14.EndInit();
+ NumericUpDown11.EndInit();
+ NumericUpDown5.EndInit();
+ NumericUpDown10.EndInit();
+ NumericUpDown8.EndInit();
+ NumericUpDown15.EndInit();
+ NumericUpDown6.EndInit();
+ NumericUpDown9.EndInit();
+ NumericUpDown4.EndInit();
+ NumericUpDown7.EndInit();
+ NumericUpDown2.EndInit();
+ NumericUpDown3.EndInit();
+ NumericUpDown1.EndInit();
+ ((ISupportInitialize) DataGridView1).EndInit();
+ TabPage2.ResumeLayout(false);
+ TabPage2.PerformLayout();
+ ((ISupportInitialize) DataGridView2).EndInit();
+ NumericUpDown21.EndInit();
+ NumericUpDown20.EndInit();
+ NumericUpDown19.EndInit();
+ NumericUpDown18.EndInit();
+ NumericUpDown17.EndInit();
+ TabPage3.ResumeLayout(false);
+ TabPage3.PerformLayout();
+ NumericUpDown25.EndInit();
+ TabPage4.ResumeLayout(false);
+ ResumeLayout(false);
+ }
+
+ internal virtual TabControl TabControl1
{
- _TextBox4.LostFocus -= TextBox4_LostFocus;
- _TextBox4.KeyPress -= TextBox4_KeyPress;
+ [DebuggerNonUserCode]
+ get => _TabControl1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabControl1 = value; }
}
- _TextBox4 = value;
- if (_TextBox4 == null)
- return;
- _TextBox4.LostFocus += TextBox4_LostFocus;
- _TextBox4.KeyPress += TextBox4_KeyPress;
- }
- }
- internal virtual ComboBox ComboBox10
- {
- [DebuggerNonUserCode] get => _ComboBox10;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox10 != null)
+ internal virtual TabPage TabPage1
{
- _ComboBox10.SelectionChangeCommitted -= ComboBox10_SelectionChangeCommitted;
- _ComboBox10.MouseClick -= ComboBox10_MouseClick;
+ [DebuggerNonUserCode]
+ get => _TabPage1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage1 = value; }
}
- _ComboBox10 = value;
- if (_ComboBox10 == null)
- return;
- _ComboBox10.SelectionChangeCommitted += ComboBox10_SelectionChangeCommitted;
- _ComboBox10.MouseClick += ComboBox10_MouseClick;
- }
- }
- internal virtual Label Label37
- {
- [DebuggerNonUserCode] get => _Label37;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label37 = value;
- }
- }
-
- internal virtual ComboBox ComboBox9
- {
- [DebuggerNonUserCode] get => _ComboBox9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox9 != null)
+ internal virtual TabPage TabPage2
{
- _ComboBox9.SelectionChangeCommitted -= ComboBox9_SelectionChangeCommitted;
- _ComboBox9.MouseClick -= ComboBox9_MouseClick;
+ [DebuggerNonUserCode]
+ get => _TabPage2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage2 = value; }
}
- _ComboBox9 = value;
- if (_ComboBox9 == null)
- return;
- _ComboBox9.SelectionChangeCommitted += ComboBox9_SelectionChangeCommitted;
- _ComboBox9.MouseClick += ComboBox9_MouseClick;
- }
- }
- internal virtual Label Label36
- {
- [DebuggerNonUserCode] get => _Label36;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label36 = value;
- }
- }
-
- internal virtual ComboBox ComboBox8
- {
- [DebuggerNonUserCode] get => _ComboBox8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox8 != null)
+ internal virtual DataGridView DataGridView1
{
- _ComboBox8.SelectionChangeCommitted -= ComboBox8_SelectionChangeCommitted;
- _ComboBox8.MouseClick -= ComboBox8_MouseClick;
+ [DebuggerNonUserCode]
+ get => _DataGridView1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView1 != null)
+ {
+ _DataGridView1.RowPostPaint -= DataGridView1_RowPostPaint;
+ _DataGridView1.CellMouseClick -= DataGridView1_CellMouseClick;
+ }
+
+ _DataGridView1 = value;
+ if (_DataGridView1 == null)
+ return;
+ _DataGridView1.RowPostPaint += DataGridView1_RowPostPaint;
+ _DataGridView1.CellMouseClick += DataGridView1_CellMouseClick;
+ }
}
- _ComboBox8 = value;
- if (_ComboBox8 == null)
- return;
- _ComboBox8.SelectionChangeCommitted += ComboBox8_SelectionChangeCommitted;
- _ComboBox8.MouseClick += ComboBox8_MouseClick;
- }
- }
- internal virtual Label Label31
- {
- [DebuggerNonUserCode] get => _Label31;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label31 = value;
- }
- }
-
- internal virtual SplitContainer SplitContainer3
- {
- [DebuggerNonUserCode] get => _SplitContainer3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _SplitContainer3 = value;
- }
- }
-
- internal virtual NumericUpDown NumericUpDown27
- {
- [DebuggerNonUserCode] get => _NumericUpDown27;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_NumericUpDown27 != null)
- _NumericUpDown27.ValueChanged -= NumericUpDown27_ValueChanged;
- _NumericUpDown27 = value;
- if (_NumericUpDown27 == null)
- return;
- _NumericUpDown27.ValueChanged += NumericUpDown27_ValueChanged;
- }
- }
-
- internal virtual Label Label38
- {
- [DebuggerNonUserCode] get => _Label38;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label38 = value;
- }
- }
-
- internal virtual Button Button5
- {
- [DebuggerNonUserCode] get => _Button5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button5 != null)
- _Button5.Click -= Button5_Click;
- _Button5 = value;
- if (_Button5 == null)
- return;
- _Button5.Click += Button5_Click;
- }
- }
-
- internal virtual Button Button6
- {
- [DebuggerNonUserCode] get => _Button6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button6 != null)
- _Button6.Click -= Button6_Click;
- _Button6 = value;
- if (_Button6 == null)
- return;
- _Button6.Click += Button6_Click;
- }
- }
-
- internal virtual ComboBox ComboBox11
- {
- [DebuggerNonUserCode] get => _ComboBox11;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox11 != null)
+ internal virtual GroupBox GroupBox1
{
- _ComboBox11.SelectionChangeCommitted -= ComboBox11_SelectionChangeCommitted;
- _ComboBox11.MouseClick -= ComboBox11_MouseClick;
+ [DebuggerNonUserCode]
+ get => _GroupBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox1 = value; }
}
- _ComboBox11 = value;
- if (_ComboBox11 == null)
- return;
- _ComboBox11.SelectionChangeCommitted += ComboBox11_SelectionChangeCommitted;
- _ComboBox11.MouseClick += ComboBox11_MouseClick;
- }
- }
- internal virtual ComboBox ComboBox12
- {
- [DebuggerNonUserCode] get => _ComboBox12;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox12 != null)
+ internal virtual NumericUpDown NumericUpDown1
{
- _ComboBox12.SelectionChangeCommitted -= ComboBox12_SelectionChangeCommitted;
- _ComboBox12.MouseClick -= ComboBox12_MouseClick;
+ [DebuggerNonUserCode]
+ get => _NumericUpDown1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown1 != null)
+ _NumericUpDown1.ValueChanged -= NumericUpDown1_ValueChanged;
+ _NumericUpDown1 = value;
+ if (_NumericUpDown1 == null)
+ return;
+ _NumericUpDown1.ValueChanged += NumericUpDown1_ValueChanged;
+ }
}
- _ComboBox12 = value;
- if (_ComboBox12 == null)
- return;
- _ComboBox12.SelectionChangeCommitted += ComboBox12_SelectionChangeCommitted;
- _ComboBox12.MouseClick += ComboBox12_MouseClick;
- }
- }
- internal virtual ComboBox ComboBox13
- {
- [DebuggerNonUserCode] get => _ComboBox13;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox13 != null)
- _ComboBox13.SelectionChangeCommitted -= ComboBox13_SelectionChangeCommitted;
- _ComboBox13 = value;
- if (_ComboBox13 == null)
- return;
- _ComboBox13.SelectionChangeCommitted += ComboBox13_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox15
- {
- [DebuggerNonUserCode] get => _ComboBox15;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox15 != null)
- _ComboBox15.SelectionChangeCommitted -= ComboBox15_SelectionChangeCommitted;
- _ComboBox15 = value;
- if (_ComboBox15 == null)
- return;
- _ComboBox15.SelectionChangeCommitted += ComboBox15_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label40
- {
- [DebuggerNonUserCode] get => _Label40;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label40 = value;
- }
- }
-
- internal virtual ComboBox ComboBox16
- {
- [DebuggerNonUserCode] get => _ComboBox16;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox16 != null)
- _ComboBox16.SelectionChangeCommitted -= ComboBox16_SelectionChangeCommitted;
- _ComboBox16 = value;
- if (_ComboBox16 == null)
- return;
- _ComboBox16.SelectionChangeCommitted += ComboBox16_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label41
- {
- [DebuggerNonUserCode] get => _Label41;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label41 = value;
- }
- }
-
- internal virtual ComboBox ComboBox17
- {
- [DebuggerNonUserCode] get => _ComboBox17;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox17 != null)
- _ComboBox17.SelectionChangeCommitted -= ComboBox17_SelectionChangeCommitted;
- _ComboBox17 = value;
- if (_ComboBox17 == null)
- return;
- _ComboBox17.SelectionChangeCommitted += ComboBox17_SelectionChangeCommitted;
- }
- }
-
- internal virtual Label Label42
- {
- [DebuggerNonUserCode] get => _Label42;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label42 = value;
- }
- }
-
- internal virtual Label Label43
- {
- [DebuggerNonUserCode] get => _Label43;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label43 = value;
- }
- }
-
- internal virtual Label Label44
- {
- [DebuggerNonUserCode] get => _Label44;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label44 = value;
- }
- }
-
- internal virtual Label Label45
- {
- [DebuggerNonUserCode] get => _Label45;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Label45 = value;
- }
- }
-
- internal virtual GroupBox GroupBox3
- {
- [DebuggerNonUserCode] get => _GroupBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox3 = value;
- }
- }
-
- internal virtual CheckBox CheckBox2
- {
- [DebuggerNonUserCode] get => _CheckBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox2 != null)
- _CheckBox2.LostFocus -= CheckBox2_LostFocus;
- _CheckBox2 = value;
- if (_CheckBox2 == null)
- return;
- _CheckBox2.LostFocus += CheckBox2_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox1
- {
- [DebuggerNonUserCode] get => _CheckBox1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox1 != null)
- _CheckBox1.LostFocus -= CheckBox1_LostFocus;
- _CheckBox1 = value;
- if (_CheckBox1 == null)
- return;
- _CheckBox1.LostFocus += CheckBox1_LostFocus;
- }
- }
-
- internal virtual GroupBox GroupBox2
- {
- [DebuggerNonUserCode] get => _GroupBox2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _GroupBox2 = value;
- }
- }
-
- internal virtual CheckBox CheckBox8
- {
- [DebuggerNonUserCode] get => _CheckBox8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox8 != null)
- _CheckBox8.LostFocus -= CheckBox8_LostFocus;
- _CheckBox8 = value;
- if (_CheckBox8 == null)
- return;
- _CheckBox8.LostFocus += CheckBox8_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox4
- {
- [DebuggerNonUserCode] get => _CheckBox4;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox4 != null)
- _CheckBox4.LostFocus -= CheckBox4_LostFocus;
- _CheckBox4 = value;
- if (_CheckBox4 == null)
- return;
- _CheckBox4.LostFocus += CheckBox4_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox7
- {
- [DebuggerNonUserCode] get => _CheckBox7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox7 != null)
- _CheckBox7.LostFocus -= CheckBox7_LostFocus;
- _CheckBox7 = value;
- if (_CheckBox7 == null)
- return;
- _CheckBox7.LostFocus += CheckBox7_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox3
- {
- [DebuggerNonUserCode] get => _CheckBox3;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox3 != null)
- _CheckBox3.LostFocus -= CheckBox3_LostFocus;
- _CheckBox3 = value;
- if (_CheckBox3 == null)
- return;
- _CheckBox3.LostFocus += CheckBox3_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox6
- {
- [DebuggerNonUserCode] get => _CheckBox6;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox6 != null)
- _CheckBox6.LostFocus -= CheckBox6_LostFocus;
- _CheckBox6 = value;
- if (_CheckBox6 == null)
- return;
- _CheckBox6.LostFocus += CheckBox6_LostFocus;
- }
- }
-
- internal virtual CheckBox CheckBox5
- {
- [DebuggerNonUserCode] get => _CheckBox5;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_CheckBox5 != null)
- _CheckBox5.LostFocus -= CheckBox5_LostFocus;
- _CheckBox5 = value;
- if (_CheckBox5 == null)
- return;
- _CheckBox5.LostFocus += CheckBox5_LostFocus;
- }
- }
-
- internal virtual Button Button7
- {
- [DebuggerNonUserCode] get => _Button7;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button7 = value;
- }
- }
-
- internal virtual Button Button8
- {
- [DebuggerNonUserCode] get => _Button8;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Button8 = value;
- }
- }
-
- internal virtual Button Button9
- {
- [DebuggerNonUserCode] get => _Button9;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_Button9 != null)
- _Button9.Click -= Button9_Click;
- _Button9 = value;
- if (_Button9 == null)
- return;
- _Button9.Click += Button9_Click;
- }
- }
-
- internal virtual ComboBox ComboBox14
- {
- [DebuggerNonUserCode] get => _ComboBox14;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox14 != null)
- _ComboBox14.SelectionChangeCommitted -= ComboBox14_SelectionChangeCommitted;
- _ComboBox14 = value;
- if (_ComboBox14 == null)
- return;
- _ComboBox14.SelectionChangeCommitted += ComboBox14_SelectionChangeCommitted;
- }
- }
-
- internal virtual ComboBox ComboBox18
- {
- [DebuggerNonUserCode] get => _ComboBox18;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- if (_ComboBox18 != null)
- _ComboBox18.SelectionChangeCommitted -= ComboBox18_SelectionChangeCommitted;
- _ComboBox18 = value;
- if (_ComboBox18 == null)
- return;
- _ComboBox18.SelectionChangeCommitted += ComboBox18_SelectionChangeCommitted;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column0
- {
- [DebuggerNonUserCode] get => _Column0;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column0 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column1
- {
- [DebuggerNonUserCode] get => _Column1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column1 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn Column2
- {
- [DebuggerNonUserCode] get => _Column2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _Column2 = value;
- }
- }
-
- internal virtual DataGridViewComboBoxColumn DataGridViewComboBoxColumn1
- {
- [DebuggerNonUserCode] get => _DataGridViewComboBoxColumn1;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _DataGridViewComboBoxColumn1 = value;
- }
- }
-
- internal virtual DataGridViewTextBoxColumn DataGridViewComboBoxColumn2
- {
- [DebuggerNonUserCode] get => _DataGridViewComboBoxColumn2;
- [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)] set
- {
- _DataGridViewComboBoxColumn2 = value;
- }
- }
-
- public void _5ToneForm_Deactivate(object sender, EventArgs e)
- {
- DataGridView1.EndEdit();
- DataGridView2.EndEdit();
- var num1 = 1856;
- var rowIndex1 = 0;
- do
- {
- publicva.EEPROM_Byte[checked (num1 + 0 + rowIndex1 * 4)] = checked ((byte) (Column0.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column0", rowIndex1].Value)) + 30));
- publicva.EEPROM_Byte[checked (num1 + 1 + rowIndex1 * 4)] = checked ((byte) Column1.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column1", rowIndex1].Value)));
- publicva.EEPROM_Byte[checked (num1 + 2 + rowIndex1 * 4)] = checked ((byte) Column2.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column2", rowIndex1].Value)));
- checked { ++rowIndex1; }
- }
- while (rowIndex1 <= 15);
- var num2 = 1920;
- publicva.EEPROM_Byte[checked (num2 + 0)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown17.Value) / 10L));
- publicva.EEPROM_Byte[checked (num2 + 1)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown18.Value) / 10L));
- publicva.EEPROM_Byte[checked (num2 + 2)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown19.Value) / 10L));
- publicva.EEPROM_Byte[checked (num2 + 3)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown20.Value) / 10L));
- publicva.EEPROM_Byte[checked (num2 + 4)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown21.Value) / 10L));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox5_Tone侧音, checked (num2 + 5), publicva.Bit0, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox1, checked (num2 + 6), publicva.AllBit, 0);
- var num3 = 1928;
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox3, checked (num3 + 0), publicva.AllBit, 0);
- publicva.EEPROM_Byte[checked (num3 + 4)] = checked ((byte) unchecked (Convert.ToInt64(NumericUpDown25.Value) / 10L));
- var num4 = 2048;
- var num5 = 2560;
- var rowIndex2 = 0;
- do
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn1", rowIndex2].Value, "", false))
+ internal virtual Label Label1
{
- publicva.EEPROM_Byte[checked (num5 + 0 + rowIndex2 * 16)] = 0;
- Get5Tone_Code(checked (num5 + 1 + rowIndex2 * 16), "");
- publicva.EEPROM_Byte[checked (num5 + 9 + rowIndex2 * 16)] = 0;
+ [DebuggerNonUserCode]
+ get => _Label1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label1 = value;
}
- else
+
+ internal virtual NumericUpDown NumericUpDown16
{
- publicva.EEPROM_Byte[checked (num5 + 0 + rowIndex2 * 16)] = checked ((byte) DataGridViewComboBoxColumn1.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView2["DataGridViewComboBoxColumn1", rowIndex2].Value)));
- Get5Tone_Code(checked (num5 + 1 + rowIndex2 * 16), Conversions.ToString(DataGridView2["DataGridViewComboBoxColumn2", rowIndex2].Value));
- publicva.EEPROM_Byte[checked (num5 + 9 + rowIndex2 * 16)] = checked ((byte) DataGridView2["DataGridViewComboBoxColumn2", rowIndex2].Value.ToString().Length);
+ [DebuggerNonUserCode]
+ get => _NumericUpDown16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown16 != null)
+ _NumericUpDown16.ValueChanged -= NumericUpDown16_ValueChanged;
+ _NumericUpDown16 = value;
+ if (_NumericUpDown16 == null)
+ return;
+ _NumericUpDown16.ValueChanged += NumericUpDown16_ValueChanged;
+ }
}
- checked { ++rowIndex2; }
- }
- while (rowIndex2 <= 31);
- num4 = 3072;
- num4 = 3584;
- }
- private void _5ToneForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- publicva._5ToneLoader = false;
- MyProject.Forms.MDIParent1.五音FToolStripMenuItem.Checked = false;
- }
-
- public void _5ToneForm_Load(object sender, EventArgs e)
- {
- MyProject.Forms.MDIParent1.五音FToolStripMenuItem.Checked = true;
- DataGridView1.RowCount = 16;
- DataGridView2.RowCount = 32;
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- {
- DataGridView1.TopLeftHeaderCell.Value = "标准";
- DataGridView2.TopLeftHeaderCell.Value = "帧";
- }
- else
- {
- DataGridView1.TopLeftHeaderCell.Value = "Standard";
- DataGridView2.TopLeftHeaderCell.Value = "Frame";
- }
- SetContorl_NumericUpDown_Enable(false);
- SetContorl_NumericUpDown_5ToneFreq(0);
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
- var num1 = 1856;
- var rowIndex = 0;
- do
- {
- DataGridView1["Column0", rowIndex].Value = publicva.EEPROM_Byte[checked (num1 + 0 + rowIndex * 4)] <= 30 ? RuntimeHelpers.GetObjectValue(Column0.Items[0]) : RuntimeHelpers.GetObjectValue(Column0.Items[checked (publicva.EEPROM_Byte[num1 + 0 + rowIndex * 4] - 30)]);
- DataGridView1["Column1", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column1.Items[publicva.EEPROM_Byte[checked (num1 + 1 + rowIndex * 4)]]);
- DataGridView1["Column2", rowIndex].Value = RuntimeHelpers.GetObjectValue(Column2.Items[publicva.EEPROM_Byte[checked (num1 + 2 + rowIndex * 4)]]);
- checked { ++rowIndex; }
- }
- while (rowIndex <= 15);
- var num2 = 1920;
- NumericUpDown17.Value = new Decimal(checked (publicva.EEPROM_Byte[num2 + 0] * 10));
- NumericUpDown18.Value = new Decimal(checked (publicva.EEPROM_Byte[num2 + 1] * 10));
- NumericUpDown19.Value = new Decimal(checked (publicva.EEPROM_Byte[num2 + 2] * 10));
- NumericUpDown20.Value = new Decimal(checked (publicva.EEPROM_Byte[num2 + 3] * 10));
- NumericUpDown21.Value = new Decimal(checked (publicva.EEPROM_Byte[num2 + 4] * 10));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox5_Tone侧音, checked (num2 + 5), publicva.Bit0, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox1, checked (num2 + 6), (byte) (publicva.Bit0 | publicva.Bit1 | publicva.Bit2 | publicva.Bit3), 0);
- var num3 = 1928;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox3, checked (num3 + 0), publicva.AllBit, 0);
- NumericUpDown25.Value = new Decimal(checked (publicva.EEPROM_Byte[num3 + 4] * 10));
- var num4 = 2560;
- var index1 = 0;
- do
- {
- if (publicva.EEPROM_Byte[checked (num4 + 9 + index1 * 16)] == 0)
+ internal virtual Label Label16
{
- Clr_5ToneEncodeList(index1);
- publicva._5ToneEncodeListFlag[index1] = 0;
+ [DebuggerNonUserCode]
+ get => _Label16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label16 = value; }
}
- else
+
+ internal virtual NumericUpDown NumericUpDown14
{
- publicva._5ToneEncodeListFlag[index1] = 1;
- DataGridView2["DataGridViewComboBoxColumn1", index1].Value = RuntimeHelpers.GetObjectValue(DataGridViewComboBoxColumn1.Items[publicva.EEPROM_Byte[checked (num4 + 0 + index1 * 16)]]);
- DataGridView2["DataGridViewComboBoxColumn2", index1].Value = RuntimeHelpers.GetObjectValue(Get5Tone_Text(checked (num4 + 1 + index1 * 16), publicva.EEPROM_Byte[checked (num4 + 9 + index1 * 16)]));
+ [DebuggerNonUserCode]
+ get => _NumericUpDown14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown14 != null)
+ _NumericUpDown14.ValueChanged -= NumericUpDown14_ValueChanged;
+ _NumericUpDown14 = value;
+ if (_NumericUpDown14 == null)
+ return;
+ _NumericUpDown14.ValueChanged += NumericUpDown14_ValueChanged;
+ }
}
- checked { ++index1; }
- }
- while (index1 <= 31);
- SetControl_EncodeListItems(ComboBox14);
- SetControl_EncodeListItems(ComboBox18);
- SetContorl_Items_5ToneDecode();
- var num5 = 2048;
- publicva._5ToneLoaderEncodeMsg = true;
- SetContorl_5ToneEncodeMsg(0);
- var num6 = 3072;
- SetContorl_Items_5ToneDecode();
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
- SetContorl_5ToneDecodeMsg(0);
- var index2 = 0;
- do
- {
- publicva._5ToneDecodeListFlag[index2] = publicva.EEPROM_Byte[checked (num6 + 16 + index2 * 32)] != 0 ? (byte) 1 : (byte) 0;
- checked { ++index2; }
- }
- while (index2 <= 15);
- num5 = 3584;
- SetControl_DecodeListItems(ComboBox13);
- SetControl_DecodeListItems(ComboBox17);
- SetControl_DecodeListItems(ComboBox16);
- SetControl_DecodeListItems(ComboBox15);
- SetComboBoxControl_Items_5Tone_EncodeList(ComboBox11, 2048, 32, 32, 16, 0);
- SetComboBoxControl_Items_5Tone_EncodeList(ComboBox12, 2048, 32, 32, 16, 0);
- SetContorl_5ToneParameterMsg(0);
- publicva._5ToneLoader = true;
- publicva._5ToneEncodeListEditFlag = false;
- }
- private void DataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- var rowIndex = DataGridView1.CurrentCell.RowIndex;
- var strArray = new string[16]
- {
- "ZVEI1",
- "ZVEI2",
- "ZVEI3",
- "PZVEI",
- "DZVEI",
- "PDZVEI",
- "CCIR1",
- "CCIR2",
- "PCCIR",
- "EEA",
- "EUIRO SIGNAL",
- "NATEL",
- "EIA",
- "MODAT",
- "CCITT",
- "USER DIFINED"
- };
- if (rowIndex > 14)
- {
- SetContorl_NumericUpDown_Enable(false);
- SetContorl_NumericUpDown_Rang(300, 3000);
- SetContorl_NumericUpDown_5ToneFreq_User();
- }
- else
- {
- SetContorl_NumericUpDown_Enable(false);
- SetContorl_NumericUpDown_Rang(0, 3000);
- SetContorl_NumericUpDown_5ToneFreq(rowIndex);
- }
- GroupBox1.Text = strArray[rowIndex];
- }
-
- private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var strArray = new string[16]
- {
- "ZVEI1",
- "ZVEI2",
- "ZVEI3",
- "PZVEI",
- "DZVEI",
- "PDZVEI",
- "CCIR1",
- "CCIR2",
- "PCCIR",
- "EEA",
- "EUIRO SIGNAL",
- "NATEL",
- "EIA",
- "MODAT",
- "CCITT",
- "USER DIFINED"
- };
- var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
- e.Graphics.DrawString(strArray[e.RowIndex].ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + (float) ((DataGridView1.RowHeadersWidth - strArray[e.RowIndex].Length * 6.5) / 2.0), checked (e.RowBounds.Location.Y + 5));
- }
-
- private void DataGridView2_EditingControlShowing(
- object sender,
- DataGridViewEditingControlShowingEventArgs e)
- {
- if (DataGridView2.CurrentCell.ColumnIndex != DataGridView2["DataGridViewComboBoxColumn2", 0].ColumnIndex)
- return;
- var boxEditingControl = new DataGridViewTextBoxEditingControl();
- boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
- var control = (DataGridViewTextBoxEditingControl) e.Control;
- control.ImeMode = ImeMode.Disable;
- control.KeyPress += Cells_KeyPress;
- }
-
- private void Cells_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), nameof (e), false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
- {
- if (char.IsLower(e.KeyChar))
- e.KeyChar = char.ToUpper(e.KeyChar);
- e.Handled = false;
- }
- else
- e.Handled = true;
- }
-
- private void DataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView2.CurrentCell.RowIndex;
- var columnIndex = DataGridView2.CurrentCell.ColumnIndex;
- if (columnIndex == DataGridView2["DataGridViewComboBoxColumn1", rowIndex].ColumnIndex)
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn1", rowIndex].Value, "", false))
+ internal virtual Label Label14
{
- Clr_5ToneEncodeList(rowIndex);
- publicva._5ToneEncodeListFlag[rowIndex] = 0;
+ [DebuggerNonUserCode]
+ get => _Label14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label14 = value; }
}
- else if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value, "", false))
+
+ internal virtual NumericUpDown NumericUpDown12
{
- Init_5ToneEncodeList(rowIndex);
- publicva._5ToneEncodeListEditFlag = true;
- publicva._5ToneEncodeListEditRow = rowIndex;
- publicva._5ToneEncodeListFlag[rowIndex] = 1;
+ [DebuggerNonUserCode]
+ get => _NumericUpDown12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown12 != null)
+ _NumericUpDown12.ValueChanged -= NumericUpDown12_ValueChanged;
+ _NumericUpDown12 = value;
+ if (_NumericUpDown12 == null)
+ return;
+ _NumericUpDown12.ValueChanged += NumericUpDown12_ValueChanged;
+ }
}
- }
- else if (columnIndex == DataGridView2["DataGridViewComboBoxColumn2", rowIndex].ColumnIndex)
- {
- if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value, "", false))
+
+ internal virtual Label Label12
{
- Clr_5ToneEncodeList(rowIndex);
- publicva._5ToneEncodeListFlag[rowIndex] = 0;
+ [DebuggerNonUserCode]
+ get => _Label12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label12 = value; }
}
- else if (DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value.ToString().Length < 5)
+
+ internal virtual NumericUpDown NumericUpDown10
{
- DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value = "";
- Clr_5ToneEncodeList(rowIndex);
- publicva._5ToneEncodeListFlag[rowIndex] = 0;
- publicva._5ToneEncodeListEditFlag = false;
- MyProject.Forms.ChannelMsg.Msgbox_Msg("请输入5位以上数字!", "Please enter the above five Numbers!");
+ [DebuggerNonUserCode]
+ get => _NumericUpDown10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown10 != null)
+ _NumericUpDown10.ValueChanged -= NumericUpDown10_ValueChanged;
+ _NumericUpDown10 = value;
+ if (_NumericUpDown10 == null)
+ return;
+ _NumericUpDown10.ValueChanged += NumericUpDown10_ValueChanged;
+ }
}
- }
- SetControl_EncodeListItems(ComboBox14);
- SetControl_EncodeListItems(ComboBox18);
- SetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- SetControl_DecodeListItems(ComboBox13);
- SetControl_DecodeListItems(ComboBox17);
- SetControl_DecodeListItems(ComboBox16);
- SetControl_DecodeListItems(ComboBox15);
- SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- SetContorl_Items_5ToneDecode();
- }
- private void DataGridView2_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- var rowIndex = DataGridView2.CurrentCell.RowIndex;
- if (!Operators.ConditionalCompareObjectEqual("", DataGridView2["DataGridViewComboBoxColumn1", rowIndex].Value, false))
- return;
- if (publicva._5ToneEncodeListEditFlag)
- {
- publicva._5ToneEncodeListEditFlag = false;
- DataGridView2.CurrentCell = DataGridView2.Rows[publicva._5ToneEncodeListEditRow].Cells[1];
- }
- else
- DataGridView2.CurrentCell = DataGridView2.Rows[rowIndex].Cells[0];
- DataGridView2.BeginEdit(true);
- }
-
- private void DataGridView2_MouseClick(object sender, MouseEventArgs e)
- {
- }
-
- private void DataGridView2_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
- {
- var brush = (Brush) new SolidBrush(DataGridView2.RowHeadersDefaultCellStyle.ForeColor);
- e.Graphics.DrawString(checked (e.RowIndex + 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X + checked (DataGridView2.RowHeadersWidth - (e.RowIndex + 1).ToString().Length * 8) / 2f, checked (e.RowBounds.Location.Y + 5));
- }
-
- public void SetContorl_NumericUpDown_5ToneFreq_User()
- {
- var num = 1824;
- NumericUpDown1.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 0)), 10));
- NumericUpDown2.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 2)), 10));
- NumericUpDown3.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 4)), 10));
- NumericUpDown4.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 6)), 10));
- NumericUpDown5.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 8)), 10));
- NumericUpDown6.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 10)), 10));
- NumericUpDown7.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 12)), 10));
- NumericUpDown8.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 14)), 10));
- NumericUpDown9.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 16)), 10));
- NumericUpDown10.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 18)), 10));
- NumericUpDown11.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 20)), 10));
- NumericUpDown12.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 22)), 10));
- NumericUpDown13.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 24)), 10));
- NumericUpDown14.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 26)), 10));
- NumericUpDown15.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 28)), 10));
- NumericUpDown16.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked (num + 30)), 10));
- }
-
- public void SetContorl_NumericUpDown_5ToneFreq(int i)
- {
- NumericUpDown1.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 0] / 10.0);
- NumericUpDown2.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 1] / 10.0);
- NumericUpDown3.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 2] / 10.0);
- NumericUpDown4.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 3] / 10.0);
- NumericUpDown5.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 4] / 10.0);
- NumericUpDown6.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 5] / 10.0);
- NumericUpDown7.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 6] / 10.0);
- NumericUpDown8.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 7] / 10.0);
- NumericUpDown9.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 8] / 10.0);
- NumericUpDown10.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 9] / 10.0);
- NumericUpDown11.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 10] / 10.0);
- NumericUpDown12.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 11] / 10.0);
- NumericUpDown13.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 12] / 10.0);
- NumericUpDown14.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 13] / 10.0);
- NumericUpDown15.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 14] / 10.0);
- NumericUpDown16.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 15] / 10.0);
- }
-
- public void SetContorl_NumericUpDown_Rang(int Min, int Max)
- {
- NumericUpDown1.Minimum = new Decimal(Min);
- NumericUpDown2.Minimum = new Decimal(Min);
- NumericUpDown3.Minimum = new Decimal(Min);
- NumericUpDown4.Minimum = new Decimal(Min);
- NumericUpDown5.Minimum = new Decimal(Min);
- NumericUpDown6.Minimum = new Decimal(Min);
- NumericUpDown7.Minimum = new Decimal(Min);
- NumericUpDown8.Minimum = new Decimal(Min);
- NumericUpDown9.Minimum = new Decimal(Min);
- NumericUpDown10.Minimum = new Decimal(Min);
- NumericUpDown11.Minimum = new Decimal(Min);
- NumericUpDown12.Minimum = new Decimal(Min);
- NumericUpDown13.Minimum = new Decimal(Min);
- NumericUpDown14.Minimum = new Decimal(Min);
- NumericUpDown15.Minimum = new Decimal(Min);
- NumericUpDown16.Minimum = new Decimal(Min);
- NumericUpDown1.Maximum = new Decimal(Max);
- NumericUpDown2.Maximum = new Decimal(Max);
- NumericUpDown3.Maximum = new Decimal(Max);
- NumericUpDown4.Maximum = new Decimal(Max);
- NumericUpDown5.Maximum = new Decimal(Max);
- NumericUpDown6.Maximum = new Decimal(Max);
- NumericUpDown7.Maximum = new Decimal(Max);
- NumericUpDown8.Maximum = new Decimal(Max);
- NumericUpDown9.Maximum = new Decimal(Max);
- NumericUpDown10.Maximum = new Decimal(Max);
- NumericUpDown11.Maximum = new Decimal(Max);
- NumericUpDown12.Maximum = new Decimal(Max);
- NumericUpDown13.Maximum = new Decimal(Max);
- NumericUpDown14.Maximum = new Decimal(Max);
- NumericUpDown15.Maximum = new Decimal(Max);
- NumericUpDown16.Maximum = new Decimal(Max);
- }
-
- public void SetContorl_NumericUpDown_Enable(bool i)
- {
- NumericUpDown1.Enabled = i;
- NumericUpDown2.Enabled = i;
- NumericUpDown3.Enabled = i;
- NumericUpDown4.Enabled = i;
- NumericUpDown5.Enabled = i;
- NumericUpDown6.Enabled = i;
- NumericUpDown7.Enabled = i;
- NumericUpDown8.Enabled = i;
- NumericUpDown9.Enabled = i;
- NumericUpDown10.Enabled = i;
- NumericUpDown11.Enabled = i;
- NumericUpDown12.Enabled = i;
- NumericUpDown13.Enabled = i;
- NumericUpDown14.Enabled = i;
- NumericUpDown15.Enabled = i;
- NumericUpDown16.Enabled = i;
- }
-
- public void SetContorl_5ToneEncodeMsg(int i)
- {
- var num = 2048;
- if (ComboBox14.FindStringExact(publicva.EEPROM_Byte[checked (num + 0 + i * 16)].ToString()) != -1)
- {
- ComboBox14.Text = Conversions.ToString(publicva.EEPROM_Byte[checked (num + 0 + i * 16)]);
- CheckBox第一个音扩展.Enabled = true;
- ComboBox18.Enabled = true;
- CheckBox第二个音扩展.Enabled = true;
- }
- else
- {
- ComboBox14.SelectedIndex = 0;
- CheckBox第一个音扩展.Enabled = false;
- ComboBox18.Enabled = false;
- CheckBox第二个音扩展.Enabled = false;
- publicva.EEPROM_Byte[checked (num + 1 + i * 16)] = 0;
- publicva.EEPROM_Byte[checked (num + 2 + i * 16)] = 0;
- publicva.EEPROM_Byte[checked (num + 3 + i * 16)] = 0;
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox第一个音扩展, checked (num + 1 + i * 16), publicva.Bit0, 0);
- if (ComboBox18.FindStringExact(publicva.EEPROM_Byte[checked (num + 2 + i * 16)].ToString()) != -1)
- {
- ComboBox18.Text = Conversions.ToString(publicva.EEPROM_Byte[checked (num + 2 + i * 16)]);
- CheckBox第二个音扩展.Enabled = true;
- }
- else
- {
- ComboBox18.SelectedIndex = 0;
- CheckBox第二个音扩展.Enabled = false;
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox第二个音扩展, checked (num + 3 + i * 16), publicva.Bit0, 0);
- if (publicva.EEPROM_Byte[checked (num + 4 + i * 16)] > 8)
- publicva.EEPROM_Byte[checked (num + 4 + i * 16)] = 0;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox2, checked (num + 4 + i * 16), publicva.AllBit, 0);
- TextBox1.Text = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked (num + 6 + i * 16), 10));
- publicva._5ToneLoaderEncodeMsg = false;
- }
-
- public void GetContorl_5ToneEncodeMsg(int i)
- {
- var num = 2048;
- if (ComboBox14.SelectedIndex == 0)
- {
- publicva.EEPROM_Byte[checked (num + 0 + i * 16)] = 0;
- CheckBox第一个音扩展.Enabled = false;
- ComboBox18.Enabled = false;
- CheckBox第二个音扩展.Enabled = false;
- CheckBox第一个音扩展.Checked = false;
- ComboBox18.SelectedIndex = 0;
- CheckBox第二个音扩展.Checked = false;
- }
- else
- {
- publicva.EEPROM_Byte[checked (num + 0 + i * 16)] = Conversions.ToByte(ComboBox14.Text);
- CheckBox第一个音扩展.Enabled = true;
- ComboBox18.Enabled = true;
- CheckBox第二个音扩展.Enabled = true;
- }
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox第一个音扩展, checked (num + 1 + i * 16), publicva.Bit0, 0);
- if (ComboBox18.SelectedIndex == 0)
- {
- publicva.EEPROM_Byte[checked (num + 2 + i * 16)] = 0;
- CheckBox第二个音扩展.Enabled = false;
- }
- else
- {
- publicva.EEPROM_Byte[checked (num + 2 + i * 16)] = Conversions.ToByte(ComboBox18.Text);
- CheckBox第二个音扩展.Enabled = true;
- }
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox第二个音扩展, checked (num + 3 + i * 16), publicva.Bit0, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox2, checked (num + 4 + i * 16), publicva.AllBit, 0);
- Encoding.ASCII.GetBytes(TextBox1.Text.PadRight(10), 0, 10, publicva.EEPROM_Byte, checked (num + 6 + i * 16));
- }
-
- private void NumericUpDown编码_信息码_ValueChanged(object sender, EventArgs e)
- {
- try
- {
- if (!publicva._5ToneLoader)
- return;
- publicva._5ToneLoaderEncodeMsg = true;
- SetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- }
-
- private void Button1_Click(object sender, EventArgs e) => NumericUpDown编码_信息码.UpButton();
-
- private void Button2_Click(object sender, EventArgs e) => NumericUpDown编码_信息码.DownButton();
-
- public void Clr_5ToneEncodeList(int i)
- {
- DataGridView2["DataGridViewComboBoxColumn1", i].Value = "";
- DataGridView2["DataGridViewComboBoxColumn2", i].Value = "";
- }
-
- public void Init_5ToneEncodeList(int i)
- {
- DataGridView2["DataGridViewComboBoxColumn2", i].Value = "";
- }
-
- public object Get5Tone_Text(int address, int Sum)
- {
- var str1 = "";
- if (Sum > 8)
- return "";
- var num = 0;
- do
- {
- var str2 = BitConverter.ToString(publicva.EEPROM_Byte, checked (num + address), 1);
- str1 += str2.Substring(1, 1);
- checked { ++num; }
- }
- while (num <= 7);
- return Strings.RTrim(str1.Substring(0, Sum));
- }
-
- public void Get5Tone_Code(int address, string text)
- {
- text = text.PadRight(8, '0');
- var startIndex = 0;
- do
- {
- var str = text.Substring(startIndex, 1);
- publicva.EEPROM_Byte[checked (address + startIndex)] = Conversions.ToByte("&h" + str);
- checked { ++startIndex; }
- }
- while (startIndex <= 7);
- }
-
- private void NumericUpDown1_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1824;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1.Value, 10M)), address);
- }
-
- private void NumericUpDown2_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1826;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2.Value, 10M)), address);
- }
-
- private void NumericUpDown3_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1828;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3.Value, 10M)), address);
- }
-
- private void NumericUpDown4_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1830;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4.Value, 10M)), address);
- }
-
- private void NumericUpDown5_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1832;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5.Value, 10M)), address);
- }
-
- private void NumericUpDown6_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1834;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6.Value, 10M)), address);
- }
-
- private void NumericUpDown7_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1836;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7.Value, 10M)), address);
- }
-
- private void NumericUpDown8_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1838;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8.Value, 10M)), address);
- }
-
- private void NumericUpDown9_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1840;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown9.Value, 10M)), address);
- }
-
- private void NumericUpDown10_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1842;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown10.Value, 10M)), address);
- }
-
- private void NumericUpDown11_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1844;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown11.Value, 10M)), address);
- }
-
- private void NumericUpDown12_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1846;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown12.Value, 10M)), address);
- }
-
- private void NumericUpDown13_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1848;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown13.Value, 10M)), address);
- }
-
- private void NumericUpDown14_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1850;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown14.Value, 10M)), address);
- }
-
- private void NumericUpDown15_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1852;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown15.Value, 10M)), address);
- }
-
- private void NumericUpDown16_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
- return;
- var address = 1854;
- MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown16.Value, 10M)), address);
- }
-
- public void SetControl_EncodeListItems(Control object_x)
- {
- if (!(object_x is ComboBox))
- return;
- ((ComboBox) object_x).Items.Clear();
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- ((ComboBox) object_x).Items.Add("无");
- else
- ((ComboBox) object_x).Items.Add("None");
- var index = 0;
- do
- {
- if (publicva._5ToneEncodeListFlag[index] > 0)
- ((ComboBox) object_x).Items.Add(checked (index + 1));
- checked { ++index; }
- }
- while (index <= 31);
- }
-
- public void SetControl_DecodeListItems(Control object_x)
- {
- if (!(object_x is ComboBox))
- return;
- ((ComboBox) object_x).Items.Clear();
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- ((ComboBox) object_x).Items.Add("无");
- else
- ((ComboBox) object_x).Items.Add("None");
- var index = 0;
- do
- {
- if (publicva._5ToneDecodeListFlag[index] > 0)
- ((ComboBox) object_x).Items.Add(checked (index + 1));
- checked { ++index; }
- }
- while (index <= 15);
- }
-
- private void ComboBox14_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- SetContorl_Items_5ToneDecode();
- }
-
- private void ComboBox18_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- }
-
- private void ComboBox2_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- }
-
- private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsLetterOrDigit(e.KeyChar) | e.KeyChar == '\b' | char.IsPunctuation(e.KeyChar))
- e.Handled = false;
- else
- e.Handled = true;
- }
-
- private void TextBox1_LostFocus(object sender, EventArgs e)
- {
- try
- {
- GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
- }
- catch (Exception ex)
- {
- ProjectData.SetProjectError(ex);
- ProjectData.ClearProjectError();
- }
- }
-
- public void SetComboBoxControl_Items_5Tone_EncodeList(
- Control object_x,
- int address,
- int FramSum,
- int sum,
- int Frame,
- int ByteIndex)
- {
- var flag = true;
- var text = ((ComboBox) object_x).Text;
- if (object_x is ComboBox)
- {
- ((ComboBox) object_x).Items.Clear();
- if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
- ((ComboBox) object_x).Items.Add("无");
- else
- ((ComboBox) object_x).Items.Add("OFF");
- var num1 = checked (FramSum - 1);
- var num2 = 0;
- while (num2 <= num1)
+ internal virtual Label Label10
{
- if (publicva.EEPROM_Byte[checked (address + num2 * Frame + ByteIndex)] != 0 & publicva.EEPROM_Byte[checked (address + num2 * Frame + ByteIndex)] < sum)
- {
- ((ComboBox) object_x).Items.Add(checked (num2 + 1));
- flag = false;
- }
- checked { ++num2; }
+ [DebuggerNonUserCode]
+ get => _Label10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label10 = value; }
}
- }
- if (flag)
- ((ComboBox) object_x).SelectedIndex = 0;
- else if (-1 == ((ComboBox) object_x).FindStringExact(text))
- ((ComboBox) object_x).SelectedIndex = 0;
- else
- ((ComboBox) object_x).Text = text;
- }
- public void SetContorl_Items_5ToneDecode()
- {
- SetComboBoxControl_Items_5Tone_EncodeList(ComboBox8, 2048, 32, 32, 16, 0);
- }
-
- public void SetContorl_5ToneDecodeMsg(int i)
- {
- var num = 3072;
- if (publicva.EEPROM_Byte[checked (num + 16 + i * 32)] == 0)
- {
- TextBox3.Text = "";
- ComboBox6.SelectedIndex = 0;
- TextBox3.Enabled = false;
- ComboBox5.Enabled = false;
- publicva.EEPROM_Byte[checked (num + 17 + i * 32)] = 0;
- }
- else
- {
- TextBox3.Text = Conversions.ToString(Get5Tone_Text(checked (num + 0 + i * 32), publicva.EEPROM_Byte[checked (num + 16 + i * 32)]));
- ComboBox6.SelectedIndex = 1;
- TextBox3.Enabled = true;
- ComboBox5.Enabled = true;
- }
- if (publicva.EEPROM_Byte[checked (num + 17 + i * 32)] == 0)
- {
- TextBox4.Text = "";
- ComboBox5.SelectedIndex = 0;
- TextBox4.Enabled = false;
- }
- else
- {
- TextBox4.Text = Conversions.ToString(Get5Tone_Text(checked (num + 8 + i * 32), publicva.EEPROM_Byte[checked (num + 17 + i * 32)]));
- ComboBox5.SelectedIndex = 1;
- TextBox4.Enabled = true;
- }
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox7, checked (num + 18 + i * 32), (byte) (publicva.Bit0 | publicva.Bit1 | publicva.Bit2 | publicva.Bit3), 0);
- if (publicva.EEPROM_Byte[checked (num + 19 + i * 32)] > 2)
- publicva.EEPROM_Byte[checked (num + 19 + i * 32)] = 0;
- MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox4, checked (num + 19 + i * 32), (byte) (publicva.Bit0 | publicva.Bit1), 0);
- if (ComboBox8.FindStringExact(publicva.EEPROM_Byte[checked (num + 20 + i * 32)].ToString()) != -1)
- {
- ComboBox8.Text = Conversions.ToString(publicva.EEPROM_Byte[checked (num + 20 + i * 32)]);
- }
- else
- {
- ComboBox8.SelectedIndex = 0;
- publicva.EEPROM_Byte[checked (num + 20 + i * 32)] = 0;
- }
- if (ComboBox9.FindStringExact(publicva.EEPROM_Byte[checked (num + 21 + i * 32)].ToString()) != -1)
- {
- ComboBox9.Text = Conversions.ToString(publicva.EEPROM_Byte[checked (num + 21 + i * 32)]);
- }
- else
- {
- ComboBox9.SelectedIndex = 0;
- publicva.EEPROM_Byte[checked (num + 21 + i * 32)] = 0;
- }
- if (ComboBox10.FindStringExact(publicva.EEPROM_Byte[checked (num + 22 + i * 32)].ToString()) != -1)
- {
- ComboBox10.Text = Conversions.ToString(publicva.EEPROM_Byte[checked (num + 22 + i * 32)]);
- }
- else
- {
- ComboBox10.SelectedIndex = 0;
- publicva.EEPROM_Byte[checked (num + 22 + i * 32)] = 0;
- }
- }
-
- public void GetContorl_5ToneDecodeMsg(int i)
- {
- var num = 3072;
- if (ComboBox6.SelectedIndex == 0)
- {
- TextBox3.Text = "";
- TextBox4.Text = "";
- ComboBox5.SelectedIndex = 0;
- TextBox3.Enabled = false;
- TextBox4.Enabled = false;
- ComboBox5.Enabled = false;
- publicva._5ToneDecodeListFlag[i] = 0;
- }
- else
- {
- TextBox3.Enabled = true;
- ComboBox5.Enabled = true;
- publicva._5ToneDecodeListFlag[i] = 1;
- }
- if (ComboBox5.SelectedIndex == 0)
- {
- TextBox4.Text = "";
- TextBox4.Enabled = false;
- }
- else
- TextBox4.Enabled = true;
- Get5Tone_Code(checked (num + 0 + i * 32), TextBox3.Text);
- Get5Tone_Code(checked (num + 8 + i * 32), TextBox4.Text);
- publicva.EEPROM_Byte[checked (num + 16 + i * 32)] = checked ((byte) TextBox3.Text.Length);
- publicva.EEPROM_Byte[checked (num + 17 + i * 32)] = checked ((byte) TextBox4.Text.Length);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox7, checked (num + 18 + i * 32), publicva.AllBit, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox4, checked (num + 19 + i * 32), publicva.AllBit, 0);
- if (ComboBox8.SelectedIndex == 0)
- {
- publicva.EEPROM_Byte[checked (num + 20 + i * 32)] = 0;
- }
- else
- {
- try
+ internal virtual NumericUpDown NumericUpDown8
{
- publicva.EEPROM_Byte[checked (num + 20 + i * 32)] = Conversions.ToByte(ComboBox8.Text);
+ [DebuggerNonUserCode]
+ get => _NumericUpDown8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown8 != null)
+ _NumericUpDown8.ValueChanged -= NumericUpDown8_ValueChanged;
+ _NumericUpDown8 = value;
+ if (_NumericUpDown8 == null)
+ return;
+ _NumericUpDown8.ValueChanged += NumericUpDown8_ValueChanged;
+ }
}
- catch (Exception ex)
+
+ internal virtual NumericUpDown NumericUpDown15
{
- ProjectData.SetProjectError(ex);
- publicva.EEPROM_Byte[checked (num + 20 + i * 32)] = 0;
- ProjectData.ClearProjectError();
+ [DebuggerNonUserCode]
+ get => _NumericUpDown15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown15 != null)
+ _NumericUpDown15.ValueChanged -= NumericUpDown15_ValueChanged;
+ _NumericUpDown15 = value;
+ if (_NumericUpDown15 == null)
+ return;
+ _NumericUpDown15.ValueChanged += NumericUpDown15_ValueChanged;
+ }
}
- }
- publicva.EEPROM_Byte[checked (num + 21 + i * 32)] = !(ComboBox9.FindString(ComboBox9.Text) == -1 | ComboBox9.SelectedIndex == 0) ? Conversions.ToByte(ComboBox9.Text) : (byte) 0;
- if (ComboBox10.FindString(ComboBox10.Text) == -1 | ComboBox10.SelectedIndex == 0)
- publicva.EEPROM_Byte[checked (num + 22 + i * 32)] = 0;
- else
- publicva.EEPROM_Byte[checked (num + 22 + i * 32)] = Conversions.ToByte(ComboBox10.Text);
+
+ internal virtual Label Label8
+ {
+ [DebuggerNonUserCode]
+ get => _Label8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label8 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown13
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown13 != null)
+ _NumericUpDown13.ValueChanged -= NumericUpDown13_ValueChanged;
+ _NumericUpDown13 = value;
+ if (_NumericUpDown13 == null)
+ return;
+ _NumericUpDown13.ValueChanged += NumericUpDown13_ValueChanged;
+ }
+ }
+
+ internal virtual NumericUpDown NumericUpDown6
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown6 != null)
+ _NumericUpDown6.ValueChanged -= NumericUpDown6_ValueChanged;
+ _NumericUpDown6 = value;
+ if (_NumericUpDown6 == null)
+ return;
+ _NumericUpDown6.ValueChanged += NumericUpDown6_ValueChanged;
+ }
+ }
+
+ internal virtual NumericUpDown NumericUpDown11
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown11 != null)
+ _NumericUpDown11.ValueChanged -= NumericUpDown11_ValueChanged;
+ _NumericUpDown11 = value;
+ if (_NumericUpDown11 == null)
+ return;
+ _NumericUpDown11.ValueChanged += NumericUpDown11_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label6
+ {
+ [DebuggerNonUserCode]
+ get => _Label6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label6 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown9
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown9 != null)
+ _NumericUpDown9.ValueChanged -= NumericUpDown9_ValueChanged;
+ _NumericUpDown9 = value;
+ if (_NumericUpDown9 == null)
+ return;
+ _NumericUpDown9.ValueChanged += NumericUpDown9_ValueChanged;
+ }
+ }
+
+ internal virtual NumericUpDown NumericUpDown4
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown4 != null)
+ _NumericUpDown4.ValueChanged -= NumericUpDown4_ValueChanged;
+ _NumericUpDown4 = value;
+ if (_NumericUpDown4 == null)
+ return;
+ _NumericUpDown4.ValueChanged += NumericUpDown4_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label15
+ {
+ [DebuggerNonUserCode]
+ get => _Label15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label15 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown7
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown7 != null)
+ _NumericUpDown7.ValueChanged -= NumericUpDown7_ValueChanged;
+ _NumericUpDown7 = value;
+ if (_NumericUpDown7 == null)
+ return;
+ _NumericUpDown7.ValueChanged += NumericUpDown7_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label13
+ {
+ [DebuggerNonUserCode]
+ get => _Label13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label13 = value; }
+ }
+
+ internal virtual Label Label4
+ {
+ [DebuggerNonUserCode]
+ get => _Label4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label4 = value;
+ }
+
+ internal virtual Label Label11
+ {
+ [DebuggerNonUserCode]
+ get => _Label11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label11 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown5
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown5 != null)
+ _NumericUpDown5.ValueChanged -= NumericUpDown5_ValueChanged;
+ _NumericUpDown5 = value;
+ if (_NumericUpDown5 == null)
+ return;
+ _NumericUpDown5.ValueChanged += NumericUpDown5_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label9
+ {
+ [DebuggerNonUserCode]
+ get => _Label9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label9 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown2
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown2 != null)
+ _NumericUpDown2.ValueChanged -= NumericUpDown2_ValueChanged;
+ _NumericUpDown2 = value;
+ if (_NumericUpDown2 == null)
+ return;
+ _NumericUpDown2.ValueChanged += NumericUpDown2_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label7
+ {
+ [DebuggerNonUserCode]
+ get => _Label7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label7 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown3
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown3 != null)
+ _NumericUpDown3.ValueChanged -= NumericUpDown3_ValueChanged;
+ _NumericUpDown3 = value;
+ if (_NumericUpDown3 == null)
+ return;
+ _NumericUpDown3.ValueChanged += NumericUpDown3_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label5
+ {
+ [DebuggerNonUserCode]
+ get => _Label5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label5 = value;
+ }
+
+ internal virtual Label Label2
+ {
+ [DebuggerNonUserCode]
+ get => _Label2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label2 = value;
+ }
+
+ internal virtual Label Label3
+ {
+ [DebuggerNonUserCode]
+ get => _Label3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set => _Label3 = value;
+ }
+
+ internal virtual NumericUpDown NumericUpDown18
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown18 = value; }
+ }
+
+ internal virtual Label Label18
+ {
+ [DebuggerNonUserCode]
+ get => _Label18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label18 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown17
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown17 = value; }
+ }
+
+ internal virtual Label Label17
+ {
+ [DebuggerNonUserCode]
+ get => _Label17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label17 = value; }
+ }
+
+ internal virtual TabPage TabPage3
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage3 = value; }
+ }
+
+ internal virtual TabPage TabPage4
+ {
+ [DebuggerNonUserCode]
+ get => _TabPage4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _TabPage4 = value; }
+ }
+
+ internal virtual ComboBox ComboBox1
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox1 = value; }
+ }
+
+ internal virtual Label Label22
+ {
+ [DebuggerNonUserCode]
+ get => _Label22;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label22 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown21
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown21;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown21 = value; }
+ }
+
+ internal virtual Label Label21
+ {
+ [DebuggerNonUserCode]
+ get => _Label21;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label21 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown20
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown20;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown20 = value; }
+ }
+
+ internal virtual Label Label20
+ {
+ [DebuggerNonUserCode]
+ get => _Label20;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label20 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown19
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown19;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown19 = value; }
+ }
+
+ internal virtual Label Label19
+ {
+ [DebuggerNonUserCode]
+ get => _Label19;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label19 = value; }
+ }
+
+ internal virtual DataGridView DataGridView2
+ {
+ [DebuggerNonUserCode]
+ get => _DataGridView2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_DataGridView2 != null)
+ {
+ _DataGridView2.EditingControlShowing -= DataGridView2_EditingControlShowing;
+ _DataGridView2.RowPostPaint -= DataGridView2_RowPostPaint;
+ _DataGridView2.MouseClick -= DataGridView2_MouseClick;
+ _DataGridView2.CellClick -= DataGridView2_CellClick;
+ _DataGridView2.CellEndEdit -= DataGridView2_CellEndEdit;
+ }
+
+ _DataGridView2 = value;
+ if (_DataGridView2 == null)
+ return;
+ _DataGridView2.EditingControlShowing += DataGridView2_EditingControlShowing;
+ _DataGridView2.RowPostPaint += DataGridView2_RowPostPaint;
+ _DataGridView2.MouseClick += DataGridView2_MouseClick;
+ _DataGridView2.CellClick += DataGridView2_CellClick;
+ _DataGridView2.CellEndEdit += DataGridView2_CellEndEdit;
+ }
+ }
+
+ internal virtual CheckBox CheckBox5_Tone侧音
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox5_Tone侧音;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox5_Tone侧音 = value; }
+ }
+
+ internal virtual SplitContainer SplitContainer1
+ {
+ [DebuggerNonUserCode]
+ get => _SplitContainer1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SplitContainer1 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown编码_信息码
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown编码_信息码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown编码_信息码 != null)
+ _NumericUpDown编码_信息码.ValueChanged -= NumericUpDown编码_信息码_ValueChanged;
+ _NumericUpDown编码_信息码 = value;
+ if (_NumericUpDown编码_信息码 == null)
+ return;
+ _NumericUpDown编码_信息码.ValueChanged += NumericUpDown编码_信息码_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label23
+ {
+ [DebuggerNonUserCode]
+ get => _Label23;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label23 = value; }
+ }
+
+ internal virtual CheckBox CheckBox第一个音扩展
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox第一个音扩展;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox第一个音扩展 = value; }
+ }
+
+ internal virtual Label Label24
+ {
+ [DebuggerNonUserCode]
+ get => _Label24;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label24 = value; }
+ }
+
+ internal virtual TextBox TextBox1
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBox1 != null)
+ {
+ _TextBox1.LostFocus -= TextBox1_LostFocus;
+ _TextBox1.KeyPress -= TextBox1_KeyPress;
+ }
+
+ _TextBox1 = value;
+ if (_TextBox1 == null)
+ return;
+ _TextBox1.LostFocus += TextBox1_LostFocus;
+ _TextBox1.KeyPress += TextBox1_KeyPress;
+ }
+ }
+
+ internal virtual Label Label27
+ {
+ [DebuggerNonUserCode]
+ get => _Label27;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label27 = value; }
+ }
+
+ internal virtual CheckBox CheckBox第二个音扩展
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox第二个音扩展;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _CheckBox第二个音扩展 = value; }
+ }
+
+ internal virtual ComboBox ComboBox2
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox2 != null)
+ _ComboBox2.SelectionChangeCommitted -= ComboBox2_SelectionChangeCommitted;
+ _ComboBox2 = value;
+ if (_ComboBox2 == null)
+ return;
+ _ComboBox2.SelectionChangeCommitted += ComboBox2_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label26
+ {
+ [DebuggerNonUserCode]
+ get => _Label26;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label26 = value; }
+ }
+
+ internal virtual Label Label25
+ {
+ [DebuggerNonUserCode]
+ get => _Label25;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label25 = value; }
+ }
+
+ internal virtual Button Button2
+ {
+ [DebuggerNonUserCode]
+ get => _Button2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button2 != null)
+ _Button2.Click -= Button2_Click;
+ _Button2 = value;
+ if (_Button2 == null)
+ return;
+ _Button2.Click += Button2_Click;
+ }
+ }
+
+ internal virtual Button Button1
+ {
+ [DebuggerNonUserCode]
+ get => _Button1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button1 != null)
+ _Button1.Click -= Button1_Click;
+ _Button1 = value;
+ if (_Button1 == null)
+ return;
+ _Button1.Click += Button1_Click;
+ }
+ }
+
+ internal virtual NumericUpDown NumericUpDown25
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown25;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _NumericUpDown25 = value; }
+ }
+
+ internal virtual Label Label29
+ {
+ [DebuggerNonUserCode]
+ get => _Label29;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label29 = value; }
+ }
+
+ internal virtual ComboBox ComboBox3
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _ComboBox3 = value; }
+ }
+
+ internal virtual Label Label28
+ {
+ [DebuggerNonUserCode]
+ get => _Label28;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label28 = value; }
+ }
+
+ internal virtual SplitContainer SplitContainer2
+ {
+ [DebuggerNonUserCode]
+ get => _SplitContainer2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SplitContainer2 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown解码_信息码
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown解码_信息码;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown解码_信息码 != null)
+ _NumericUpDown解码_信息码.ValueChanged -= NumericUpDown解码_信息码_ValueChanged;
+ _NumericUpDown解码_信息码 = value;
+ if (_NumericUpDown解码_信息码 == null)
+ return;
+ _NumericUpDown解码_信息码.ValueChanged += NumericUpDown解码_信息码_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label30
+ {
+ [DebuggerNonUserCode]
+ get => _Label30;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label30 = value; }
+ }
+
+ internal virtual Button Button3
+ {
+ [DebuggerNonUserCode]
+ get => _Button3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button3 != null)
+ _Button3.Click -= Button3_Click;
+ _Button3 = value;
+ if (_Button3 == null)
+ return;
+ _Button3.Click += Button3_Click;
+ }
+ }
+
+ internal virtual Button Button4
+ {
+ [DebuggerNonUserCode]
+ get => _Button4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button4 != null)
+ _Button4.Click -= Button4_Click;
+ _Button4 = value;
+ if (_Button4 == null)
+ return;
+ _Button4.Click += Button4_Click;
+ }
+ }
+
+ internal virtual ComboBox ComboBox7
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox7 != null)
+ _ComboBox7.SelectionChangeCommitted -= ComboBox7_SelectionChangeCommitted;
+ _ComboBox7 = value;
+ if (_ComboBox7 == null)
+ return;
+ _ComboBox7.SelectionChangeCommitted += ComboBox7_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox6
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox6 != null)
+ _ComboBox6.SelectionChangeCommitted -= ComboBox6_SelectionChangeCommitted;
+ _ComboBox6 = value;
+ if (_ComboBox6 == null)
+ return;
+ _ComboBox6.SelectionChangeCommitted += ComboBox6_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox5
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox5 != null)
+ _ComboBox5.SelectionChangeCommitted -= ComboBox5_SelectionChangeCommitted;
+ _ComboBox5 = value;
+ if (_ComboBox5 == null)
+ return;
+ _ComboBox5.SelectionChangeCommitted += ComboBox5_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox4
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox4 != null)
+ _ComboBox4.SelectionChangeCommitted -= ComboBox4_SelectionChangeCommitted;
+ _ComboBox4 = value;
+ if (_ComboBox4 == null)
+ return;
+ _ComboBox4.SelectionChangeCommitted += ComboBox4_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label32
+ {
+ [DebuggerNonUserCode]
+ get => _Label32;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label32 = value; }
+ }
+
+ internal virtual Label Label33
+ {
+ [DebuggerNonUserCode]
+ get => _Label33;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label33 = value; }
+ }
+
+ internal virtual Label Label35
+ {
+ [DebuggerNonUserCode]
+ get => _Label35;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label35 = value; }
+ }
+
+ internal virtual Label Label34
+ {
+ [DebuggerNonUserCode]
+ get => _Label34;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label34 = value; }
+ }
+
+ internal virtual TextBox TextBox3
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBox3 != null)
+ {
+ _TextBox3.LostFocus -= TextBox3_LostFocus;
+ _TextBox3.KeyPress -= TextBox3_KeyPress;
+ }
+
+ _TextBox3 = value;
+ if (_TextBox3 == null)
+ return;
+ _TextBox3.LostFocus += TextBox3_LostFocus;
+ _TextBox3.KeyPress += TextBox3_KeyPress;
+ }
+ }
+
+ internal virtual TextBox TextBox4
+ {
+ [DebuggerNonUserCode]
+ get => _TextBox4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_TextBox4 != null)
+ {
+ _TextBox4.LostFocus -= TextBox4_LostFocus;
+ _TextBox4.KeyPress -= TextBox4_KeyPress;
+ }
+
+ _TextBox4 = value;
+ if (_TextBox4 == null)
+ return;
+ _TextBox4.LostFocus += TextBox4_LostFocus;
+ _TextBox4.KeyPress += TextBox4_KeyPress;
+ }
+ }
+
+ internal virtual ComboBox ComboBox10
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox10;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox10 != null)
+ {
+ _ComboBox10.SelectionChangeCommitted -= ComboBox10_SelectionChangeCommitted;
+ _ComboBox10.MouseClick -= ComboBox10_MouseClick;
+ }
+
+ _ComboBox10 = value;
+ if (_ComboBox10 == null)
+ return;
+ _ComboBox10.SelectionChangeCommitted += ComboBox10_SelectionChangeCommitted;
+ _ComboBox10.MouseClick += ComboBox10_MouseClick;
+ }
+ }
+
+ internal virtual Label Label37
+ {
+ [DebuggerNonUserCode]
+ get => _Label37;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label37 = value; }
+ }
+
+ internal virtual ComboBox ComboBox9
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox9 != null)
+ {
+ _ComboBox9.SelectionChangeCommitted -= ComboBox9_SelectionChangeCommitted;
+ _ComboBox9.MouseClick -= ComboBox9_MouseClick;
+ }
+
+ _ComboBox9 = value;
+ if (_ComboBox9 == null)
+ return;
+ _ComboBox9.SelectionChangeCommitted += ComboBox9_SelectionChangeCommitted;
+ _ComboBox9.MouseClick += ComboBox9_MouseClick;
+ }
+ }
+
+ internal virtual Label Label36
+ {
+ [DebuggerNonUserCode]
+ get => _Label36;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label36 = value; }
+ }
+
+ internal virtual ComboBox ComboBox8
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox8 != null)
+ {
+ _ComboBox8.SelectionChangeCommitted -= ComboBox8_SelectionChangeCommitted;
+ _ComboBox8.MouseClick -= ComboBox8_MouseClick;
+ }
+
+ _ComboBox8 = value;
+ if (_ComboBox8 == null)
+ return;
+ _ComboBox8.SelectionChangeCommitted += ComboBox8_SelectionChangeCommitted;
+ _ComboBox8.MouseClick += ComboBox8_MouseClick;
+ }
+ }
+
+ internal virtual Label Label31
+ {
+ [DebuggerNonUserCode]
+ get => _Label31;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label31 = value; }
+ }
+
+ internal virtual SplitContainer SplitContainer3
+ {
+ [DebuggerNonUserCode]
+ get => _SplitContainer3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _SplitContainer3 = value; }
+ }
+
+ internal virtual NumericUpDown NumericUpDown27
+ {
+ [DebuggerNonUserCode]
+ get => _NumericUpDown27;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_NumericUpDown27 != null)
+ _NumericUpDown27.ValueChanged -= NumericUpDown27_ValueChanged;
+ _NumericUpDown27 = value;
+ if (_NumericUpDown27 == null)
+ return;
+ _NumericUpDown27.ValueChanged += NumericUpDown27_ValueChanged;
+ }
+ }
+
+ internal virtual Label Label38
+ {
+ [DebuggerNonUserCode]
+ get => _Label38;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label38 = value; }
+ }
+
+ internal virtual Button Button5
+ {
+ [DebuggerNonUserCode]
+ get => _Button5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button5 != null)
+ _Button5.Click -= Button5_Click;
+ _Button5 = value;
+ if (_Button5 == null)
+ return;
+ _Button5.Click += Button5_Click;
+ }
+ }
+
+ internal virtual Button Button6
+ {
+ [DebuggerNonUserCode]
+ get => _Button6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button6 != null)
+ _Button6.Click -= Button6_Click;
+ _Button6 = value;
+ if (_Button6 == null)
+ return;
+ _Button6.Click += Button6_Click;
+ }
+ }
+
+ internal virtual ComboBox ComboBox11
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox11;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox11 != null)
+ {
+ _ComboBox11.SelectionChangeCommitted -= ComboBox11_SelectionChangeCommitted;
+ _ComboBox11.MouseClick -= ComboBox11_MouseClick;
+ }
+
+ _ComboBox11 = value;
+ if (_ComboBox11 == null)
+ return;
+ _ComboBox11.SelectionChangeCommitted += ComboBox11_SelectionChangeCommitted;
+ _ComboBox11.MouseClick += ComboBox11_MouseClick;
+ }
+ }
+
+ internal virtual ComboBox ComboBox12
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox12;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox12 != null)
+ {
+ _ComboBox12.SelectionChangeCommitted -= ComboBox12_SelectionChangeCommitted;
+ _ComboBox12.MouseClick -= ComboBox12_MouseClick;
+ }
+
+ _ComboBox12 = value;
+ if (_ComboBox12 == null)
+ return;
+ _ComboBox12.SelectionChangeCommitted += ComboBox12_SelectionChangeCommitted;
+ _ComboBox12.MouseClick += ComboBox12_MouseClick;
+ }
+ }
+
+ internal virtual ComboBox ComboBox13
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox13;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox13 != null)
+ _ComboBox13.SelectionChangeCommitted -= ComboBox13_SelectionChangeCommitted;
+ _ComboBox13 = value;
+ if (_ComboBox13 == null)
+ return;
+ _ComboBox13.SelectionChangeCommitted += ComboBox13_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox15
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox15;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox15 != null)
+ _ComboBox15.SelectionChangeCommitted -= ComboBox15_SelectionChangeCommitted;
+ _ComboBox15 = value;
+ if (_ComboBox15 == null)
+ return;
+ _ComboBox15.SelectionChangeCommitted += ComboBox15_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label40
+ {
+ [DebuggerNonUserCode]
+ get => _Label40;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label40 = value; }
+ }
+
+ internal virtual ComboBox ComboBox16
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox16;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox16 != null)
+ _ComboBox16.SelectionChangeCommitted -= ComboBox16_SelectionChangeCommitted;
+ _ComboBox16 = value;
+ if (_ComboBox16 == null)
+ return;
+ _ComboBox16.SelectionChangeCommitted += ComboBox16_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label41
+ {
+ [DebuggerNonUserCode]
+ get => _Label41;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label41 = value; }
+ }
+
+ internal virtual ComboBox ComboBox17
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox17;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox17 != null)
+ _ComboBox17.SelectionChangeCommitted -= ComboBox17_SelectionChangeCommitted;
+ _ComboBox17 = value;
+ if (_ComboBox17 == null)
+ return;
+ _ComboBox17.SelectionChangeCommitted += ComboBox17_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual Label Label42
+ {
+ [DebuggerNonUserCode]
+ get => _Label42;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label42 = value; }
+ }
+
+ internal virtual Label Label43
+ {
+ [DebuggerNonUserCode]
+ get => _Label43;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label43 = value; }
+ }
+
+ internal virtual Label Label44
+ {
+ [DebuggerNonUserCode]
+ get => _Label44;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label44 = value; }
+ }
+
+ internal virtual Label Label45
+ {
+ [DebuggerNonUserCode]
+ get => _Label45;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Label45 = value; }
+ }
+
+ internal virtual GroupBox GroupBox3
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox3 = value; }
+ }
+
+ internal virtual CheckBox CheckBox2
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox2 != null)
+ _CheckBox2.LostFocus -= CheckBox2_LostFocus;
+ _CheckBox2 = value;
+ if (_CheckBox2 == null)
+ return;
+ _CheckBox2.LostFocus += CheckBox2_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox1
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox1 != null)
+ _CheckBox1.LostFocus -= CheckBox1_LostFocus;
+ _CheckBox1 = value;
+ if (_CheckBox1 == null)
+ return;
+ _CheckBox1.LostFocus += CheckBox1_LostFocus;
+ }
+ }
+
+ internal virtual GroupBox GroupBox2
+ {
+ [DebuggerNonUserCode]
+ get => _GroupBox2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _GroupBox2 = value; }
+ }
+
+ internal virtual CheckBox CheckBox8
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox8 != null)
+ _CheckBox8.LostFocus -= CheckBox8_LostFocus;
+ _CheckBox8 = value;
+ if (_CheckBox8 == null)
+ return;
+ _CheckBox8.LostFocus += CheckBox8_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox4
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox4;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox4 != null)
+ _CheckBox4.LostFocus -= CheckBox4_LostFocus;
+ _CheckBox4 = value;
+ if (_CheckBox4 == null)
+ return;
+ _CheckBox4.LostFocus += CheckBox4_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox7
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox7 != null)
+ _CheckBox7.LostFocus -= CheckBox7_LostFocus;
+ _CheckBox7 = value;
+ if (_CheckBox7 == null)
+ return;
+ _CheckBox7.LostFocus += CheckBox7_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox3
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox3;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox3 != null)
+ _CheckBox3.LostFocus -= CheckBox3_LostFocus;
+ _CheckBox3 = value;
+ if (_CheckBox3 == null)
+ return;
+ _CheckBox3.LostFocus += CheckBox3_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox6
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox6;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox6 != null)
+ _CheckBox6.LostFocus -= CheckBox6_LostFocus;
+ _CheckBox6 = value;
+ if (_CheckBox6 == null)
+ return;
+ _CheckBox6.LostFocus += CheckBox6_LostFocus;
+ }
+ }
+
+ internal virtual CheckBox CheckBox5
+ {
+ [DebuggerNonUserCode]
+ get => _CheckBox5;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_CheckBox5 != null)
+ _CheckBox5.LostFocus -= CheckBox5_LostFocus;
+ _CheckBox5 = value;
+ if (_CheckBox5 == null)
+ return;
+ _CheckBox5.LostFocus += CheckBox5_LostFocus;
+ }
+ }
+
+ internal virtual Button Button7
+ {
+ [DebuggerNonUserCode]
+ get => _Button7;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button7 = value; }
+ }
+
+ internal virtual Button Button8
+ {
+ [DebuggerNonUserCode]
+ get => _Button8;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Button8 = value; }
+ }
+
+ internal virtual Button Button9
+ {
+ [DebuggerNonUserCode]
+ get => _Button9;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_Button9 != null)
+ _Button9.Click -= Button9_Click;
+ _Button9 = value;
+ if (_Button9 == null)
+ return;
+ _Button9.Click += Button9_Click;
+ }
+ }
+
+ internal virtual ComboBox ComboBox14
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox14;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox14 != null)
+ _ComboBox14.SelectionChangeCommitted -= ComboBox14_SelectionChangeCommitted;
+ _ComboBox14 = value;
+ if (_ComboBox14 == null)
+ return;
+ _ComboBox14.SelectionChangeCommitted += ComboBox14_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual ComboBox ComboBox18
+ {
+ [DebuggerNonUserCode]
+ get => _ComboBox18;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set
+ {
+ if (_ComboBox18 != null)
+ _ComboBox18.SelectionChangeCommitted -= ComboBox18_SelectionChangeCommitted;
+ _ComboBox18 = value;
+ if (_ComboBox18 == null)
+ return;
+ _ComboBox18.SelectionChangeCommitted += ComboBox18_SelectionChangeCommitted;
+ }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column0
+ {
+ [DebuggerNonUserCode]
+ get => _Column0;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column0 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column1
+ {
+ [DebuggerNonUserCode]
+ get => _Column1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column1 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn Column2
+ {
+ [DebuggerNonUserCode]
+ get => _Column2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _Column2 = value; }
+ }
+
+ internal virtual DataGridViewComboBoxColumn DataGridViewComboBoxColumn1
+ {
+ [DebuggerNonUserCode]
+ get => _DataGridViewComboBoxColumn1;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _DataGridViewComboBoxColumn1 = value; }
+ }
+
+ internal virtual DataGridViewTextBoxColumn DataGridViewComboBoxColumn2
+ {
+ [DebuggerNonUserCode]
+ get => _DataGridViewComboBoxColumn2;
+ [DebuggerNonUserCode, MethodImpl(MethodImplOptions.Synchronized)]
+ set { _DataGridViewComboBoxColumn2 = value; }
+ }
+
+ public void _5ToneForm_Deactivate(object sender, EventArgs e)
+ {
+ DataGridView1.EndEdit();
+ DataGridView2.EndEdit();
+ var num1 = 1856;
+ var rowIndex1 = 0;
+ do
+ {
+ publicva.EEPROM_Byte[checked(num1 + 0 + rowIndex1 * 4)] =
+ checked((byte) (Column0.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column0", rowIndex1].Value)) + 30));
+ publicva.EEPROM_Byte[checked(num1 + 1 + rowIndex1 * 4)] =
+ checked((byte) Column1.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column1", rowIndex1].Value)));
+ publicva.EEPROM_Byte[checked(num1 + 2 + rowIndex1 * 4)] =
+ checked((byte) Column2.Items.IndexOf(RuntimeHelpers.GetObjectValue(DataGridView1["Column2", rowIndex1].Value)));
+ checked
+ {
+ ++rowIndex1;
+ }
+ }
+ while (rowIndex1 <= 15);
+
+ var num2 = 1920;
+ publicva.EEPROM_Byte[checked(num2 + 0)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown17.Value) / 10L));
+ publicva.EEPROM_Byte[checked(num2 + 1)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown18.Value) / 10L));
+ publicva.EEPROM_Byte[checked(num2 + 2)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown19.Value) / 10L));
+ publicva.EEPROM_Byte[checked(num2 + 3)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown20.Value) / 10L));
+ publicva.EEPROM_Byte[checked(num2 + 4)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown21.Value) / 10L));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox5_Tone侧音, checked(num2 + 5), publicva.Bit0, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox1, checked(num2 + 6), publicva.AllBit, 0);
+ var num3 = 1928;
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox3, checked(num3 + 0), publicva.AllBit, 0);
+ publicva.EEPROM_Byte[checked(num3 + 4)] = checked((byte) unchecked(Convert.ToInt64(NumericUpDown25.Value) / 10L));
+ var num4 = 2048;
+ var num5 = 2560;
+ var rowIndex2 = 0;
+ do
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn1", rowIndex2].Value, "", false))
+ {
+ publicva.EEPROM_Byte[checked(num5 + 0 + rowIndex2 * 16)] = 0;
+ Get5Tone_Code(checked(num5 + 1 + rowIndex2 * 16), "");
+ publicva.EEPROM_Byte[checked(num5 + 9 + rowIndex2 * 16)] = 0;
+ }
+ else
+ {
+ publicva.EEPROM_Byte[checked(num5 + 0 + rowIndex2 * 16)] =
+ checked((byte) DataGridViewComboBoxColumn1.Items.IndexOf(
+ RuntimeHelpers.GetObjectValue(DataGridView2["DataGridViewComboBoxColumn1", rowIndex2].Value)));
+ Get5Tone_Code(checked(num5 + 1 + rowIndex2 * 16),
+ Conversions.ToString(DataGridView2["DataGridViewComboBoxColumn2", rowIndex2].Value));
+ publicva.EEPROM_Byte[checked(num5 + 9 + rowIndex2 * 16)] = checked((byte) DataGridView2["DataGridViewComboBoxColumn2", rowIndex2]
+ .Value.ToString()
+ .Length);
+ }
+
+ checked
+ {
+ ++rowIndex2;
+ }
+ }
+ while (rowIndex2 <= 31);
+
+ num4 = 3072;
+ num4 = 3584;
+ }
+
+ private void _5ToneForm_FormClosing(object sender, FormClosingEventArgs e)
+ {
+ publicva._5ToneLoader = false;
+ MyProject.Forms.MDIParent1.五音FToolStripMenuItem.Checked = false;
+ }
+
+ public void _5ToneForm_Load(object sender, EventArgs e)
+ {
+ MyProject.Forms.MDIParent1.五音FToolStripMenuItem.Checked = true;
+ DataGridView1.RowCount = 16;
+ DataGridView2.RowCount = 32;
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ {
+ DataGridView1.TopLeftHeaderCell.Value = "标准";
+ DataGridView2.TopLeftHeaderCell.Value = "帧";
+ }
+ else
+ {
+ DataGridView1.TopLeftHeaderCell.Value = "Standard";
+ DataGridView2.TopLeftHeaderCell.Value = "Frame";
+ }
+
+ SetContorl_NumericUpDown_Enable(false);
+ SetContorl_NumericUpDown_5ToneFreq(0);
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
+ var num1 = 1856;
+ var rowIndex = 0;
+ do
+ {
+ DataGridView1["Column0", rowIndex].Value = publicva.EEPROM_Byte[checked(num1 + 0 + rowIndex * 4)] <= 30
+ ? RuntimeHelpers.GetObjectValue(Column0.Items[0])
+ : RuntimeHelpers.GetObjectValue(Column0.Items[checked(publicva.EEPROM_Byte[num1 + 0 + rowIndex * 4] - 30)]);
+ DataGridView1["Column1", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(Column1.Items[publicva.EEPROM_Byte[checked(num1 + 1 + rowIndex * 4)]]);
+ DataGridView1["Column2", rowIndex].Value =
+ RuntimeHelpers.GetObjectValue(Column2.Items[publicva.EEPROM_Byte[checked(num1 + 2 + rowIndex * 4)]]);
+ checked
+ {
+ ++rowIndex;
+ }
+ }
+ while (rowIndex <= 15);
+
+ var num2 = 1920;
+ NumericUpDown17.Value = new Decimal(checked(publicva.EEPROM_Byte[num2 + 0] * 10));
+ NumericUpDown18.Value = new Decimal(checked(publicva.EEPROM_Byte[num2 + 1] * 10));
+ NumericUpDown19.Value = new Decimal(checked(publicva.EEPROM_Byte[num2 + 2] * 10));
+ NumericUpDown20.Value = new Decimal(checked(publicva.EEPROM_Byte[num2 + 3] * 10));
+ NumericUpDown21.Value = new Decimal(checked(publicva.EEPROM_Byte[num2 + 4] * 10));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox5_Tone侧音, checked(num2 + 5), publicva.Bit0, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox1, checked(num2 + 6),
+ (byte) (publicva.Bit0 | publicva.Bit1 | publicva.Bit2 | publicva.Bit3), 0);
+ var num3 = 1928;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox3, checked(num3 + 0), publicva.AllBit, 0);
+ NumericUpDown25.Value = new Decimal(checked(publicva.EEPROM_Byte[num3 + 4] * 10));
+ var num4 = 2560;
+ var index1 = 0;
+ do
+ {
+ if (publicva.EEPROM_Byte[checked(num4 + 9 + index1 * 16)] == 0)
+ {
+ Clr_5ToneEncodeList(index1);
+ publicva._5ToneEncodeListFlag[index1] = 0;
+ }
+ else
+ {
+ publicva._5ToneEncodeListFlag[index1] = 1;
+ DataGridView2["DataGridViewComboBoxColumn1", index1].Value =
+ RuntimeHelpers.GetObjectValue(DataGridViewComboBoxColumn1.Items[publicva.EEPROM_Byte[checked(num4 + 0 + index1 * 16)]]);
+ DataGridView2["DataGridViewComboBoxColumn2", index1].Value =
+ RuntimeHelpers.GetObjectValue(Get5Tone_Text(checked(num4 + 1 + index1 * 16),
+ publicva.EEPROM_Byte[checked(num4 + 9 + index1 * 16)]));
+ }
+
+ checked
+ {
+ ++index1;
+ }
+ }
+ while (index1 <= 31);
+
+ SetControl_EncodeListItems(ComboBox14);
+ SetControl_EncodeListItems(ComboBox18);
+ SetContorl_Items_5ToneDecode();
+ var num5 = 2048;
+ publicva._5ToneLoaderEncodeMsg = true;
+ SetContorl_5ToneEncodeMsg(0);
+ var num6 = 3072;
+ SetContorl_Items_5ToneDecode();
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
+ SetContorl_5ToneDecodeMsg(0);
+ var index2 = 0;
+ do
+ {
+ publicva._5ToneDecodeListFlag[index2] = publicva.EEPROM_Byte[checked(num6 + 16 + index2 * 32)] != 0 ? (byte) 1 : (byte) 0;
+ checked
+ {
+ ++index2;
+ }
+ }
+ while (index2 <= 15);
+
+ num5 = 3584;
+ SetControl_DecodeListItems(ComboBox13);
+ SetControl_DecodeListItems(ComboBox17);
+ SetControl_DecodeListItems(ComboBox16);
+ SetControl_DecodeListItems(ComboBox15);
+ SetComboBoxControl_Items_5Tone_EncodeList(ComboBox11, 2048, 32, 32, 16, 0);
+ SetComboBoxControl_Items_5Tone_EncodeList(ComboBox12, 2048, 32, 32, 16, 0);
+ SetContorl_5ToneParameterMsg(0);
+ publicva._5ToneLoader = true;
+ publicva._5ToneEncodeListEditFlag = false;
+ }
+
+ private void DataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
+ {
+ var rowIndex = DataGridView1.CurrentCell.RowIndex;
+ var strArray = new string[16]
+ {
+ "ZVEI1",
+ "ZVEI2",
+ "ZVEI3",
+ "PZVEI",
+ "DZVEI",
+ "PDZVEI",
+ "CCIR1",
+ "CCIR2",
+ "PCCIR",
+ "EEA",
+ "EUIRO SIGNAL",
+ "NATEL",
+ "EIA",
+ "MODAT",
+ "CCITT",
+ "USER DIFINED"
+ };
+ if (rowIndex > 14)
+ {
+ SetContorl_NumericUpDown_Enable(false);
+ SetContorl_NumericUpDown_Rang(300, 3000);
+ SetContorl_NumericUpDown_5ToneFreq_User();
+ }
+ else
+ {
+ SetContorl_NumericUpDown_Enable(false);
+ SetContorl_NumericUpDown_Rang(0, 3000);
+ SetContorl_NumericUpDown_5ToneFreq(rowIndex);
+ }
+
+ GroupBox1.Text = strArray[rowIndex];
+ }
+
+ private void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var strArray = new string[16]
+ {
+ "ZVEI1",
+ "ZVEI2",
+ "ZVEI3",
+ "PZVEI",
+ "DZVEI",
+ "PDZVEI",
+ "CCIR1",
+ "CCIR2",
+ "PCCIR",
+ "EEA",
+ "EUIRO SIGNAL",
+ "NATEL",
+ "EIA",
+ "MODAT",
+ "CCITT",
+ "USER DIFINED"
+ };
+ var brush = (Brush) new SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor);
+ e.Graphics.DrawString(strArray[e.RowIndex], DataGridView1.DefaultCellStyle.Font, brush,
+ e.RowBounds.Location.X + (float) ((DataGridView1.RowHeadersWidth - strArray[e.RowIndex].Length * 6.5) / 2.0),
+ checked(e.RowBounds.Location.Y + 5));
+ }
+
+ private void DataGridView2_EditingControlShowing(
+ object sender,
+ DataGridViewEditingControlShowingEventArgs e)
+ {
+ if (DataGridView2.CurrentCell.ColumnIndex != DataGridView2["DataGridViewComboBoxColumn2", 0].ColumnIndex)
+ return;
+ var boxEditingControl = new DataGridViewTextBoxEditingControl();
+ boxEditingControl = (DataGridViewTextBoxEditingControl) e.Control;
+ var control = (DataGridViewTextBoxEditingControl) e.Control;
+ control.ImeMode = ImeMode.Disable;
+ control.KeyPress += Cells_KeyPress;
+ }
+
+ private void Cells_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), nameof(e), false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
+ {
+ if (char.IsLower(e.KeyChar))
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ e.Handled = false;
+ }
+ else
+ e.Handled = true;
+ }
+
+ private void DataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = DataGridView2.CurrentCell.RowIndex;
+ var columnIndex = DataGridView2.CurrentCell.ColumnIndex;
+ if (columnIndex == DataGridView2["DataGridViewComboBoxColumn1", rowIndex].ColumnIndex)
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn1", rowIndex].Value, "", false))
+ {
+ Clr_5ToneEncodeList(rowIndex);
+ publicva._5ToneEncodeListFlag[rowIndex] = 0;
+ }
+ else if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value, "", false))
+ {
+ Init_5ToneEncodeList(rowIndex);
+ publicva._5ToneEncodeListEditFlag = true;
+ publicva._5ToneEncodeListEditRow = rowIndex;
+ publicva._5ToneEncodeListFlag[rowIndex] = 1;
+ }
+ }
+ else if (columnIndex == DataGridView2["DataGridViewComboBoxColumn2", rowIndex].ColumnIndex)
+ {
+ if (Operators.ConditionalCompareObjectEqual(DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value, "", false))
+ {
+ Clr_5ToneEncodeList(rowIndex);
+ publicva._5ToneEncodeListFlag[rowIndex] = 0;
+ }
+ else if (DataGridView2["DataGridViewComboBoxColumn2", rowIndex]
+ .Value.ToString()
+ .Length < 5)
+ {
+ DataGridView2["DataGridViewComboBoxColumn2", rowIndex].Value = "";
+ Clr_5ToneEncodeList(rowIndex);
+ publicva._5ToneEncodeListFlag[rowIndex] = 0;
+ publicva._5ToneEncodeListEditFlag = false;
+ MyProject.Forms.ChannelMsg.Msgbox_Msg("Please enter the above five Numbers!");
+ }
+ }
+
+ SetControl_EncodeListItems(ComboBox14);
+ SetControl_EncodeListItems(ComboBox18);
+ SetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ SetControl_DecodeListItems(ComboBox13);
+ SetControl_DecodeListItems(ComboBox17);
+ SetControl_DecodeListItems(ComboBox16);
+ SetControl_DecodeListItems(ComboBox15);
+ SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ SetContorl_Items_5ToneDecode();
+ }
+
+ private void DataGridView2_CellClick(object sender, DataGridViewCellEventArgs e)
+ {
+ var rowIndex = DataGridView2.CurrentCell.RowIndex;
+ if (!Operators.ConditionalCompareObjectEqual("", DataGridView2["DataGridViewComboBoxColumn1", rowIndex].Value, false))
+ return;
+ if (publicva._5ToneEncodeListEditFlag)
+ {
+ publicva._5ToneEncodeListEditFlag = false;
+ DataGridView2.CurrentCell = DataGridView2.Rows[publicva._5ToneEncodeListEditRow]
+ .Cells[1];
+ }
+ else
+ DataGridView2.CurrentCell = DataGridView2.Rows[rowIndex]
+ .Cells[0];
+
+ DataGridView2.BeginEdit(true);
+ }
+
+ private void DataGridView2_MouseClick(object sender, MouseEventArgs e)
+ {
+ }
+
+ private void DataGridView2_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
+ {
+ var brush = (Brush) new SolidBrush(DataGridView2.RowHeadersDefaultCellStyle.ForeColor);
+ e.Graphics.DrawString(checked(e.RowIndex + 1).ToString(), DataGridView1.DefaultCellStyle.Font, brush, e.RowBounds.Location.X +
+ checked(DataGridView2.RowHeadersWidth - (e.RowIndex + 1).ToString()
+ .Length * 8) / 2f, checked(e.RowBounds.Location.Y + 5));
+ }
+
+ public void SetContorl_NumericUpDown_5ToneFreq_User()
+ {
+ var num = 1824;
+ NumericUpDown1.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 0)), 10));
+ NumericUpDown2.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 2)), 10));
+ NumericUpDown3.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 4)), 10));
+ NumericUpDown4.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 6)), 10));
+ NumericUpDown5.Value = Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 8)), 10));
+ NumericUpDown6.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 10)), 10));
+ NumericUpDown7.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 12)), 10));
+ NumericUpDown8.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 14)), 10));
+ NumericUpDown9.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 16)), 10));
+ NumericUpDown10.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 18)), 10));
+ NumericUpDown11.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 20)), 10));
+ NumericUpDown12.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 22)), 10));
+ NumericUpDown13.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 24)), 10));
+ NumericUpDown14.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 26)), 10));
+ NumericUpDown15.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 28)), 10));
+ NumericUpDown16.Value =
+ Conversions.ToDecimal(Operators.DivideObject(MyProject.Forms.MDIParent1.Get_2ByteToU16_L_H(checked(num + 30)), 10));
+ }
+
+ public void SetContorl_NumericUpDown_5ToneFreq(int i)
+ {
+ NumericUpDown1.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 0] / 10.0);
+ NumericUpDown2.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 1] / 10.0);
+ NumericUpDown3.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 2] / 10.0);
+ NumericUpDown4.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 3] / 10.0);
+ NumericUpDown5.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 4] / 10.0);
+ NumericUpDown6.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 5] / 10.0);
+ NumericUpDown7.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 6] / 10.0);
+ NumericUpDown8.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 7] / 10.0);
+ NumericUpDown9.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 8] / 10.0);
+ NumericUpDown10.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 9] / 10.0);
+ NumericUpDown11.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 10] / 10.0);
+ NumericUpDown12.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 11] / 10.0);
+ NumericUpDown13.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 12] / 10.0);
+ NumericUpDown14.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 13] / 10.0);
+ NumericUpDown15.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 14] / 10.0);
+ NumericUpDown16.Value = new Decimal(publicva._5ToneDefaultFreqTab[i, 15] / 10.0);
+ }
+
+ public void SetContorl_NumericUpDown_Rang(int Min, int Max)
+ {
+ NumericUpDown1.Minimum = new Decimal(Min);
+ NumericUpDown2.Minimum = new Decimal(Min);
+ NumericUpDown3.Minimum = new Decimal(Min);
+ NumericUpDown4.Minimum = new Decimal(Min);
+ NumericUpDown5.Minimum = new Decimal(Min);
+ NumericUpDown6.Minimum = new Decimal(Min);
+ NumericUpDown7.Minimum = new Decimal(Min);
+ NumericUpDown8.Minimum = new Decimal(Min);
+ NumericUpDown9.Minimum = new Decimal(Min);
+ NumericUpDown10.Minimum = new Decimal(Min);
+ NumericUpDown11.Minimum = new Decimal(Min);
+ NumericUpDown12.Minimum = new Decimal(Min);
+ NumericUpDown13.Minimum = new Decimal(Min);
+ NumericUpDown14.Minimum = new Decimal(Min);
+ NumericUpDown15.Minimum = new Decimal(Min);
+ NumericUpDown16.Minimum = new Decimal(Min);
+ NumericUpDown1.Maximum = new Decimal(Max);
+ NumericUpDown2.Maximum = new Decimal(Max);
+ NumericUpDown3.Maximum = new Decimal(Max);
+ NumericUpDown4.Maximum = new Decimal(Max);
+ NumericUpDown5.Maximum = new Decimal(Max);
+ NumericUpDown6.Maximum = new Decimal(Max);
+ NumericUpDown7.Maximum = new Decimal(Max);
+ NumericUpDown8.Maximum = new Decimal(Max);
+ NumericUpDown9.Maximum = new Decimal(Max);
+ NumericUpDown10.Maximum = new Decimal(Max);
+ NumericUpDown11.Maximum = new Decimal(Max);
+ NumericUpDown12.Maximum = new Decimal(Max);
+ NumericUpDown13.Maximum = new Decimal(Max);
+ NumericUpDown14.Maximum = new Decimal(Max);
+ NumericUpDown15.Maximum = new Decimal(Max);
+ NumericUpDown16.Maximum = new Decimal(Max);
+ }
+
+ public void SetContorl_NumericUpDown_Enable(bool i)
+ {
+ NumericUpDown1.Enabled = i;
+ NumericUpDown2.Enabled = i;
+ NumericUpDown3.Enabled = i;
+ NumericUpDown4.Enabled = i;
+ NumericUpDown5.Enabled = i;
+ NumericUpDown6.Enabled = i;
+ NumericUpDown7.Enabled = i;
+ NumericUpDown8.Enabled = i;
+ NumericUpDown9.Enabled = i;
+ NumericUpDown10.Enabled = i;
+ NumericUpDown11.Enabled = i;
+ NumericUpDown12.Enabled = i;
+ NumericUpDown13.Enabled = i;
+ NumericUpDown14.Enabled = i;
+ NumericUpDown15.Enabled = i;
+ NumericUpDown16.Enabled = i;
+ }
+
+ public void SetContorl_5ToneEncodeMsg(int i)
+ {
+ var num = 2048;
+ if (ComboBox14.FindStringExact(publicva.EEPROM_Byte[checked(num + 0 + i * 16)]
+ .ToString()) != -1)
+ {
+ ComboBox14.Text = Conversions.ToString(publicva.EEPROM_Byte[checked(num + 0 + i * 16)]);
+ CheckBox第一个音扩展.Enabled = true;
+ ComboBox18.Enabled = true;
+ CheckBox第二个音扩展.Enabled = true;
+ }
+ else
+ {
+ ComboBox14.SelectedIndex = 0;
+ CheckBox第一个音扩展.Enabled = false;
+ ComboBox18.Enabled = false;
+ CheckBox第二个音扩展.Enabled = false;
+ publicva.EEPROM_Byte[checked(num + 1 + i * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num + 2 + i * 16)] = 0;
+ publicva.EEPROM_Byte[checked(num + 3 + i * 16)] = 0;
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox第一个音扩展, checked(num + 1 + i * 16), publicva.Bit0, 0);
+ if (ComboBox18.FindStringExact(publicva.EEPROM_Byte[checked(num + 2 + i * 16)]
+ .ToString()) != -1)
+ {
+ ComboBox18.Text = Conversions.ToString(publicva.EEPROM_Byte[checked(num + 2 + i * 16)]);
+ CheckBox第二个音扩展.Enabled = true;
+ }
+ else
+ {
+ ComboBox18.SelectedIndex = 0;
+ CheckBox第二个音扩展.Enabled = false;
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox第二个音扩展, checked(num + 3 + i * 16), publicva.Bit0, 0);
+ if (publicva.EEPROM_Byte[checked(num + 4 + i * 16)] > 8)
+ publicva.EEPROM_Byte[checked(num + 4 + i * 16)] = 0;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox2, checked(num + 4 + i * 16), publicva.AllBit, 0);
+ TextBox1.Text = Strings.RTrim(Encoding.ASCII.GetString(publicva.EEPROM_Byte, checked(num + 6 + i * 16), 10));
+ publicva._5ToneLoaderEncodeMsg = false;
+ }
+
+ public void GetContorl_5ToneEncodeMsg(int i)
+ {
+ var num = 2048;
+ if (ComboBox14.SelectedIndex == 0)
+ {
+ publicva.EEPROM_Byte[checked(num + 0 + i * 16)] = 0;
+ CheckBox第一个音扩展.Enabled = false;
+ ComboBox18.Enabled = false;
+ CheckBox第二个音扩展.Enabled = false;
+ CheckBox第一个音扩展.Checked = false;
+ ComboBox18.SelectedIndex = 0;
+ CheckBox第二个音扩展.Checked = false;
+ }
+ else
+ {
+ publicva.EEPROM_Byte[checked(num + 0 + i * 16)] = Conversions.ToByte(ComboBox14.Text);
+ CheckBox第一个音扩展.Enabled = true;
+ ComboBox18.Enabled = true;
+ CheckBox第二个音扩展.Enabled = true;
+ }
+
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox第一个音扩展, checked(num + 1 + i * 16), publicva.Bit0, 0);
+ if (ComboBox18.SelectedIndex == 0)
+ {
+ publicva.EEPROM_Byte[checked(num + 2 + i * 16)] = 0;
+ CheckBox第二个音扩展.Enabled = false;
+ }
+ else
+ {
+ publicva.EEPROM_Byte[checked(num + 2 + i * 16)] = Conversions.ToByte(ComboBox18.Text);
+ CheckBox第二个音扩展.Enabled = true;
+ }
+
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox第二个音扩展, checked(num + 3 + i * 16), publicva.Bit0, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox2, checked(num + 4 + i * 16), publicva.AllBit, 0);
+ Encoding.ASCII.GetBytes(TextBox1.Text.PadRight(10), 0, 10, publicva.EEPROM_Byte, checked(num + 6 + i * 16));
+ }
+
+ private void NumericUpDown编码_信息码_ValueChanged(object sender, EventArgs e)
+ {
+ try
+ {
+ if (!publicva._5ToneLoader)
+ return;
+ publicva._5ToneLoaderEncodeMsg = true;
+ SetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ private void Button1_Click(object sender, EventArgs e) => NumericUpDown编码_信息码.UpButton();
+
+ private void Button2_Click(object sender, EventArgs e) => NumericUpDown编码_信息码.DownButton();
+
+ public void Clr_5ToneEncodeList(int i)
+ {
+ DataGridView2["DataGridViewComboBoxColumn1", i].Value = "";
+ DataGridView2["DataGridViewComboBoxColumn2", i].Value = "";
+ }
+
+ public void Init_5ToneEncodeList(int i)
+ {
+ DataGridView2["DataGridViewComboBoxColumn2", i].Value = "";
+ }
+
+ public object Get5Tone_Text(int address, int Sum)
+ {
+ var str1 = "";
+ if (Sum > 8)
+ return "";
+ var num = 0;
+ do
+ {
+ var str2 = BitConverter.ToString(publicva.EEPROM_Byte, checked(num + address), 1);
+ str1 += str2.Substring(1, 1);
+ checked
+ {
+ ++num;
+ }
+ }
+ while (num <= 7);
+
+ return Strings.RTrim(str1.Substring(0, Sum));
+ }
+
+ public void Get5Tone_Code(int address, string text)
+ {
+ text = text.PadRight(8, '0');
+ var startIndex = 0;
+ do
+ {
+ var str = text.Substring(startIndex, 1);
+ publicva.EEPROM_Byte[checked(address + startIndex)] = Conversions.ToByte("&h" + str);
+ checked
+ {
+ ++startIndex;
+ }
+ }
+ while (startIndex <= 7);
+ }
+
+ private void NumericUpDown1_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1824;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown1.Value, 10M)), address);
+ }
+
+ private void NumericUpDown2_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1826;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown2.Value, 10M)), address);
+ }
+
+ private void NumericUpDown3_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1828;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown3.Value, 10M)), address);
+ }
+
+ private void NumericUpDown4_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1830;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown4.Value, 10M)), address);
+ }
+
+ private void NumericUpDown5_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1832;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown5.Value, 10M)), address);
+ }
+
+ private void NumericUpDown6_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1834;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown6.Value, 10M)), address);
+ }
+
+ private void NumericUpDown7_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1836;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown7.Value, 10M)), address);
+ }
+
+ private void NumericUpDown8_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1838;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown8.Value, 10M)), address);
+ }
+
+ private void NumericUpDown9_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1840;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown9.Value, 10M)), address);
+ }
+
+ private void NumericUpDown10_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1842;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown10.Value, 10M)), address);
+ }
+
+ private void NumericUpDown11_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1844;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown11.Value, 10M)), address);
+ }
+
+ private void NumericUpDown12_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1846;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown12.Value, 10M)), address);
+ }
+
+ private void NumericUpDown13_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1848;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown13.Value, 10M)), address);
+ }
+
+ private void NumericUpDown14_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1850;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown14.Value, 10M)), address);
+ }
+
+ private void NumericUpDown15_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1852;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown15.Value, 10M)), address);
+ }
+
+ private void NumericUpDown16_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader || DataGridView1.CurrentCell.RowIndex <= 14)
+ return;
+ var address = 1854;
+ MyProject.Forms.MDIParent1.Set_U16To2Byte_L_H(Convert.ToInt32(Decimal.Multiply(NumericUpDown16.Value, 10M)), address);
+ }
+
+ public void SetControl_EncodeListItems(Control object_x)
+ {
+ if (!(object_x is ComboBox))
+ return;
+ ((ComboBox) object_x).Items.Clear();
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ ((ComboBox) object_x).Items.Add("无");
+ else
+ ((ComboBox) object_x).Items.Add("None");
+ var index = 0;
+ do
+ {
+ if (publicva._5ToneEncodeListFlag[index] > 0)
+ ((ComboBox) object_x).Items.Add(checked(index + 1));
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= 31);
+ }
+
+ public void SetControl_DecodeListItems(Control object_x)
+ {
+ if (!(object_x is ComboBox))
+ return;
+ ((ComboBox) object_x).Items.Clear();
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ ((ComboBox) object_x).Items.Add("无");
+ else
+ ((ComboBox) object_x).Items.Add("None");
+ var index = 0;
+ do
+ {
+ if (publicva._5ToneDecodeListFlag[index] > 0)
+ ((ComboBox) object_x).Items.Add(checked(index + 1));
+ checked
+ {
+ ++index;
+ }
+ }
+ while (index <= 15);
+ }
+
+ private void ComboBox14_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ SetContorl_Items_5ToneDecode();
+ }
+
+ private void ComboBox18_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox2_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ }
+
+ private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsLetterOrDigit(e.KeyChar) | e.KeyChar == '\b' | char.IsPunctuation(e.KeyChar))
+ e.Handled = false;
+ else
+ e.Handled = true;
+ }
+
+ private void TextBox1_LostFocus(object sender, EventArgs e)
+ {
+ try
+ {
+ GetContorl_5ToneEncodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown编码_信息码.Value, 1M)));
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ public void SetComboBoxControl_Items_5Tone_EncodeList(
+ Control object_x,
+ int address,
+ int FramSum,
+ int sum,
+ int Frame,
+ int ByteIndex)
+ {
+ var flag = true;
+ var text = ((ComboBox) object_x).Text;
+ if (object_x is ComboBox)
+ {
+ ((ComboBox) object_x).Items.Clear();
+ if (Operators.CompareString(publicva.Language, "zh-CN", false) == 0)
+ ((ComboBox) object_x).Items.Add("无");
+ else
+ ((ComboBox) object_x).Items.Add("OFF");
+ var num1 = checked(FramSum - 1);
+ var num2 = 0;
+ while (num2 <= num1)
+ {
+ if (publicva.EEPROM_Byte[checked(address + num2 * Frame + ByteIndex)] != 0 &
+ publicva.EEPROM_Byte[checked(address + num2 * Frame + ByteIndex)] < sum)
+ {
+ ((ComboBox) object_x).Items.Add(checked(num2 + 1));
+ flag = false;
+ }
+
+ checked
+ {
+ ++num2;
+ }
+ }
+ }
+
+ if (flag)
+ ((ComboBox) object_x).SelectedIndex = 0;
+ else if (-1 == ((ComboBox) object_x).FindStringExact(text))
+ ((ComboBox) object_x).SelectedIndex = 0;
+ else
+ ((ComboBox) object_x).Text = text;
+ }
+
+ public void SetContorl_Items_5ToneDecode()
+ {
+ SetComboBoxControl_Items_5Tone_EncodeList(ComboBox8, 2048, 32, 32, 16, 0);
+ }
+
+ public void SetContorl_5ToneDecodeMsg(int i)
+ {
+ var num = 3072;
+ if (publicva.EEPROM_Byte[checked(num + 16 + i * 32)] == 0)
+ {
+ TextBox3.Text = "";
+ ComboBox6.SelectedIndex = 0;
+ TextBox3.Enabled = false;
+ ComboBox5.Enabled = false;
+ publicva.EEPROM_Byte[checked(num + 17 + i * 32)] = 0;
+ }
+ else
+ {
+ TextBox3.Text = Conversions.ToString(Get5Tone_Text(checked(num + 0 + i * 32), publicva.EEPROM_Byte[checked(num + 16 + i * 32)]));
+ ComboBox6.SelectedIndex = 1;
+ TextBox3.Enabled = true;
+ ComboBox5.Enabled = true;
+ }
+
+ if (publicva.EEPROM_Byte[checked(num + 17 + i * 32)] == 0)
+ {
+ TextBox4.Text = "";
+ ComboBox5.SelectedIndex = 0;
+ TextBox4.Enabled = false;
+ }
+ else
+ {
+ TextBox4.Text = Conversions.ToString(Get5Tone_Text(checked(num + 8 + i * 32), publicva.EEPROM_Byte[checked(num + 17 + i * 32)]));
+ ComboBox5.SelectedIndex = 1;
+ TextBox4.Enabled = true;
+ }
+
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox7, checked(num + 18 + i * 32),
+ (byte) (publicva.Bit0 | publicva.Bit1 | publicva.Bit2 | publicva.Bit3), 0);
+ if (publicva.EEPROM_Byte[checked(num + 19 + i * 32)] > 2)
+ publicva.EEPROM_Byte[checked(num + 19 + i * 32)] = 0;
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(ComboBox4, checked(num + 19 + i * 32), (byte) (publicva.Bit0 | publicva.Bit1), 0);
+ if (ComboBox8.FindStringExact(publicva.EEPROM_Byte[checked(num + 20 + i * 32)]
+ .ToString()) != -1)
+ {
+ ComboBox8.Text = Conversions.ToString(publicva.EEPROM_Byte[checked(num + 20 + i * 32)]);
+ }
+ else
+ {
+ ComboBox8.SelectedIndex = 0;
+ publicva.EEPROM_Byte[checked(num + 20 + i * 32)] = 0;
+ }
+
+ if (ComboBox9.FindStringExact(publicva.EEPROM_Byte[checked(num + 21 + i * 32)]
+ .ToString()) != -1)
+ {
+ ComboBox9.Text = Conversions.ToString(publicva.EEPROM_Byte[checked(num + 21 + i * 32)]);
+ }
+ else
+ {
+ ComboBox9.SelectedIndex = 0;
+ publicva.EEPROM_Byte[checked(num + 21 + i * 32)] = 0;
+ }
+
+ if (ComboBox10.FindStringExact(publicva.EEPROM_Byte[checked(num + 22 + i * 32)]
+ .ToString()) != -1)
+ {
+ ComboBox10.Text = Conversions.ToString(publicva.EEPROM_Byte[checked(num + 22 + i * 32)]);
+ }
+ else
+ {
+ ComboBox10.SelectedIndex = 0;
+ publicva.EEPROM_Byte[checked(num + 22 + i * 32)] = 0;
+ }
+ }
+
+ public void GetContorl_5ToneDecodeMsg(int i)
+ {
+ var num = 3072;
+ if (ComboBox6.SelectedIndex == 0)
+ {
+ TextBox3.Text = "";
+ TextBox4.Text = "";
+ ComboBox5.SelectedIndex = 0;
+ TextBox3.Enabled = false;
+ TextBox4.Enabled = false;
+ ComboBox5.Enabled = false;
+ publicva._5ToneDecodeListFlag[i] = 0;
+ }
+ else
+ {
+ TextBox3.Enabled = true;
+ ComboBox5.Enabled = true;
+ publicva._5ToneDecodeListFlag[i] = 1;
+ }
+
+ if (ComboBox5.SelectedIndex == 0)
+ {
+ TextBox4.Text = "";
+ TextBox4.Enabled = false;
+ }
+ else
+ TextBox4.Enabled = true;
+
+ Get5Tone_Code(checked(num + 0 + i * 32), TextBox3.Text);
+ Get5Tone_Code(checked(num + 8 + i * 32), TextBox4.Text);
+ publicva.EEPROM_Byte[checked(num + 16 + i * 32)] = checked((byte) TextBox3.Text.Length);
+ publicva.EEPROM_Byte[checked(num + 17 + i * 32)] = checked((byte) TextBox4.Text.Length);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox7, checked(num + 18 + i * 32), publicva.AllBit, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(ComboBox4, checked(num + 19 + i * 32), publicva.AllBit, 0);
+ if (ComboBox8.SelectedIndex == 0)
+ {
+ publicva.EEPROM_Byte[checked(num + 20 + i * 32)] = 0;
+ }
+ else
+ {
+ try
+ {
+ publicva.EEPROM_Byte[checked(num + 20 + i * 32)] = Conversions.ToByte(ComboBox8.Text);
+ }
+ catch (Exception ex)
+ {
+ ProjectData.SetProjectError(ex);
+ publicva.EEPROM_Byte[checked(num + 20 + i * 32)] = 0;
+ ProjectData.ClearProjectError();
+ }
+ }
+
+ publicva.EEPROM_Byte[checked(num + 21 + i * 32)] = !(ComboBox9.FindString(ComboBox9.Text) == -1 | ComboBox9.SelectedIndex == 0)
+ ? Conversions.ToByte(ComboBox9.Text)
+ : (byte) 0;
+ if (ComboBox10.FindString(ComboBox10.Text) == -1 | ComboBox10.SelectedIndex == 0)
+ publicva.EEPROM_Byte[checked(num + 22 + i * 32)] = 0;
+ else
+ publicva.EEPROM_Byte[checked(num + 22 + i * 32)] = Conversions.ToByte(ComboBox10.Text);
+ }
+
+ private void ComboBox7_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox6_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ SetControl_DecodeListItems(ComboBox13);
+ SetControl_DecodeListItems(ComboBox17);
+ SetControl_DecodeListItems(ComboBox16);
+ SetControl_DecodeListItems(ComboBox15);
+ SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox5_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ if (Operators.CompareString(TextBox3.Text, "", false) == 0)
+ ComboBox5.SelectedIndex = 0;
+ else
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void TextBox3_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), nameof(e), false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
+ {
+ if (char.IsLower(e.KeyChar))
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ e.Handled = false;
+ }
+ else
+ e.Handled = true;
+ }
+
+ private void TextBox3_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void TextBox4_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), nameof(e), false) == 0 |
+ Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
+ {
+ if (char.IsLower(e.KeyChar))
+ e.KeyChar = char.ToUpper(e.KeyChar);
+ e.Handled = false;
+ }
+ else
+ e.Handled = true;
+ }
+
+ private void TextBox4_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox4_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox8_MouseClick(object sender, MouseEventArgs e)
+ {
+ SetContorl_Items_5ToneDecode();
+ }
+
+ private void ComboBox8_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox9_MouseClick(object sender, MouseEventArgs e)
+ {
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
+ }
+
+ private void ComboBox9_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void ComboBox10_MouseClick(object sender, MouseEventArgs e)
+ {
+ MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
+ }
+
+ private void ComboBox10_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ private void Button4_Click(object sender, EventArgs e)
+ {
+ NumericUpDown解码_信息码.Focus();
+ NumericUpDown解码_信息码.UpButton();
+ }
+
+ private void Button3_Click(object sender, EventArgs e)
+ {
+ NumericUpDown解码_信息码.Focus();
+ NumericUpDown解码_信息码.DownButton();
+ }
+
+ private void NumericUpDown解码_信息码_ValueChanged(object sender, EventArgs e)
+ {
+ if (!NumericUpDown解码_信息码.Focused)
+ return;
+ SetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
+ }
+
+ public void SetContorl_5ToneParameterMsg(int i)
+ {
+ var num = 3584;
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox11, checked(num + 1 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox12, checked(num + 2 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox13, checked(num + 6 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox17, checked(num + 7 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox16, checked(num + 8 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_Text(ComboBox15, checked(num + 9 + i * 16));
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox1, checked(num + 10 + i * 16), publicva.Bit0, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox2, checked(num + 10 + i * 16), publicva.Bit1, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox3, checked(num + 10 + i * 16), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox4, checked(num + 10 + i * 16), publicva.Bit3, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox5, checked(num + 10 + i * 16), publicva.Bit4, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox6, checked(num + 10 + i * 16), publicva.Bit5, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox7, checked(num + 10 + i * 16), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox8, checked(num + 10 + i * 16), publicva.Bit7, 0);
+ }
+
+ public void GetContorl_5ToneParameterMsg(int i)
+ {
+ var num = 3584;
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox11, checked(num + 1 + i * 16));
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox12, checked(num + 2 + i * 16));
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox13, checked(num + 6 + i * 16));
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox17, checked(num + 7 + i * 16));
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox16, checked(num + 8 + i * 16));
+ MyProject.Forms.MDIParent1.GetContol_Data(ComboBox15, checked(num + 9 + i * 16));
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox1, checked(num + 10 + i * 16), publicva.Bit0, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox2, checked(num + 10 + i * 16), publicva.Bit1, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox3, checked(num + 10 + i * 16), publicva.Bit2, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox4, checked(num + 10 + i * 16), publicva.Bit3, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox5, checked(num + 10 + i * 16), publicva.Bit4, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox6, checked(num + 10 + i * 16), publicva.Bit5, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox7, checked(num + 10 + i * 16), publicva.Bit6, 0);
+ MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox8, checked(num + 10 + i * 16), publicva.Bit7, 0);
+ }
+
+ private void NumericUpDown27_ValueChanged(object sender, EventArgs e)
+ {
+ if (!publicva._5ToneLoader)
+ return;
+ SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void Button6_Click(object sender, EventArgs e) => NumericUpDown27.UpButton();
+
+ private void Button5_Click(object sender, EventArgs e) => NumericUpDown27.DownButton();
+
+ private void ComboBox11_MouseClick(object sender, MouseEventArgs e)
+ {
+ SetComboBoxControl_Items_5Tone_EncodeList(ComboBox11, 2048, 32, 32, 16, 0);
+ }
+
+ private void ComboBox11_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox12_MouseClick(object sender, MouseEventArgs e)
+ {
+ SetComboBoxControl_Items_5Tone_EncodeList(ComboBox12, 2048, 32, 32, 16, 0);
+ }
+
+ private void ComboBox12_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox13_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox17_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox16_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void ComboBox15_SelectionChangeCommitted(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox1_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox2_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox3_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox4_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox5_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox6_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox7_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void CheckBox8_LostFocus(object sender, EventArgs e)
+ {
+ GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
+ }
+
+ private void Button9_Click(object sender, EventArgs e) => Close();
}
-
- private void ComboBox7_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void ComboBox6_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- SetControl_DecodeListItems(ComboBox13);
- SetControl_DecodeListItems(ComboBox17);
- SetControl_DecodeListItems(ComboBox16);
- SetControl_DecodeListItems(ComboBox15);
- SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox5_SelectionChangeCommitted(object sender, EventArgs e)
- {
- if (Operators.CompareString(TextBox3.Text, "", false) == 0)
- ComboBox5.SelectedIndex = 0;
- else
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void TextBox3_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), nameof (e), false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
- {
- if (char.IsLower(e.KeyChar))
- e.KeyChar = char.ToUpper(e.KeyChar);
- e.Handled = false;
- }
- else
- e.Handled = true;
- }
-
- private void TextBox3_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void TextBox4_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (char.IsDigit(e.KeyChar) | e.KeyChar == '\b' | Operators.CompareString(Conversions.ToString(e.KeyChar), "A", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "B", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "C", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "D", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "E", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "F", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "a", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "b", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "c", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "d", false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), nameof (e), false) == 0 | Operators.CompareString(Conversions.ToString(e.KeyChar), "f", false) == 0)
- {
- if (char.IsLower(e.KeyChar))
- e.KeyChar = char.ToUpper(e.KeyChar);
- e.Handled = false;
- }
- else
- e.Handled = true;
- }
-
- private void TextBox4_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void ComboBox4_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void ComboBox8_MouseClick(object sender, MouseEventArgs e)
- {
- SetContorl_Items_5ToneDecode();
- }
-
- private void ComboBox8_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void ComboBox9_MouseClick(object sender, MouseEventArgs e)
- {
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox9);
- }
-
- private void ComboBox9_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void ComboBox10_MouseClick(object sender, MouseEventArgs e)
- {
- MyProject.Forms._2ToneForm.SetControl_BeepItems(ComboBox10);
- }
-
- private void ComboBox10_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- private void Button4_Click(object sender, EventArgs e)
- {
- NumericUpDown解码_信息码.Focus();
- NumericUpDown解码_信息码.UpButton();
- }
-
- private void Button3_Click(object sender, EventArgs e)
- {
- NumericUpDown解码_信息码.Focus();
- NumericUpDown解码_信息码.DownButton();
- }
-
- private void NumericUpDown解码_信息码_ValueChanged(object sender, EventArgs e)
- {
- if (!NumericUpDown解码_信息码.Focused)
- return;
- SetContorl_5ToneDecodeMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown解码_信息码.Value, 1M)));
- }
-
- public void SetContorl_5ToneParameterMsg(int i)
- {
- var num = 3584;
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox11, checked (num + 1 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox12, checked (num + 2 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox13, checked (num + 6 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox17, checked (num + 7 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox16, checked (num + 8 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_Text(ComboBox15, checked (num + 9 + i * 16));
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox1, checked (num + 10 + i * 16), publicva.Bit0, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox2, checked (num + 10 + i * 16), publicva.Bit1, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox3, checked (num + 10 + i * 16), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox4, checked (num + 10 + i * 16), publicva.Bit3, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox5, checked (num + 10 + i * 16), publicva.Bit4, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox6, checked (num + 10 + i * 16), publicva.Bit5, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox7, checked (num + 10 + i * 16), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.SetControl_U8_Data(CheckBox8, checked (num + 10 + i * 16), publicva.Bit7, 0);
- }
-
- public void GetContorl_5ToneParameterMsg(int i)
- {
- var num = 3584;
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox11, checked (num + 1 + i * 16));
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox12, checked (num + 2 + i * 16));
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox13, checked (num + 6 + i * 16));
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox17, checked (num + 7 + i * 16));
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox16, checked (num + 8 + i * 16));
- MyProject.Forms.MDIParent1.GetContol_Data(ComboBox15, checked (num + 9 + i * 16));
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox1, checked (num + 10 + i * 16), publicva.Bit0, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox2, checked (num + 10 + i * 16), publicva.Bit1, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox3, checked (num + 10 + i * 16), publicva.Bit2, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox4, checked (num + 10 + i * 16), publicva.Bit3, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox5, checked (num + 10 + i * 16), publicva.Bit4, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox6, checked (num + 10 + i * 16), publicva.Bit5, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox7, checked (num + 10 + i * 16), publicva.Bit6, 0);
- MyProject.Forms.MDIParent1.GetControl_U8_Data(CheckBox8, checked (num + 10 + i * 16), publicva.Bit7, 0);
- }
-
- private void NumericUpDown27_ValueChanged(object sender, EventArgs e)
- {
- if (!publicva._5ToneLoader)
- return;
- SetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void Button6_Click(object sender, EventArgs e) => NumericUpDown27.UpButton();
-
- private void Button5_Click(object sender, EventArgs e) => NumericUpDown27.DownButton();
-
- private void ComboBox11_MouseClick(object sender, MouseEventArgs e)
- {
- SetComboBoxControl_Items_5Tone_EncodeList(ComboBox11, 2048, 32, 32, 16, 0);
- }
-
- private void ComboBox11_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox12_MouseClick(object sender, MouseEventArgs e)
- {
- SetComboBoxControl_Items_5Tone_EncodeList(ComboBox12, 2048, 32, 32, 16, 0);
- }
-
- private void ComboBox12_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox13_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox17_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox16_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void ComboBox15_SelectionChangeCommitted(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox1_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox2_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox3_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox4_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox5_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox6_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox7_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void CheckBox8_LostFocus(object sender, EventArgs e)
- {
- GetContorl_5ToneParameterMsg(Convert.ToInt32(Decimal.Subtract(NumericUpDown27.Value, 1M)));
- }
-
- private void Button9_Click(object sender, EventArgs e) => Close();
- }
-}
+}
\ No newline at end of file
diff --git a/HPG-68D/default_data.hpg b/HPG-68D/default_data.hpg
new file mode 100644
index 0000000..b768032
--- /dev/null
+++ b/HPG-68D/default_data.hpg
@@ -0,0 +1,32768 @@
+48
+52
+4B
+2D
+32
+38
+32
+30
+48
+00
+01
+83
+CC
+CC
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+85
+CF
+00
+C0
+80
+09
+01
+00
+85
+CF
+00
+C0
+80
+09
+01
+00
+2D
+31
+01
+80
+BA
+8C
+01
+00
+2D
+31
+01
+80
+BA
+8C
+01
+80
+C3
+C9
+01
+C0
+0E
+16
+02
+80
+C3
+C9
+01
+C0
+0E
+16
+02
+C0
+0E
+16
+02
+C0
+17
+53
+02
+C0
+0E
+16
+02
+C0
+17
+53
+02
+00
+5A
+62
+02
+C0
+29
+CD
+02
+00
+5A
+62
+02
+C0
+29
+CD
+02
+C0
+29
+CD
+02
+00
+75
+19
+03
+C0
+29
+CD
+02
+00
+75
+19
+03
+40
+B5
+64
+00
+00
+47
+86
+00
+40
+B5
+64
+00
+00
+47
+86
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+79
+18
+D6
+4F
+01
+00
+04
+00
+00
+03
+00
+00
+02
+00
+00
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+91
+0C
+41
+24
+0A
+1E
+00
+00
+54
+6F
+6E
+65
+20
+31
+20
+20
+30
+34
+5B
+72
+0A
+1E
+00
+00
+54
+6F
+6E
+65
+20
+32
+20
+20
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+0F
+FF
+FF
+FF
+05
+FF
+08
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+5D
+C0
+29
+68
+2D
+50
+31
+9C
+36
+B0
+3B
+C4
+41
+3C
+47
+7C
+4E
+20
+55
+F0
+6D
+60
+1F
+A4
+25
+E4
+22
+92
+65
+90
+24
+54
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+64
+0A
+0E
+FF
+46
+0A
+0E
+FF
+64
+0A
+0E
+FF
+28
+0A
+0E
+FF
+64
+0A
+0E
+FF
+46
+0A
+0E
+FF
+21
+0A
+0E
+FF
+28
+0A
+0E
+FF
+46
+0A
+0E
+FF
+46
+0A
+0E
+FF
+0A
+0A
+0A
+64
+64
+01
+00
+FF
+0F
+FF
+FF
+FF
+64
+FF
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+01
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+FF
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+01
+02
+03
+04
+05
+06
+07
+08
+08
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+02
+03
+04
+05
+06
+07
+08
+00
+00
+00
+00
+00
+00
+00
+00
+08
+00
+00
+00
+00
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+FF
+FF
+FF
+01
+02
+03
+04
+15
+FF
+FF
+FF
+FF
+FF
+01
+01
+00
+03
+00
+00
+00
+00
+24
+05
+14
+00
+00
+02
+04
+20
+06
+00
+00
+00
+00
+0E
+00
+02
+14
+01
+02
+03
+04
+00
+02
+85
+00
+01
+00
+00
+FF
+FF
+14
+1E
+1E
+1E
+0A
+FF
+00
+00
+FF
+00
+0A
+00
+64
+00
+00
+0F
+00
+80
+02
+0F
+FF
+FF
+FF
+FF
+FF
+FF
+00
+08
+00
+00
+01
+0A
+05
+08
+00
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+02
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+0A
+0A
+0A
+00
+07
+09
+00
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+02
+00
+00
+00
+02
+00
+02
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+02
+00
+00
+00
+02
+00
+02
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+01
+03
+28
+0A
+00
+0A
+32
+0A
+00
+0A
+3C
+0A
+00
+0A
+46
+0A
+00
+0A
+50
+0A
+00
+0A
+5A
+0A
+00
+0A
+64
+0A
+00
+0A
+FF
+FF
+01
+03
+28
+0A
+64
+0A
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+28
+0A
+64
+0A
+28
+0A
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+29
+0A
+64
+0A
+29
+0A
+64
+0A
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+01
+03
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+10
+15
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+02
+17
+00
+02
+10
+07
+00
+00
+11
+85
+00
+00
+00
+00
+00
+00
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+81
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+FF
+FF
+81
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+81
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+72
+12
+00
+03
+E8
+06
+00
+00
+40
+00
+00
+00
+00
+00
+00
+01
+01
+00
+00
+00
+00
+00
+00
+00
+03
+2D
+2D
+2D
+2D
+2D
+2D
+01
+57
+C0
+00
+03
+E8
+06
+00
+00
+40
+00
+00
+00
+00
+00
+04
+01
+01
+00
+00
+00
+00
+00
+00
+00
+03
+2D
+2D
+2D
+2D
+2D
+2D
+00
+72
+12
+00
+03
+E8
+06
+00
+00
+40
+00
+00
+00
+00
+00
+00
+01
+01
+00
+00
+00
+00
+00
+00
+00
+03
+2D
+2D
+2D
+2D
+2D
+2D
+01
+57
+C0
+00
+03
+E8
+06
+00
+00
+40
+00
+00
+00
+00
+00
+04
+01
+01
+00
+00
+00
+00
+00
+00
+00
+03
+2D
+2D
+2D
+2D
+2D
+2D
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+FF
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
diff --git a/HPG-68D/publicva.cs b/HPG-68D/publicva.cs
index 10d4b63..c3e79f1 100644
--- a/HPG-68D/publicva.cs
+++ b/HPG-68D/publicva.cs
@@ -47,11 +47,11 @@ namespace HPG_68D
3000000U
}
};
- public static string TypeName = "HPG-68D";
- public static string Language = "zh-CN";
+ public static readonly string TypeName = "HPG-68D";
+ public static string Language = "en-US";
public const int C_Min = 0;
public const int C_Max = 1;
- public static uint[,] RxFreqRang = new uint[7, 2]
+ public static readonly uint[,] RxFreqRang = new uint[7, 2]
{
{
13600000U,