Commit 42831dfa authored by 周磊's avatar 周磊

1.版本变更至2.0.3

2.选项新增"温度精度":保留一位,保留两位.重启生效,影响界面的温度值小数点显示
parent e66588c8
...@@ -1037,9 +1037,15 @@ namespace GcDevicePc ...@@ -1037,9 +1037,15 @@ namespace GcDevicePc
} }
else else
{ {
switch (globaldata.m_pcbuffer.gcpcinfo.pcworkinfo.TempAccuracy)
{
case "保留一位": return data.ToString("#0.0");
case "保留两位": return data.ToString("#0.00");
default:
return data.ToString("#0.0"); return data.ToString("#0.0");
} }
} }
}
double fDetvalueold = 0; double fDetvalueold = 0;
double iDetvalueold = 0; double iDetvalueold = 0;
...@@ -1932,7 +1938,7 @@ namespace GcDevicePc ...@@ -1932,7 +1938,7 @@ namespace GcDevicePc
this.datalist.Items.Add(tempshow); this.datalist.Items.Add(tempshow);
tempshow = new ListViewItem(); tempshow = new ListViewItem();
tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric"; tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric";
tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.fDetStatue.ToString()+"mA"); tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.fDetStatue.ToString() + "mA");
this.datalist.Items.Add(tempshow); this.datalist.Items.Add(tempshow);
} }
else if (CProfileDevice.m_DevParam.syspara.u16DetFrontType == 1) else if (CProfileDevice.m_DevParam.syspara.u16DetFrontType == 1)
...@@ -2125,7 +2131,7 @@ namespace GcDevicePc ...@@ -2125,7 +2131,7 @@ namespace GcDevicePc
tempshow = new ListViewItem(); tempshow = new ListViewItem();
tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric(mA)"; tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric(mA)";
tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.iDetStatue.ToString()+"mA"); tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.iDetStatue.ToString() + "mA");
this.datalist.Items.Add(tempshow); this.datalist.Items.Add(tempshow);
} }
//else if ((CProfileDevice.m_DevParam.syspara.u16DetInterType == 1 || //else if ((CProfileDevice.m_DevParam.syspara.u16DetInterType == 1 ||
...@@ -2306,7 +2312,7 @@ namespace GcDevicePc ...@@ -2306,7 +2312,7 @@ namespace GcDevicePc
tempshow = new ListViewItem(); tempshow = new ListViewItem();
tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric(mA)"; tempshow.Text = bEnglishLanguage == false ? "桥流值" : "Electric(mA)";
tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.bDetStatue.ToString()+"mA"); tempshow.SubItems.Add(globaldata.m_dpbuffer.ShowList.showDet.bDetStatue.ToString() + "mA");
this.datalist.Items.Add(tempshow); this.datalist.Items.Add(tempshow);
} }
//else if ((CProfileDevice.m_DevParam.syspara.u16DetBehindType == 1 || //else if ((CProfileDevice.m_DevParam.syspara.u16DetBehindType == 1 ||
......
...@@ -93,6 +93,10 @@ namespace GcDevicePc.GCBuffer ...@@ -93,6 +93,10 @@ namespace GcDevicePc.GCBuffer
public string hmimac; // public string hmimac; //
public bool hmi_log; // public bool hmi_log; //
public string sendType; public string sendType;
/// <summary>
/// 温度精度
/// </summary>
public string TempAccuracy;
} }
public struct ModuleInfo public struct ModuleInfo
...@@ -162,14 +166,14 @@ namespace GcDevicePc.GCBuffer ...@@ -162,14 +166,14 @@ namespace GcDevicePc.GCBuffer
gcpcinfo.pcworkinfo.system_Statue = false; gcpcinfo.pcworkinfo.system_Statue = false;
gcpcinfo.pcworkinfo.work_Statue = 0; gcpcinfo.pcworkinfo.work_Statue = 0;
gcpcinfo.pcworkinfo.TempAccuracy="保留一位";
gcpcinfo.pcworkinfo.info_log = false; gcpcinfo.pcworkinfo.info_log = false;
gcpcinfo.pcworkinfo.error_log = false; gcpcinfo.pcworkinfo.error_log = false;
gcpcinfo.pcworkinfo.hmi_log = false; gcpcinfo.pcworkinfo.hmi_log = false;
gcpcinfo.pcworkinfo.sendtoZb = false; gcpcinfo.pcworkinfo.sendtoZb = false;
gcpcinfo.pcworkinfo.sendtohw = false; gcpcinfo.pcworkinfo.sendtohw = false;
gcpcinfo.pcworkinfo.sendtoSP = false; gcpcinfo.pcworkinfo.sendtoSP = false;
gcpcinfo.pcworkinfo.sendType=null; gcpcinfo.pcworkinfo.sendType = null;
gcpcinfo.moduleinfo.ip = ""; gcpcinfo.moduleinfo.ip = "";
gcpcinfo.outputinfo.port = 0; gcpcinfo.outputinfo.port = 0;
...@@ -194,20 +198,20 @@ namespace GcDevicePc.GCBuffer ...@@ -194,20 +198,20 @@ namespace GcDevicePc.GCBuffer
int opensys = ini.ReadInteger("StartUp", "打开系统"); int opensys = ini.ReadInteger("StartUp", "打开系统");
int runtype = ini.ReadInteger("StartUp", "运行类型"); int runtype = ini.ReadInteger("StartUp", "运行类型");
gcpcinfo.pcworkinfo.TempAccuracy= ini.ReadString("StartUp", "温度精度");
string strpath=ini.ReadString("DataFolder", "历史数据"); string strpath = ini.ReadString("DataFolder", "历史数据");
if (strpath=="") if (strpath == "")
{ {
string strnewpath=Path.Combine(Path.GetDirectoryName(System.Windows.Forms.Application.StartupPath), "GC_Config\\GC_Set\\Historical Data"); string strnewpath = Path.Combine(Path.GetDirectoryName(System.Windows.Forms.Application.StartupPath), "GC_Config\\GC_Set\\Historical Data");
gcpcinfo.pcfolderinfo.DataFolder =strnewpath ; gcpcinfo.pcfolderinfo.DataFolder = strnewpath;
ini.WriteString("DataFolder", "历史数据",strnewpath); ini.WriteString("DataFolder", "历史数据", strnewpath);
} }
else else
{ {
gcpcinfo.pcfolderinfo.DataFolder =strpath ; gcpcinfo.pcfolderinfo.DataFolder = strpath;
} }
gcpcinfo.pcfolderinfo.FileClassification=ini.ReadString("DataFolder", "分级文件夹"); gcpcinfo.pcfolderinfo.FileClassification = ini.ReadString("DataFolder", "分级文件夹");
int Version = ini.ReadInteger("Version", "VersionType"); int Version = ini.ReadInteger("Version", "VersionType");
...@@ -216,7 +220,7 @@ namespace GcDevicePc.GCBuffer ...@@ -216,7 +220,7 @@ namespace GcDevicePc.GCBuffer
int dsf = ini.ReadInteger("SendData", "Thirdparty"); int dsf = ini.ReadInteger("SendData", "Thirdparty");
string strSendType=ini.ReadString("SendData","SendType"); string strSendType = ini.ReadString("SendData", "SendType");
int dw = ini.ReadInteger("SendData", "Foreign"); int dw = ini.ReadInteger("SendData", "Foreign");
int sdzb = ini.ReadInteger("SaveData", "ZBSaveData"); int sdzb = ini.ReadInteger("SaveData", "ZBSaveData");
string apname = ini.ReadString("Version", "AppName"); string apname = ini.ReadString("Version", "AppName");
...@@ -250,7 +254,7 @@ namespace GcDevicePc.GCBuffer ...@@ -250,7 +254,7 @@ namespace GcDevicePc.GCBuffer
{ {
gcpcinfo.pcworkinfo.sendtoZb = true; gcpcinfo.pcworkinfo.sendtoZb = true;
} }
else if(dsf == 2) else if (dsf == 2)
{ {
gcpcinfo.pcworkinfo.sendtoSP = true; gcpcinfo.pcworkinfo.sendtoSP = true;
} }
...@@ -261,13 +265,13 @@ namespace GcDevicePc.GCBuffer ...@@ -261,13 +265,13 @@ namespace GcDevicePc.GCBuffer
gcpcinfo.pcworkinfo.sendtoSP = false; gcpcinfo.pcworkinfo.sendtoSP = false;
} }
if (strSendType=="Routine") if (strSendType == "Routine")
{ {
gcpcinfo.pcworkinfo.sendType="Routine"; gcpcinfo.pcworkinfo.sendType = "Routine";
} }
else if (strSendType=="KeepSending") else if (strSendType == "KeepSending")
{ {
gcpcinfo.pcworkinfo.sendType="KeepSending"; gcpcinfo.pcworkinfo.sendType = "KeepSending";
} }
//string wtd624x_ip = ini.ReadString("WTD624X", "IP"); //string wtd624x_ip = ini.ReadString("WTD624X", "IP");
//string wtd624x_mask = ini.ReadString("WTD624X", "MASK"); //string wtd624x_mask = ini.ReadString("WTD624X", "MASK");
...@@ -338,7 +342,7 @@ namespace GcDevicePc.GCBuffer ...@@ -338,7 +342,7 @@ namespace GcDevicePc.GCBuffer
gcpcinfo.pcworkinfo.sendtoSP = false; gcpcinfo.pcworkinfo.sendtoSP = false;
gcpcinfo.pcworkinfo.sendType = null; gcpcinfo.pcworkinfo.sendType = null;
gcpcinfo.pcfolderinfo.DataFolder = null; gcpcinfo.pcfolderinfo.DataFolder = null;
globaldata.m_pcbuffer.gcpcinfo.pcfolderinfo.FileClassification=null; globaldata.m_pcbuffer.gcpcinfo.pcfolderinfo.FileClassification = null;
} }
} }
catch (Exception e) catch (Exception e)
......
...@@ -110,6 +110,9 @@ ...@@ -110,6 +110,9 @@
<Reference Include="AutoClosingMessageBox, Version=1.0.0.2, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="AutoClosingMessageBox, Version=1.0.0.2, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\AutoClosingMessageBox.1.0.0.2\lib\net40\AutoClosingMessageBox.dll</HintPath> <HintPath>..\packages\AutoClosingMessageBox.1.0.0.2\lib\net40\AutoClosingMessageBox.dll</HintPath>
</Reference> </Reference>
<Reference Include="BouncyCastle.Crypto, Version=1.8.9.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\Portable.BouncyCastle.1.8.9\lib\net40\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="C1.C1DataExtender.2, Version=2.0.20113.81, Culture=neutral, PublicKeyToken=7c4b5683f80b910e, processorArchitecture=MSIL" /> <Reference Include="C1.C1DataExtender.2, Version=2.0.20113.81, Culture=neutral, PublicKeyToken=7c4b5683f80b910e, processorArchitecture=MSIL" />
<Reference Include="C1.Win.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=944ae1ea0e47ca04" /> <Reference Include="C1.Win.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=944ae1ea0e47ca04" />
<Reference Include="C1.Win.C1Chart.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=a22e16972c085838, processorArchitecture=MSIL" /> <Reference Include="C1.Win.C1Chart.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=a22e16972c085838, processorArchitecture=MSIL" />
...@@ -117,6 +120,9 @@ ...@@ -117,6 +120,9 @@
<Reference Include="C1.Win.C1Command.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=e808566f358766d8" /> <Reference Include="C1.Win.C1Command.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=e808566f358766d8" />
<Reference Include="C1.Win.C1Command.4, Version=4.0.20201.416, Culture=neutral, PublicKeyToken=e808566f358766d8, processorArchitecture=MSIL" /> <Reference Include="C1.Win.C1Command.4, Version=4.0.20201.416, Culture=neutral, PublicKeyToken=e808566f358766d8, processorArchitecture=MSIL" />
<Reference Include="C1.Win.C1Input.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=7e7ff60f0c214f9a, processorArchitecture=MSIL" /> <Reference Include="C1.Win.C1Input.2, Version=2.0.20201.416, Culture=neutral, PublicKeyToken=7e7ff60f0c214f9a, processorArchitecture=MSIL" />
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.3.11, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.1.3.3\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
<Reference Include="Ini.Net, Version=1.0.5531.18665, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Ini.Net, Version=1.0.5531.18665, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\ini.net.1.1.0\lib\net20\Ini.Net.dll</HintPath> <HintPath>..\packages\ini.net.1.1.0\lib\net20\Ini.Net.dll</HintPath>
</Reference> </Reference>
...@@ -129,6 +135,18 @@ ...@@ -129,6 +135,18 @@
<Reference Include="NModbus4, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="NModbus4, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NModbus4.2.1.0\lib\net40\NModbus4.dll</HintPath> <HintPath>..\packages\NModbus4.2.1.0\lib\net40\NModbus4.dll</HintPath>
</Reference> </Reference>
<Reference Include="NPOI, Version=2.5.6.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.5.6\lib\net45\NPOI.dll</HintPath>
</Reference>
<Reference Include="NPOI.OOXML, Version=2.5.6.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.5.6\lib\net45\NPOI.OOXML.dll</HintPath>
</Reference>
<Reference Include="NPOI.OpenXml4Net, Version=2.5.6.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.5.6\lib\net45\NPOI.OpenXml4Net.dll</HintPath>
</Reference>
<Reference Include="NPOI.OpenXmlFormats, Version=2.5.6.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.5.6\lib\net45\NPOI.OpenXmlFormats.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework" /> <Reference Include="PresentationFramework" />
<Reference Include="SamplerCounterControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="SamplerCounterControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
...@@ -205,6 +223,9 @@ ...@@ -205,6 +223,9 @@
<Link>TTControl\MouseMoveController.designer.cs</Link> <Link>TTControl\MouseMoveController.designer.cs</Link>
<DependentUpon>MouseMoveController.cs</DependentUpon> <DependentUpon>MouseMoveController.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="..\..\..\..\TTControl\ThirdPartyAPI\WindowsAPI.cs">
<Link>TTControl\WindowsAPI.cs</Link>
</Compile>
<Compile Include="..\..\..\..\TTControl\Tool.cs"> <Compile Include="..\..\..\..\TTControl\Tool.cs">
<Link>TTControl\Tool.cs</Link> <Link>TTControl\Tool.cs</Link>
</Compile> </Compile>
...@@ -212,9 +233,6 @@ ...@@ -212,9 +233,6 @@
<Link>TTControl\UniversalPopUpWindow.cs</Link> <Link>TTControl\UniversalPopUpWindow.cs</Link>
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Include="..\..\..\..\TTControl\WindowsAPI.cs">
<Link>TTControl\WindowsAPI.cs</Link>
</Compile>
<Compile Include="AboutForm.cs"> <Compile Include="AboutForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
...@@ -1209,9 +1227,6 @@ ...@@ -1209,9 +1227,6 @@
<DependentUpon>SysConfigSecondary.cs</DependentUpon> <DependentUpon>SysConfigSecondary.cs</DependentUpon>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="SysConfigSecondary.iu-Cans-CA.resx">
<DependentUpon>SysConfigSecondary.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="SysConfigSecondary.resx"> <EmbeddedResource Include="SysConfigSecondary.resx">
<DependentUpon>SysConfigSecondary.cs</DependentUpon> <DependentUpon>SysConfigSecondary.cs</DependentUpon>
<SubType>Designer</SubType> <SubType>Designer</SubType>
...@@ -1224,12 +1239,6 @@ ...@@ -1224,12 +1239,6 @@
<DependentUpon>SysConfig.cs</DependentUpon> <DependentUpon>SysConfig.cs</DependentUpon>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="SysConfigSecondary.zh-Hans.resx">
<DependentUpon>SysConfigSecondary.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="SysConfigSecondary.zh.resx">
<DependentUpon>SysConfigSecondary.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="TestForm.resx"> <EmbeddedResource Include="TestForm.resx">
<DependentUpon>TestForm.cs</DependentUpon> <DependentUpon>TestForm.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
......
...@@ -101,34 +101,13 @@ namespace GcDevicePc ...@@ -101,34 +101,13 @@ namespace GcDevicePc
{ {
IniFile ini = new IniFile(file); IniFile ini = new IniFile(file);
string value = ini.ReadString("StartUp", "自启动");
string opensys = ini.ReadString("StartUp", "打开系统");
string runtype = ini.ReadString("StartUp", "运行类型");
string info_log = ini.ReadString("Logs", "InfoLog");
string err_log = ini.ReadString("Logs", "ErrLog");
string hmi_log = ini.ReadString("Logs", "HmiLog");
int Version = ini.ReadInteger("Version", "VersionType"); int Version = ini.ReadInteger("Version", "VersionType");
string appname = ini.ReadString("Version", "AppName"); string appname = ini.ReadString("Version", "AppName");
string uname = ini.ReadString("User", "Name");
string upwd = ini.ReadString("User", "Password");
int dsf = ini.ReadInteger("SendData", "Thirdparty");
string strSendType = ini.ReadString("SendData", "SendType");
int dw = ini.ReadInteger("SendData", "Foreign");
int sdzb = ini.ReadInteger("SaveData", "ZBSaveData");
int fi = ini.ReadInteger("StartUp", "Forceintegral");
string sp = ini.ReadString("StartUp", "space");
string dt = ini.ReadString("StartUp", "Datetime");
//string unit = ini.ReadString("StartUp", "Unit");
string sappname = ini.ReadString("StartUp", "TdName");
string strHMISearchTime = ini.ReadString("NetWorkConfig", "搜索时间");
int usStartLog = ini.KeyExists("StartUp", "开机界面") == true ? ini.ReadInteger("StartUp", "开机界面") : 0; int usStartLog = ini.KeyExists("StartUp", "开机界面") == true ? ini.ReadInteger("StartUp", "开机界面") : 0;
string strEmail = ini.ReadString("Email", "邮件地址");
this.textBox9.Text = appname; this.textBox9.Text = appname;
ushort usHMISearchTime = 0;
// if(usStartLog != null) // if(usStartLog != null)
{ {
......
...@@ -145,18 +145,18 @@ namespace GcDevicePc ...@@ -145,18 +145,18 @@ namespace GcDevicePc
if (File.Exists(file)) if (File.Exists(file))
{ {
IniFile ini = new IniFile(file); IniFile ini = new IniFile(file);
string tempAccuracy = ini.ReadString("StartUp", "温度精度");
string value = ini.ReadString("StartUp", "自启动"); string value = ini.ReadString("StartUp", "自启动");
string str_Cloud=ini.ReadString("StartUp", "启用云盒子"); string str_Cloud = ini.ReadString("StartUp", "启用云盒子");
string opensys = ini.ReadString("StartUp", "打开系统"); string opensys = ini.ReadString("StartUp", "打开系统");
string runtype = ini.ReadString("StartUp", "运行类型"); string runtype = ini.ReadString("StartUp", "运行类型");
string info_log = ini.ReadString("Logs", "InfoLog"); string info_log = ini.ReadString("Logs", "InfoLog");
string err_log = ini.ReadString("Logs", "ErrLog"); string err_log = ini.ReadString("Logs", "ErrLog");
string hmi_log = ini.ReadString("Logs", "HmiLog"); string hmi_log = ini.ReadString("Logs", "HmiLog");
string strAntiControlMode=ini.ReadString("反控", "反控模式"); string strAntiControlMode = ini.ReadString("反控", "反控模式");
string strAntiControlFormName=ini.ReadString("反控", "反控进程名称"); string strAntiControlFormName = ini.ReadString("反控", "反控进程名称");
string strStartStopTrigger=ini.ReadString("反控", "开始停止触发"); string strStartStopTrigger = ini.ReadString("反控", "开始停止触发");
string strNMHC=ini.ReadString("NMHC", "测定方式"); string strNMHC = ini.ReadString("NMHC", "测定方式");
int Version = ini.ReadInteger("Version", "VersionType"); int Version = ini.ReadInteger("Version", "VersionType");
string appname = ini.ReadString("Version", "AppName"); string appname = ini.ReadString("Version", "AppName");
...@@ -176,59 +176,59 @@ namespace GcDevicePc ...@@ -176,59 +176,59 @@ namespace GcDevicePc
string strHMISearchTime = ini.ReadString("NetWorkConfig", "搜索时间"); string strHMISearchTime = ini.ReadString("NetWorkConfig", "搜索时间");
int usStartLog = ini.KeyExists("StartUp", "开机界面") == true ? ini.ReadInteger("StartUp", "开机界面") : 0; int usStartLog = ini.KeyExists("StartUp", "开机界面") == true ? ini.ReadInteger("StartUp", "开机界面") : 0;
string strEmail = ini.ReadString("Email", "邮件地址"); string strEmail = ini.ReadString("Email", "邮件地址");
string strLevitationPrompt=ini.ReadString("组分", "悬浮信息");; string strLevitationPrompt = ini.ReadString("组分", "悬浮信息"); ;
ushort usHMISearchTime = 0; ushort usHMISearchTime = 0;
if (strLevitationPrompt==""||strLevitationPrompt=="不显示") if (strLevitationPrompt == "" || strLevitationPrompt == "不显示")
{ {
checkBox_LevitationPrompt.Checked=false; checkBox_LevitationPrompt.Checked = false;
} }
else if (strLevitationPrompt=="显示") else if (strLevitationPrompt == "显示")
{ {
checkBox_LevitationPrompt.Checked=true; checkBox_LevitationPrompt.Checked = true;
} }
if (strAntiControlMode=="") if (strAntiControlMode == "")
{ {
this.comboBox_AntiControlMode.Text="关闭反控"; this.comboBox_AntiControlMode.Text = "关闭反控";
ini.WriteString("反控", "反控模式","关闭反控"); ini.WriteString("反控", "反控模式", "关闭反控");
} }
else else
{ {
this.comboBox_AntiControlMode.Text=strAntiControlMode; this.comboBox_AntiControlMode.Text = strAntiControlMode;
} }
if (strAntiControlFormName=="") if (strAntiControlFormName == "")
{ {
this.textBox_AntiControlFormName.Text="微裂解"; this.textBox_AntiControlFormName.Text = "微裂解";
ini.WriteString("反控", "反控进程名称","SmartSampler"); ini.WriteString("反控", "反控进程名称", "SmartSampler");
} }
else else
{ {
this.textBox_AntiControlFormName.Text=strAntiControlFormName; this.textBox_AntiControlFormName.Text = strAntiControlFormName;
} }
if (strStartStopTrigger=="") if (strStartStopTrigger == "")
{ {
this.comboBox_FollowStop.Text="只触发开始"; this.comboBox_FollowStop.Text = "只触发开始";
ini.WriteString("反控", "开始停止触发","只触发开始"); ini.WriteString("反控", "开始停止触发", "只触发开始");
} }
else else
{ {
this.comboBox_FollowStop.Text=strStartStopTrigger; this.comboBox_FollowStop.Text = strStartStopTrigger;
} }
if (strNMHC=="") if (strNMHC == "")
{ {
//兼容 //兼容
this.comboBox1.Text="间接"; this.comboBox1.Text = "间接";
ini.WriteString("NMHC", "测定方式","间接"); ini.WriteString("NMHC", "测定方式", "间接");
} }
else else
{ {
this.comboBox1.Text=strNMHC; this.comboBox1.Text = strNMHC;
} }
if (ushort.TryParse(strHMISearchTime, out usHMISearchTime) == true) if (ushort.TryParse(strHMISearchTime, out usHMISearchTime) == true)
{ {
this.SerachHMINumericUpDown1.Value = usHMISearchTime; this.SerachHMINumericUpDown1.Value = usHMISearchTime;
} }
comboBox2.SelectedIndex = comboBox2.FindString(tempAccuracy);
if (Convert.ToInt32(value) == 1) if (Convert.ToInt32(value) == 1)
{ {
this.appstartup.Checked = true; this.appstartup.Checked = true;
...@@ -237,13 +237,13 @@ namespace GcDevicePc ...@@ -237,13 +237,13 @@ namespace GcDevicePc
{ {
this.appstartup.Checked = false; this.appstartup.Checked = false;
} }
if (str_Cloud=="1") if (str_Cloud == "1")
{ {
this.checkBox_Cloud.Checked=true; this.checkBox_Cloud.Checked = true;
} }
else else
{ {
this.checkBox_Cloud.Checked=false; this.checkBox_Cloud.Checked = false;
} }
if (Convert.ToInt32(opensys) == 1) if (Convert.ToInt32(opensys) == 1)
{ {
...@@ -421,9 +421,9 @@ namespace GcDevicePc ...@@ -421,9 +421,9 @@ namespace GcDevicePc
private void Data_Load1() private void Data_Load1()
{ {
this.textBox11.Text = Sys_ini.Get_Sys_OxyCpdCount_Y1(); this.textBox11.Text = Sys_ini.Get_Sys_OxyCpdCount_Y1();
this.textBox12.Text =Sys_ini.Get_Sys_OxyCpdCount_Y2(); this.textBox12.Text = Sys_ini.Get_Sys_OxyCpdCount_Y2();
bIsAutoDisO2=Sys_ini.Get_Sys_OxyCpdCount_Enable(); bIsAutoDisO2 = Sys_ini.Get_Sys_OxyCpdCount_Enable();
this.richTextBox1.Text =Sys_ini.Get_Sys_OxyCpdCount_Formula(); this.richTextBox1.Text = Sys_ini.Get_Sys_OxyCpdCount_Formula();
if (bIsAutoDisO2 == true) if (bIsAutoDisO2 == true)
{ {
richTextBox1.Enabled = true; richTextBox1.Enabled = true;
...@@ -637,6 +637,7 @@ namespace GcDevicePc ...@@ -637,6 +637,7 @@ namespace GcDevicePc
{ {
ini.WriteString("组分", "悬浮信息", "不显示"); ini.WriteString("组分", "悬浮信息", "不显示");
} }
ini.WriteString("StartUp", "温度精度",comboBox2.Text);
if (appstartup.Checked) if (appstartup.Checked)
{ {
...@@ -748,7 +749,7 @@ namespace GcDevicePc ...@@ -748,7 +749,7 @@ namespace GcDevicePc
ini.WriteString("SendData", "Foreign", "2");//无 ini.WriteString("SendData", "Foreign", "2");//无
} }
if (comboBox1.Text==""||comboBox1.Text=="间接") if (comboBox1.Text == "" || comboBox1.Text == "间接")
{ {
ini.WriteString("NMHC", "测定方式", "间接");//NMHC测定方式 ini.WriteString("NMHC", "测定方式", "间接");//NMHC测定方式
} }
...@@ -818,7 +819,7 @@ namespace GcDevicePc ...@@ -818,7 +819,7 @@ namespace GcDevicePc
//一般不会出现,除非保存配置耗时太长 //一般不会出现,除非保存配置耗时太长
} }
if (MessageBox.Show("下发完成,需要重启色谱和软件,是否马上重启软件?\n建议等色谱重启完成后再点击\"是(Y)\"", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question,MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly) == DialogResult.Yes) if (MessageBox.Show("下发完成,需要重启色谱和软件,是否马上重启软件?\n建议等色谱重启完成后再点击\"是(Y)\"", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly) == DialogResult.Yes)
{ {
Process.Start(Application.ExecutablePath); Process.Start(Application.ExecutablePath);
Process.GetCurrentProcess().Kill(); Process.GetCurrentProcess().Kill();
...@@ -1205,7 +1206,7 @@ namespace GcDevicePc ...@@ -1205,7 +1206,7 @@ namespace GcDevicePc
private void checkBox1_CheckedChanged(object sender, EventArgs e) private void checkBox1_CheckedChanged(object sender, EventArgs e)
{ {
if ( checkBox1.Checked) if (checkBox1.Checked)
{ {
this.textBox2.UseSystemPasswordChar = false; this.textBox2.UseSystemPasswordChar = false;
this.textBox3.UseSystemPasswordChar = false; this.textBox3.UseSystemPasswordChar = false;
......
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="splitter1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="listBox1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="splitContainer1.Panel1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label11.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label10.ToolTip" xml:space="preserve">
<value />
</data>
<data name="comboBox_AntiControlMode.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox_AntiControlFormName.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox9.ToolTip" xml:space="preserve">
<value />
</data>
<data name="permin.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="EmailLabel27.ToolTip" xml:space="preserve">
<value />
</data>
<data name="EmailTextBox13.ToolTip" xml:space="preserve">
<value />
</data>
<data name="EmailGroupBox13.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label9.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label8.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox5.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox5.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox10.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label20.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox8.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="checkBox3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox5.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label26.ToolTip" xml:space="preserve">
<value />
</data>
<data name="SerachHMINumericUpDown1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label25.ToolTip" xml:space="preserve">
<value />
</data>
<data name="runbat.ToolTip" xml:space="preserve">
<value />
</data>
<data name="runsingle.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="appstartup.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox8.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label15.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label16.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label17.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label18.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox11.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton14.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton13.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox8.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton5.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="groupBox2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="CmsDeletRow.ToolTip" xml:space="preserve">
<value />
</data>
<data name="dataGridView1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel7.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label6.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label5.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label24.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label23.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton11.ToolTip" xml:space="preserve">
<value />
</data>
<data name="radioButton10.ToolTip" xml:space="preserve">
<value />
</data>
<data name="richTextBox1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox12.ToolTip" xml:space="preserve">
<value />
</data>
<data name="textBox11.ToolTip" xml:space="preserve">
<value />
</data>
<data name="buttonA.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label22.ToolTip" xml:space="preserve">
<value />
</data>
<data name="label21.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel8.ToolTip" xml:space="preserve">
<value />
</data>
<data name="splitContainer1.Panel2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="splitContainer1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="panel4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="button1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="button2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="$this.ToolTip" xml:space="preserve">
<value />
</data>
</root>
\ No newline at end of file
...@@ -1140,6 +1140,63 @@ ...@@ -1140,6 +1140,63 @@
<data name="groupBox4.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="groupBox4.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left, Right</value> <value>Left, Right</value>
</data> </data>
<data name="label13.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label13.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="label13.Location" type="System.Drawing.Point, System.Drawing">
<value>18, 42</value>
</data>
<data name="label13.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 12</value>
</data>
<data name="label13.TabIndex" type="System.Int32, mscorlib">
<value>13</value>
</data>
<data name="label13.Text" xml:space="preserve">
<value>温度精度</value>
</data>
<data name="&gt;&gt;label13.Name" xml:space="preserve">
<value>label13</value>
</data>
<data name="&gt;&gt;label13.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;label13.Parent" xml:space="preserve">
<value>groupBox4</value>
</data>
<data name="&gt;&gt;label13.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="comboBox2.Items" xml:space="preserve">
<value>保留一位</value>
</data>
<data name="comboBox2.Items1" xml:space="preserve">
<value>保留两位</value>
</data>
<data name="comboBox2.Location" type="System.Drawing.Point, System.Drawing">
<value>87, 39</value>
</data>
<data name="comboBox2.Size" type="System.Drawing.Size, System.Drawing">
<value>74, 20</value>
</data>
<data name="comboBox2.TabIndex" type="System.Int32, mscorlib">
<value>12</value>
</data>
<data name="&gt;&gt;comboBox2.Name" xml:space="preserve">
<value>comboBox2</value>
</data>
<data name="&gt;&gt;comboBox2.Type" xml:space="preserve">
<value>System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;comboBox2.Parent" xml:space="preserve">
<value>groupBox4</value>
</data>
<data name="&gt;&gt;comboBox2.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="checkBox_Cloud.AutoSize" type="System.Boolean, mscorlib"> <data name="checkBox_Cloud.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
</data> </data>
...@@ -1168,7 +1225,7 @@ ...@@ -1168,7 +1225,7 @@
<value>groupBox4</value> <value>groupBox4</value>
</data> </data>
<data name="&gt;&gt;checkBox_Cloud.ZOrder" xml:space="preserve"> <data name="&gt;&gt;checkBox_Cloud.ZOrder" xml:space="preserve">
<value>0</value> <value>2</value>
</data> </data>
<data name="appstartup.AutoSize" type="System.Boolean, mscorlib"> <data name="appstartup.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
...@@ -1195,7 +1252,7 @@ ...@@ -1195,7 +1252,7 @@
<value>groupBox4</value> <value>groupBox4</value>
</data> </data>
<data name="&gt;&gt;appstartup.ZOrder" xml:space="preserve"> <data name="&gt;&gt;appstartup.ZOrder" xml:space="preserve">
<value>1</value> <value>3</value>
</data> </data>
<data name="groupBox4.Location" type="System.Drawing.Point, System.Drawing"> <data name="groupBox4.Location" type="System.Drawing.Point, System.Drawing">
<value>25, 23</value> <value>25, 23</value>
......
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="groupBox8.Size" type="System.Drawing.Size, System.Drawing">
<value>471, 110</value>
</data>
<data name="groupBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>474, 81</value>
</data>
<data name="groupBox2.Size" type="System.Drawing.Size, System.Drawing">
<value>471, 117</value>
</data>
</root>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="groupBox9.Location" type="System.Drawing.Point, System.Drawing">
<value>273, 21</value>
</data>
<data name="groupBox7.Location" type="System.Drawing.Point, System.Drawing">
<value>22, 147</value>
</data>
<data name="groupBox6.Location" type="System.Drawing.Point, System.Drawing">
<value>25, 251</value>
</data>
<data name="groupBox6.Size" type="System.Drawing.Size, System.Drawing">
<value>557, 98</value>
</data>
<data name="groupBox5.Location" type="System.Drawing.Point, System.Drawing">
<value>22, 200</value>
</data>
<data name="groupBox5.Size" type="System.Drawing.Size, System.Drawing">
<value>558, 45</value>
</data>
<data name="groupBox3.Location" type="System.Drawing.Point, System.Drawing">
<value>22, 92</value>
</data>
<data name="groupBox3.Size" type="System.Drawing.Size, System.Drawing">
<value>558, 49</value>
</data>
<data name="groupBox4.Location" type="System.Drawing.Point, System.Drawing">
<value>22, 39</value>
</data>
<data name="groupBox4.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 47</value>
</data>
<data name="groupBox11.Location" type="System.Drawing.Point, System.Drawing">
<value>34, 144</value>
</data>
<data name="groupBox11.Size" type="System.Drawing.Size, System.Drawing">
<value>543, 67</value>
</data>
<data name="label6.Location" type="System.Drawing.Point, System.Drawing">
<value>539, 118</value>
</data>
<data name="label5.Location" type="System.Drawing.Point, System.Drawing">
<value>540, 78</value>
</data>
<data name="label4.Location" type="System.Drawing.Point, System.Drawing">
<value>540, 41</value>
</data>
<data name="textBox3.Location" type="System.Drawing.Point, System.Drawing">
<value>368, 109</value>
</data>
<data name="textBox2.Location" type="System.Drawing.Point, System.Drawing">
<value>368, 70</value>
</data>
<data name="textBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>368, 33</value>
</data>
<data name="radioButton13.Text" xml:space="preserve">
<value>正常控制信号发送</value>
</data>
<data name="groupBox8.Location" type="System.Drawing.Point, System.Drawing">
<value>28, 108</value>
</data>
<data name="groupBox8.Size" type="System.Drawing.Size, System.Drawing">
<value>438, 110</value>
</data>
<data name="radioButton3.Location" type="System.Drawing.Point, System.Drawing">
<value>117, 60</value>
</data>
<data name="radioButton1.Location" type="System.Drawing.Point, System.Drawing">
<value>117, 32</value>
</data>
<data name="groupBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>436, 81</value>
</data>
<data name="groupBox2.Size" type="System.Drawing.Size, System.Drawing">
<value>436, 117</value>
</data>
</root>
\ No newline at end of file
...@@ -33,21 +33,6 @@ ...@@ -33,21 +33,6 @@
this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.splitter1 = new System.Windows.Forms.Splitter(); this.splitter1 = new System.Windows.Forms.Splitter();
this.listBox1 = new System.Windows.Forms.ListBox(); this.listBox1 = new System.Windows.Forms.ListBox();
this.panel3 = new System.Windows.Forms.Panel();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.radioButton14 = new System.Windows.Forms.RadioButton();
this.radioButton13 = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label12 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.radioButton5 = new System.Windows.Forms.RadioButton();
this.radioButton6 = new System.Windows.Forms.RadioButton();
this.radioButton7 = new System.Windows.Forms.RadioButton();
this.panel1 = new System.Windows.Forms.Panel(); this.panel1 = new System.Windows.Forms.Panel();
this.groupBox9 = new System.Windows.Forms.GroupBox(); this.groupBox9 = new System.Windows.Forms.GroupBox();
this.textBox_AntiControlFormName = new System.Windows.Forms.TextBox(); this.textBox_AntiControlFormName = new System.Windows.Forms.TextBox();
...@@ -87,6 +72,21 @@ ...@@ -87,6 +72,21 @@
this.groupBox4 = new System.Windows.Forms.GroupBox(); this.groupBox4 = new System.Windows.Forms.GroupBox();
this.checkBox_Cloud = new System.Windows.Forms.CheckBox(); this.checkBox_Cloud = new System.Windows.Forms.CheckBox();
this.appstartup = new System.Windows.Forms.CheckBox(); this.appstartup = new System.Windows.Forms.CheckBox();
this.panel3 = new System.Windows.Forms.Panel();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.radioButton14 = new System.Windows.Forms.RadioButton();
this.radioButton13 = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label12 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.radioButton5 = new System.Windows.Forms.RadioButton();
this.radioButton6 = new System.Windows.Forms.RadioButton();
this.radioButton7 = new System.Windows.Forms.RadioButton();
this.panel2 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel();
this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox();
this.checkBox1 = new System.Windows.Forms.CheckBox(); this.checkBox1 = new System.Windows.Forms.CheckBox();
...@@ -133,14 +133,12 @@ ...@@ -133,14 +133,12 @@
this.button2 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button();
this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.label13 = new System.Windows.Forms.Label();
this.comboBox2 = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout(); this.splitContainer1.SuspendLayout();
this.panel3.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel1.SuspendLayout(); this.panel1.SuspendLayout();
this.groupBox9.SuspendLayout(); this.groupBox9.SuspendLayout();
this.groupBox7.SuspendLayout(); this.groupBox7.SuspendLayout();
...@@ -150,6 +148,10 @@ ...@@ -150,6 +148,10 @@
this.groupBox3.SuspendLayout(); this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.SerachHMINumericUpDown1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SerachHMINumericUpDown1)).BeginInit();
this.groupBox4.SuspendLayout(); this.groupBox4.SuspendLayout();
this.panel3.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel2.SuspendLayout(); this.panel2.SuspendLayout();
this.panel6.SuspendLayout(); this.panel6.SuspendLayout();
this.groupBox11.SuspendLayout(); this.groupBox11.SuspendLayout();
...@@ -204,125 +206,6 @@ ...@@ -204,125 +206,6 @@
this.listBox1.MeasureItem += new System.Windows.Forms.MeasureItemEventHandler(this.ListBox1_MeasureItem); this.listBox1.MeasureItem += new System.Windows.Forms.MeasureItemEventHandler(this.ListBox1_MeasureItem);
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged); this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
// //
// panel3
//
this.panel3.Controls.Add(this.groupBox8);
this.panel3.Controls.Add(this.groupBox1);
this.panel3.Controls.Add(this.groupBox2);
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Name = "panel3";
//
// groupBox8
//
this.groupBox8.Controls.Add(this.radioButton14);
this.groupBox8.Controls.Add(this.radioButton13);
resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.Name = "groupBox8";
this.groupBox8.TabStop = false;
//
// radioButton14
//
resources.ApplyResources(this.radioButton14, "radioButton14");
this.radioButton14.Name = "radioButton14";
this.radioButton14.TabStop = true;
this.radioButton14.UseVisualStyleBackColor = true;
//
// radioButton13
//
resources.ApplyResources(this.radioButton13, "radioButton13");
this.radioButton13.Name = "radioButton13";
this.radioButton13.TabStop = true;
this.radioButton13.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButton3);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Controls.Add(this.radioButton4);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// radioButton3
//
resources.ApplyResources(this.radioButton3, "radioButton3");
this.radioButton3.Name = "radioButton3";
this.radioButton3.TabStop = true;
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton2
//
resources.ApplyResources(this.radioButton2, "radioButton2");
this.radioButton2.Name = "radioButton2";
this.radioButton2.TabStop = true;
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton1
//
resources.ApplyResources(this.radioButton1, "radioButton1");
this.radioButton1.Name = "radioButton1";
this.radioButton1.TabStop = true;
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton4
//
resources.ApplyResources(this.radioButton4, "radioButton4");
this.radioButton4.Name = "radioButton4";
this.radioButton4.TabStop = true;
this.radioButton4.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Controls.Add(this.comboBox1);
this.groupBox2.Controls.Add(this.radioButton5);
this.groupBox2.Controls.Add(this.radioButton6);
this.groupBox2.Controls.Add(this.radioButton7);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
resources.GetString("comboBox1.Items"),
resources.GetString("comboBox1.Items1")});
resources.ApplyResources(this.comboBox1, "comboBox1");
this.comboBox1.Name = "comboBox1";
//
// radioButton5
//
resources.ApplyResources(this.radioButton5, "radioButton5");
this.radioButton5.Name = "radioButton5";
this.radioButton5.TabStop = true;
this.radioButton5.UseVisualStyleBackColor = true;
this.radioButton5.CheckedChanged += new System.EventHandler(this.Foreign_CheckedChanged);
//
// radioButton6
//
resources.ApplyResources(this.radioButton6, "radioButton6");
this.radioButton6.Name = "radioButton6";
this.radioButton6.TabStop = true;
this.radioButton6.UseVisualStyleBackColor = true;
this.radioButton6.CheckedChanged += new System.EventHandler(this.Foreign_CheckedChanged);
//
// radioButton7
//
resources.ApplyResources(this.radioButton7, "radioButton7");
this.radioButton7.Name = "radioButton7";
this.radioButton7.TabStop = true;
this.radioButton7.UseVisualStyleBackColor = true;
//
// panel1 // panel1
// //
this.panel1.Controls.Add(this.groupBox9); this.panel1.Controls.Add(this.groupBox9);
...@@ -598,6 +481,8 @@ ...@@ -598,6 +481,8 @@
// groupBox4 // groupBox4
// //
resources.ApplyResources(this.groupBox4, "groupBox4"); resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Controls.Add(this.label13);
this.groupBox4.Controls.Add(this.comboBox2);
this.groupBox4.Controls.Add(this.checkBox_Cloud); this.groupBox4.Controls.Add(this.checkBox_Cloud);
this.groupBox4.Controls.Add(this.appstartup); this.groupBox4.Controls.Add(this.appstartup);
this.groupBox4.Name = "groupBox4"; this.groupBox4.Name = "groupBox4";
...@@ -615,6 +500,125 @@ ...@@ -615,6 +500,125 @@
this.appstartup.Name = "appstartup"; this.appstartup.Name = "appstartup";
this.appstartup.UseVisualStyleBackColor = true; this.appstartup.UseVisualStyleBackColor = true;
// //
// panel3
//
this.panel3.Controls.Add(this.groupBox8);
this.panel3.Controls.Add(this.groupBox1);
this.panel3.Controls.Add(this.groupBox2);
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Name = "panel3";
//
// groupBox8
//
this.groupBox8.Controls.Add(this.radioButton14);
this.groupBox8.Controls.Add(this.radioButton13);
resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.Name = "groupBox8";
this.groupBox8.TabStop = false;
//
// radioButton14
//
resources.ApplyResources(this.radioButton14, "radioButton14");
this.radioButton14.Name = "radioButton14";
this.radioButton14.TabStop = true;
this.radioButton14.UseVisualStyleBackColor = true;
//
// radioButton13
//
resources.ApplyResources(this.radioButton13, "radioButton13");
this.radioButton13.Name = "radioButton13";
this.radioButton13.TabStop = true;
this.radioButton13.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButton3);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Controls.Add(this.radioButton4);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// radioButton3
//
resources.ApplyResources(this.radioButton3, "radioButton3");
this.radioButton3.Name = "radioButton3";
this.radioButton3.TabStop = true;
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton2
//
resources.ApplyResources(this.radioButton2, "radioButton2");
this.radioButton2.Name = "radioButton2";
this.radioButton2.TabStop = true;
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton1
//
resources.ApplyResources(this.radioButton1, "radioButton1");
this.radioButton1.Name = "radioButton1";
this.radioButton1.TabStop = true;
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.Thirdparty_CheckedChanged);
//
// radioButton4
//
resources.ApplyResources(this.radioButton4, "radioButton4");
this.radioButton4.Name = "radioButton4";
this.radioButton4.TabStop = true;
this.radioButton4.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Controls.Add(this.comboBox1);
this.groupBox2.Controls.Add(this.radioButton5);
this.groupBox2.Controls.Add(this.radioButton6);
this.groupBox2.Controls.Add(this.radioButton7);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
resources.GetString("comboBox1.Items"),
resources.GetString("comboBox1.Items1")});
resources.ApplyResources(this.comboBox1, "comboBox1");
this.comboBox1.Name = "comboBox1";
//
// radioButton5
//
resources.ApplyResources(this.radioButton5, "radioButton5");
this.radioButton5.Name = "radioButton5";
this.radioButton5.TabStop = true;
this.radioButton5.UseVisualStyleBackColor = true;
this.radioButton5.CheckedChanged += new System.EventHandler(this.Foreign_CheckedChanged);
//
// radioButton6
//
resources.ApplyResources(this.radioButton6, "radioButton6");
this.radioButton6.Name = "radioButton6";
this.radioButton6.TabStop = true;
this.radioButton6.UseVisualStyleBackColor = true;
this.radioButton6.CheckedChanged += new System.EventHandler(this.Foreign_CheckedChanged);
//
// radioButton7
//
resources.ApplyResources(this.radioButton7, "radioButton7");
this.radioButton7.Name = "radioButton7";
this.radioButton7.TabStop = true;
this.radioButton7.UseVisualStyleBackColor = true;
//
// panel2 // panel2
// //
this.panel2.Controls.Add(this.textBox2); this.panel2.Controls.Add(this.textBox2);
...@@ -912,6 +916,20 @@ ...@@ -912,6 +916,20 @@
// //
this.backgroundWorker1.WorkerReportsProgress = true; this.backgroundWorker1.WorkerReportsProgress = true;
// //
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// comboBox2
//
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] {
resources.GetString("comboBox2.Items"),
resources.GetString("comboBox2.Items1")});
resources.ApplyResources(this.comboBox2, "comboBox2");
this.comboBox2.Name = "comboBox2";
//
// SysConfigSecondary // SysConfigSecondary
// //
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
...@@ -925,12 +943,6 @@ ...@@ -925,12 +943,6 @@
this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false); this.splitContainer1.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.groupBox8.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panel1.ResumeLayout(false); this.panel1.ResumeLayout(false);
this.groupBox9.ResumeLayout(false); this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout(); this.groupBox9.PerformLayout();
...@@ -947,6 +959,12 @@ ...@@ -947,6 +959,12 @@
((System.ComponentModel.ISupportInitialize)(this.SerachHMINumericUpDown1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SerachHMINumericUpDown1)).EndInit();
this.groupBox4.ResumeLayout(false); this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout(); this.groupBox4.PerformLayout();
this.panel3.ResumeLayout(false);
this.groupBox8.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panel2.ResumeLayout(false); this.panel2.ResumeLayout(false);
this.panel2.PerformLayout(); this.panel2.PerformLayout();
this.panel6.ResumeLayout(false); this.panel6.ResumeLayout(false);
...@@ -1067,5 +1085,7 @@ ...@@ -1067,5 +1085,7 @@
private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.CheckBox checkBox_LevitationPrompt; private System.Windows.Forms.CheckBox checkBox_LevitationPrompt;
private System.Windows.Forms.CheckBox checkBox1; private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.ComboBox comboBox2;
} }
} }
\ No newline at end of file
...@@ -78,6 +78,7 @@ namespace GcDevicePc ...@@ -78,6 +78,7 @@ namespace GcDevicePc
public static int CurrentVersion; //当前版本(是否显示用户界面) public static int CurrentVersion; //当前版本(是否显示用户界面)
public static string UserName;//用户名 public static string UserName;//用户名
public static string UserPwd;//密码 public static string UserPwd;//密码
/// <summary> /// <summary>
......
...@@ -7,5 +7,8 @@ ...@@ -7,5 +7,8 @@
<package id="M2Mqtt" version="4.3.0.0" targetFramework="net45" /> <package id="M2Mqtt" version="4.3.0.0" targetFramework="net45" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="13.0.1" targetFramework="net45" />
<package id="NModbus4" version="2.1.0" targetFramework="net45" /> <package id="NModbus4" version="2.1.0" targetFramework="net45" />
<package id="NPOI" version="2.5.6" targetFramework="net45" />
<package id="Portable.BouncyCastle" version="1.8.9" targetFramework="net45" />
<package id="SharpZipLib" version="1.3.3" targetFramework="net45" />
<package id="WinFormAnimation" version="1.5.6298.3372" targetFramework="net40" /> <package id="WinFormAnimation" version="1.5.6298.3372" targetFramework="net40" />
</packages> </packages>
\ No newline at end of file
...@@ -12,6 +12,7 @@ Datetime=1 ...@@ -12,6 +12,7 @@ Datetime=1
TdName=TVOC5.7 TdName=TVOC5.7
开机界面=0 开机界面=0
启用云盒子=0 启用云盒子=0
温度精度=保留两位
[DataFolder] [DataFolder]
历史数据=D:\work\Vocs\VocsSetup\GC_Config\GC_Set\Historical Data 历史数据=D:\work\Vocs\VocsSetup\GC_Config\GC_Set\Historical Data
分级文件夹=1 分级文件夹=1
......
...@@ -8,7 +8,7 @@ Count3=FALSE ...@@ -8,7 +8,7 @@ Count3=FALSE
[O2CpdCount] [O2CpdCount]
O2value=21 O2value=21
[免登录] [免登录]
锚点日期=2022/10/9 锚点日期=2022/10/17
勾选类型=2 勾选类型=2
[TempTrend] [TempTrend]
启用网格X=FALSE 启用网格X=FALSE
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -2108,3 +2108,14 @@ ...@@ -2108,3 +2108,14 @@
【2022-10-09 18:29:45.2893】,服务器IP连接失败:192.168.10.217:12345 【2022-10-09 18:29:45.2893】,服务器IP连接失败:192.168.10.217:12345
【2022-10-09 18:30:28.8162】,服务器IP连接失败:192.168.10.217:12345 【2022-10-09 18:30:28.8162】,服务器IP连接失败:192.168.10.217:12345
【2022-10-09 18:35:28.8010】,服务器IP连接失败:192.168.10.217:12345 【2022-10-09 18:35:28.8010】,服务器IP连接失败:192.168.10.217:12345
【2022-10-12 13:32:46.9692】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 08:54:45.1488】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 08:56:29.2915】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 09:01:02.1536】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 09:01:20.7769】,用户admin,进入调试模式
【2022-10-17 09:02:02.1523】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 09:02:14.4693】,用户admin,进入调试模式
【2022-10-17 09:04:37.1508】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 09:04:41.0972】,用户admin,进入调试模式
【2022-10-17 09:06:04.3652】,服务器IP连接失败:192.168.10.217:12345
【2022-10-17 09:06:14.4991】,用户admin,进入调试模式
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment