Browse Source

增加参数设置窗体

yinyujing 4 years ago
parent
commit
915c8254fb

+ 14 - 34
NB_IOT_TCP_HP_SOCKET/MainForm_TCP.Designer.cs

@@ -47,9 +47,6 @@
             this.button1 = new System.Windows.Forms.Button();
             this.lbSendData = new System.Windows.Forms.ListBox();
             this.groupBox1 = new System.Windows.Forms.GroupBox();
-            this.label1 = new System.Windows.Forms.Label();
-            this.btnDisconn = new System.Windows.Forms.Button();
-            this.txtDisConn = new System.Windows.Forms.TextBox();
             this.txtPort = new System.Windows.Forms.TextBox();
             this.txtIpAddress = new System.Windows.Forms.TextBox();
             this.btnStop = new System.Windows.Forms.Button();
@@ -57,6 +54,7 @@
             this.splitContainer1 = new System.Windows.Forms.SplitContainer();
             this.panel1 = new System.Windows.Forms.Panel();
             this.timer1 = new System.Windows.Forms.Timer(this.components);
+            this.button3 = new System.Windows.Forms.Button();
             this.groupBox3.SuspendLayout();
             this.statusStrip1.SuspendLayout();
             this.groupBox2.SuspendLayout();
@@ -229,31 +227,6 @@
             this.groupBox1.TabStop = false;
             this.groupBox1.Text = "发送数据";
             // 
-            // label1
-            // 
-            this.label1.AutoSize = true;
-            this.label1.Location = new System.Drawing.Point(149, 18);
-            this.label1.Name = "label1";
-            this.label1.Size = new System.Drawing.Size(41, 12);
-            this.label1.TabIndex = 22;
-            this.label1.Text = "连接点";
-            // 
-            // btnDisconn
-            // 
-            this.btnDisconn.Location = new System.Drawing.Point(300, 11);
-            this.btnDisconn.Name = "btnDisconn";
-            this.btnDisconn.Size = new System.Drawing.Size(44, 26);
-            this.btnDisconn.TabIndex = 21;
-            this.btnDisconn.Text = "关闭";
-            this.btnDisconn.UseVisualStyleBackColor = true;
-            // 
-            // txtDisConn
-            // 
-            this.txtDisConn.Location = new System.Drawing.Point(196, 14);
-            this.txtDisConn.Name = "txtDisConn";
-            this.txtDisConn.Size = new System.Drawing.Size(98, 21);
-            this.txtDisConn.TabIndex = 20;
-            // 
             // txtPort
             // 
             this.txtPort.Location = new System.Drawing.Point(93, 15);
@@ -320,9 +293,7 @@
             this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
             | System.Windows.Forms.AnchorStyles.Right)));
             this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
-            this.panel1.Controls.Add(this.label1);
-            this.panel1.Controls.Add(this.btnDisconn);
-            this.panel1.Controls.Add(this.txtDisConn);
+            this.panel1.Controls.Add(this.button3);
             this.panel1.Controls.Add(this.txtPort);
             this.panel1.Controls.Add(this.txtIpAddress);
             this.panel1.Controls.Add(this.btnStop);
@@ -338,6 +309,16 @@
             this.timer1.Interval = 1000;
             this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
             // 
+            // button3
+            // 
+            this.button3.Location = new System.Drawing.Point(166, 12);
+            this.button3.Name = "button3";
+            this.button3.Size = new System.Drawing.Size(75, 23);
+            this.button3.TabIndex = 23;
+            this.button3.Text = "参数设置";
+            this.button3.UseVisualStyleBackColor = true;
+            this.button3.Click += new System.EventHandler(this.button3_Click);
+            // 
             // MainForm_TCP
             // 
             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
@@ -348,6 +329,7 @@
             this.Controls.Add(this.splitContainer1);
             this.Controls.Add(this.panel1);
             this.Name = "MainForm_TCP";
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
             this.Text = "大表通讯服务器TCP";
             this.Load += new System.EventHandler(this.MainForm_TCP_Load);
             this.groupBox3.ResumeLayout(false);
@@ -385,9 +367,6 @@
         private System.Windows.Forms.Button button1;
         private System.Windows.Forms.ListBox lbSendData;
         private System.Windows.Forms.GroupBox groupBox1;
-        private System.Windows.Forms.Label label1;
-        private System.Windows.Forms.Button btnDisconn;
-        private System.Windows.Forms.TextBox txtDisConn;
         private System.Windows.Forms.TextBox txtPort;
         private System.Windows.Forms.TextBox txtIpAddress;
         private System.Windows.Forms.Button btnStop;
@@ -395,5 +374,6 @@
         private System.Windows.Forms.SplitContainer splitContainer1;
         private System.Windows.Forms.Panel panel1;
         private System.Windows.Forms.Timer timer1;
+        private System.Windows.Forms.Button button3;
     }
 }

+ 12 - 11
NB_IOT_TCP_HP_SOCKET/MainForm_TCP.cs

@@ -5,6 +5,7 @@ using System.Collections;
 using System.Collections.Generic;
 using System.Configuration;
 using System.Data;
+using System.Drawing;
 using System.Runtime.InteropServices;
 using System.Threading;
 using System.Windows.Forms;
@@ -18,10 +19,6 @@ namespace NB_IOT_TCP_HP_SOCKET
         private static Thread _SendThread;// 发送的线程
         private static Thread heartBeatThread;// 断开超时链接的线程
         private static Queue _SendConidQueue = Queue.Synchronized(new Queue()); // 存储历史记录数据的队列
-        private static string connectionTimeOut = ConfigurationManager.AppSettings["ConnectionTimeOut"];  // 心跳间隔时间(毫秒)
-        private static string ConnectionTimeOutInterval = ConfigurationManager.AppSettings["ConnectionTimeOutInterval"]; // 执行断开静默链接间隔时间毫秒
-        private static string ModBusQueryInterval = ConfigurationManager.AppSettings["ModBusQueryInterval"]; // MODBUS轮询获取抄表数据时间毫秒
-        private static string IsHaveModBus = ConfigurationManager.AppSettings["IsHaveModBus"]; // 是否有MODBUS类设备1:有;0:无
         private static bool isTimeRuning = false; // MODBUS定时器是否执行中
         private static bool isHeartBeatRuning = false; // 心跳进程是否执行中
 
@@ -95,7 +92,7 @@ namespace NB_IOT_TCP_HP_SOCKET
 
                     deviceTypes = ProtocolAnalysisTools.GetDeviceTypes();
 
-                    if ("1".Equals(IsHaveModBus))
+                    if ("1".Equals(ConfigurationManager.AppSettings["IsHaveModBus"]))
                     {
                         StartModBusSendTimer(); // 启动ModBus定时发送读取数据任务
                     }
@@ -193,8 +190,6 @@ namespace NB_IOT_TCP_HP_SOCKET
             this.btnStop.Enabled = (appState == AppState.Started);
             this.txtIpAddress.Enabled = (appState == AppState.Stoped || appState == AppState.UnStart);
             this.txtPort.Enabled = (appState == AppState.Stoped || appState == AppState.UnStart);
-            this.txtDisConn.Enabled = (appState == AppState.Started);
-            this.btnDisconn.Enabled = (appState == AppState.Started && this.txtDisConn.Text.Length > 0);
         }
 
         /// <summary>
@@ -434,7 +429,7 @@ namespace NB_IOT_TCP_HP_SOCKET
         /// </summary>
         private void StartModBusSendTimer()
         {
-            int intervalTime = Convert.ToInt32(ModBusQueryInterval);
+            int intervalTime = Convert.ToInt32(ConfigurationManager.AppSettings["ModBusQueryInterval"]);
             // 实例化Timer类,设置间隔时间(毫秒)
             System.Timers.Timer timer = new System.Timers.Timer(intervalTime);
             timer.Elapsed += GetDeviceData; // 到达时间的时候执行事件;
@@ -494,7 +489,7 @@ namespace NB_IOT_TCP_HP_SOCKET
                             uint SilenceTime = 0;
                             if (server.GetSilencePeriod(connId, ref SilenceTime))
                             {
-                                if (SilenceTime > Convert.ToInt32(connectionTimeOut))
+                                if (SilenceTime > Convert.ToInt32(ConfigurationManager.AppSettings["ConnectionTimeOut"]))
                                 {
                                     server.Disconnect(connId);
                                     disconnectId.Add(conn.Key);
@@ -507,7 +502,7 @@ namespace NB_IOT_TCP_HP_SOCKET
                             deveiceConnId.Remove(key);
                         }
                         // 关闭所有静默链接(主要是只建立链接没有上报过数据的链接)
-                        server.DisconnectSilenceConnections(Convert.ToUInt32(connectionTimeOut));
+                        server.DisconnectSilenceConnections(Convert.ToUInt32(ConfigurationManager.AppSettings["ConnectionTimeOut"]));
 
                         isHeartBeatRuning = false;
                     }
@@ -517,7 +512,7 @@ namespace NB_IOT_TCP_HP_SOCKET
                         isHeartBeatRuning = false;
                     }
                 }
-                Thread.Sleep(Convert.ToInt32(ConnectionTimeOutInterval));
+                Thread.Sleep(Convert.ToInt32(ConfigurationManager.AppSettings["ConnectionTimeOutInterval"]));
             }
         }
 
@@ -952,6 +947,12 @@ namespace NB_IOT_TCP_HP_SOCKET
             }
             return ("系统持续运行:" + num.ToString() + "天" + num2.ToString() + "小时" + num3.ToString() + "分" + num4.ToString() + "秒");
         }
+
+        private void button3_Click(object sender, EventArgs e)
+        {
+            ParamSetForm paramSetForm = new ParamSetForm();
+            paramSetForm.ShowDialog();
+        }
     }
 
     [StructLayout(LayoutKind.Sequential)]

+ 9 - 0
NB_IOT_TCP_HP_SOCKET/NB_IOT_TCP_HP_SOCKET.csproj

@@ -56,6 +56,12 @@
     <Compile Include="MainForm_TCP.Designer.cs">
       <DependentUpon>MainForm_TCP.cs</DependentUpon>
     </Compile>
+    <Compile Include="ParamSetForm.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="ParamSetForm.Designer.cs">
+      <DependentUpon>ParamSetForm.cs</DependentUpon>
+    </Compile>
     <Compile Include="Program.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="WWKJUtil\CellMonitor.cs" />
@@ -86,6 +92,9 @@
     <EmbeddedResource Include="MainForm_TCP.resx">
       <DependentUpon>MainForm_TCP.cs</DependentUpon>
     </EmbeddedResource>
+    <EmbeddedResource Include="ParamSetForm.resx">
+      <DependentUpon>ParamSetForm.cs</DependentUpon>
+    </EmbeddedResource>
     <EmbeddedResource Include="Properties\Resources.resx">
       <Generator>ResXFileCodeGenerator</Generator>
       <LastGenOutput>Resources.Designer.cs</LastGenOutput>

+ 285 - 0
NB_IOT_TCP_HP_SOCKET/ParamSetForm.Designer.cs

@@ -0,0 +1,285 @@
+namespace NB_IOT_TCP_HP_SOCKET
+{
+    partial class ParamSetForm
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.groupBox1 = new System.Windows.Forms.GroupBox();
+            this.label4 = new System.Windows.Forms.Label();
+            this.dataBase = new System.Windows.Forms.TextBox();
+            this.label3 = new System.Windows.Forms.Label();
+            this.passWord = new System.Windows.Forms.TextBox();
+            this.label2 = new System.Windows.Forms.Label();
+            this.userName = new System.Windows.Forms.TextBox();
+            this.label1 = new System.Windows.Forms.Label();
+            this.dataBaseIP = new System.Windows.Forms.TextBox();
+            this.groupBox2 = new System.Windows.Forms.GroupBox();
+            this.isHaveModBus = new System.Windows.Forms.CheckBox();
+            this.label5 = new System.Windows.Forms.Label();
+            this.connectionTimeOutInterval = new System.Windows.Forms.TextBox();
+            this.label6 = new System.Windows.Forms.Label();
+            this.modBusQueryInterval = new System.Windows.Forms.TextBox();
+            this.label7 = new System.Windows.Forms.Label();
+            this.label8 = new System.Windows.Forms.Label();
+            this.connectionTimeOut = new System.Windows.Forms.TextBox();
+            this.button1 = new System.Windows.Forms.Button();
+            this.button2 = new System.Windows.Forms.Button();
+            this.groupBox1.SuspendLayout();
+            this.groupBox2.SuspendLayout();
+            this.SuspendLayout();
+            // 
+            // groupBox1
+            // 
+            this.groupBox1.Controls.Add(this.label4);
+            this.groupBox1.Controls.Add(this.dataBase);
+            this.groupBox1.Controls.Add(this.label3);
+            this.groupBox1.Controls.Add(this.passWord);
+            this.groupBox1.Controls.Add(this.label2);
+            this.groupBox1.Controls.Add(this.userName);
+            this.groupBox1.Controls.Add(this.label1);
+            this.groupBox1.Controls.Add(this.dataBaseIP);
+            this.groupBox1.Location = new System.Drawing.Point(32, 26);
+            this.groupBox1.Name = "groupBox1";
+            this.groupBox1.Size = new System.Drawing.Size(299, 272);
+            this.groupBox1.TabIndex = 0;
+            this.groupBox1.TabStop = false;
+            this.groupBox1.Text = "数据库配置";
+            // 
+            // label4
+            // 
+            this.label4.AutoSize = true;
+            this.label4.Location = new System.Drawing.Point(26, 89);
+            this.label4.Name = "label4";
+            this.label4.Size = new System.Drawing.Size(41, 12);
+            this.label4.TabIndex = 7;
+            this.label4.Text = "数据库";
+            // 
+            // dataBase
+            // 
+            this.dataBase.Location = new System.Drawing.Point(87, 86);
+            this.dataBase.Name = "dataBase";
+            this.dataBase.Size = new System.Drawing.Size(172, 21);
+            this.dataBase.TabIndex = 6;
+            // 
+            // label3
+            // 
+            this.label3.AutoSize = true;
+            this.label3.Location = new System.Drawing.Point(26, 195);
+            this.label3.Name = "label3";
+            this.label3.Size = new System.Drawing.Size(29, 12);
+            this.label3.TabIndex = 5;
+            this.label3.Text = "密码";
+            // 
+            // passWord
+            // 
+            this.passWord.Location = new System.Drawing.Point(87, 192);
+            this.passWord.Name = "passWord";
+            this.passWord.Size = new System.Drawing.Size(172, 21);
+            this.passWord.TabIndex = 4;
+            // 
+            // label2
+            // 
+            this.label2.AutoSize = true;
+            this.label2.Location = new System.Drawing.Point(26, 140);
+            this.label2.Name = "label2";
+            this.label2.Size = new System.Drawing.Size(41, 12);
+            this.label2.TabIndex = 3;
+            this.label2.Text = "用户名";
+            // 
+            // userName
+            // 
+            this.userName.Location = new System.Drawing.Point(87, 137);
+            this.userName.Name = "userName";
+            this.userName.Size = new System.Drawing.Size(172, 21);
+            this.userName.TabIndex = 2;
+            // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Location = new System.Drawing.Point(26, 43);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(41, 12);
+            this.label1.TabIndex = 1;
+            this.label1.Text = "服务器";
+            // 
+            // dataBaseIP
+            // 
+            this.dataBaseIP.Location = new System.Drawing.Point(87, 40);
+            this.dataBaseIP.Name = "dataBaseIP";
+            this.dataBaseIP.Size = new System.Drawing.Size(172, 21);
+            this.dataBaseIP.TabIndex = 0;
+            // 
+            // groupBox2
+            // 
+            this.groupBox2.Controls.Add(this.isHaveModBus);
+            this.groupBox2.Controls.Add(this.label5);
+            this.groupBox2.Controls.Add(this.connectionTimeOutInterval);
+            this.groupBox2.Controls.Add(this.label6);
+            this.groupBox2.Controls.Add(this.modBusQueryInterval);
+            this.groupBox2.Controls.Add(this.label7);
+            this.groupBox2.Controls.Add(this.label8);
+            this.groupBox2.Controls.Add(this.connectionTimeOut);
+            this.groupBox2.Location = new System.Drawing.Point(424, 26);
+            this.groupBox2.Name = "groupBox2";
+            this.groupBox2.Size = new System.Drawing.Size(299, 272);
+            this.groupBox2.TabIndex = 1;
+            this.groupBox2.TabStop = false;
+            this.groupBox2.Text = "参数配置";
+            // 
+            // isHaveModBus
+            // 
+            this.isHaveModBus.AutoSize = true;
+            this.isHaveModBus.Location = new System.Drawing.Point(70, 173);
+            this.isHaveModBus.Name = "isHaveModBus";
+            this.isHaveModBus.Size = new System.Drawing.Size(144, 16);
+            this.isHaveModBus.TabIndex = 16;
+            this.isHaveModBus.Text = "有市电供电MODBUS设备";
+            this.isHaveModBus.UseVisualStyleBackColor = true;
+            // 
+            // label5
+            // 
+            this.label5.AutoSize = true;
+            this.label5.Location = new System.Drawing.Point(33, 86);
+            this.label5.Name = "label5";
+            this.label5.Size = new System.Drawing.Size(197, 12);
+            this.label5.TabIndex = 15;
+            this.label5.Text = "断开静默链接循环睡眠时间(毫秒)";
+            // 
+            // connectionTimeOutInterval
+            // 
+            this.connectionTimeOutInterval.Location = new System.Drawing.Point(70, 111);
+            this.connectionTimeOutInterval.Name = "connectionTimeOutInterval";
+            this.connectionTimeOutInterval.Size = new System.Drawing.Size(172, 21);
+            this.connectionTimeOutInterval.TabIndex = 14;
+            // 
+            // label6
+            // 
+            this.label6.AutoSize = true;
+            this.label6.Location = new System.Drawing.Point(33, 209);
+            this.label6.Name = "label6";
+            this.label6.Size = new System.Drawing.Size(257, 12);
+            this.label6.TabIndex = 13;
+            this.label6.Text = "市电供电MODBUS轮询获取抄表数据时间(毫秒)";
+            // 
+            // modBusQueryInterval
+            // 
+            this.modBusQueryInterval.Location = new System.Drawing.Point(70, 236);
+            this.modBusQueryInterval.Name = "modBusQueryInterval";
+            this.modBusQueryInterval.Size = new System.Drawing.Size(172, 21);
+            this.modBusQueryInterval.TabIndex = 12;
+            // 
+            // label7
+            // 
+            this.label7.AutoSize = true;
+            this.label7.Location = new System.Drawing.Point(33, 144);
+            this.label7.Name = "label7";
+            this.label7.Size = new System.Drawing.Size(149, 12);
+            this.label7.TabIndex = 11;
+            this.label7.Text = "是否有市电供电MODBUS设备";
+            // 
+            // label8
+            // 
+            this.label8.AutoSize = true;
+            this.label8.Location = new System.Drawing.Point(33, 29);
+            this.label8.Name = "label8";
+            this.label8.Size = new System.Drawing.Size(125, 12);
+            this.label8.TabIndex = 9;
+            this.label8.Text = "心跳间隔时间(毫秒)";
+            // 
+            // connectionTimeOut
+            // 
+            this.connectionTimeOut.Location = new System.Drawing.Point(70, 55);
+            this.connectionTimeOut.Name = "connectionTimeOut";
+            this.connectionTimeOut.Size = new System.Drawing.Size(172, 21);
+            this.connectionTimeOut.TabIndex = 8;
+            // 
+            // button1
+            // 
+            this.button1.Location = new System.Drawing.Point(502, 403);
+            this.button1.Name = "button1";
+            this.button1.Size = new System.Drawing.Size(75, 23);
+            this.button1.TabIndex = 2;
+            this.button1.Text = "保存";
+            this.button1.UseVisualStyleBackColor = true;
+            this.button1.Click += new System.EventHandler(this.button1_Click);
+            // 
+            // button2
+            // 
+            this.button2.Location = new System.Drawing.Point(653, 403);
+            this.button2.Name = "button2";
+            this.button2.Size = new System.Drawing.Size(75, 23);
+            this.button2.TabIndex = 3;
+            this.button2.Text = "返回";
+            this.button2.UseVisualStyleBackColor = true;
+            this.button2.Click += new System.EventHandler(this.button2_Click);
+            // 
+            // ParamSetForm
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(800, 450);
+            this.Controls.Add(this.button2);
+            this.Controls.Add(this.button1);
+            this.Controls.Add(this.groupBox2);
+            this.Controls.Add(this.groupBox1);
+            this.MaximizeBox = false;
+            this.Name = "ParamSetForm";
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+            this.Text = "参数设置";
+            this.Load += new System.EventHandler(this.ParamSetForm_Load);
+            this.groupBox1.ResumeLayout(false);
+            this.groupBox1.PerformLayout();
+            this.groupBox2.ResumeLayout(false);
+            this.groupBox2.PerformLayout();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.GroupBox groupBox1;
+        private System.Windows.Forms.GroupBox groupBox2;
+        private System.Windows.Forms.Button button1;
+        private System.Windows.Forms.Button button2;
+        private System.Windows.Forms.TextBox dataBaseIP;
+        private System.Windows.Forms.Label label4;
+        private System.Windows.Forms.TextBox dataBase;
+        private System.Windows.Forms.Label label3;
+        private System.Windows.Forms.TextBox passWord;
+        private System.Windows.Forms.Label label2;
+        private System.Windows.Forms.TextBox userName;
+        private System.Windows.Forms.Label label1;
+        private System.Windows.Forms.Label label5;
+        private System.Windows.Forms.TextBox connectionTimeOutInterval;
+        private System.Windows.Forms.Label label6;
+        private System.Windows.Forms.TextBox modBusQueryInterval;
+        private System.Windows.Forms.Label label7;
+        private System.Windows.Forms.Label label8;
+        private System.Windows.Forms.TextBox connectionTimeOut;
+        private System.Windows.Forms.CheckBox isHaveModBus;
+    }
+}

+ 118 - 0
NB_IOT_TCP_HP_SOCKET/ParamSetForm.cs

@@ -0,0 +1,118 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Configuration;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace NB_IOT_TCP_HP_SOCKET
+{
+    public partial class ParamSetForm : Form
+    {
+        public ParamSetForm()
+        {
+            InitializeComponent();
+        }
+
+        private void button1_Click(object sender, EventArgs e)
+        {
+            var cfg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
+            cfg.AppSettings.Settings["ConnectionTimeOut"].Value = (this.connectionTimeOut.Text.Trim() == "" ? "0" : this.connectionTimeOut.Text.Trim());
+            cfg.AppSettings.Settings["ConnectionTimeOutInterval"].Value = (this.connectionTimeOutInterval.Text.Trim() == "" ? "0" : this.connectionTimeOutInterval.Text.Trim());
+            cfg.AppSettings.Settings["IsHaveModBus"].Value = (this.isHaveModBus.Checked == true ? "1" : "0");
+            cfg.AppSettings.Settings["ModBusQueryInterval"].Value = (this.modBusQueryInterval.Text.Trim() == "" ? "0" : this.modBusQueryInterval.Text.Trim());
+            string db = ConfigurationManager.AppSettings["db"];
+            string[] dbParamArr = db.Split(';');
+            StringBuilder dbTmp = new StringBuilder();
+            for (int i = 0; i < dbParamArr.Length; i++)
+            {
+                string dbParam = dbParamArr[i];
+                string[] param = dbParam.Split('=');
+                string paramKey = param[0].Trim();
+                // 数据库IP
+                if ("Data Source".Equals(paramKey))
+                {
+                    dbTmp.Append("Data Source=").Append(this.dataBaseIP.Text.Trim());
+                }
+                // 数据库名称
+                else if ("Initial Catalog".Equals(paramKey))
+                {
+                    dbTmp.Append("Initial Catalog=").Append(this.dataBase.Text.Trim());
+                }
+                // 数据库用户名
+                else if ("User ID".Equals(paramKey))
+                {
+                    dbTmp.Append("User ID=").Append(this.userName.Text.Trim());
+                }
+                // 数据库密码
+                else if ("Password".Equals(paramKey))
+                {
+                    dbTmp.Append("Password=").Append(this.passWord.Text.Trim());
+                }
+                else
+                {
+                    dbTmp.Append(dbParam);
+                }
+                if (i < dbParamArr.Length -1 )
+                {
+                    dbTmp.Append(";");
+                }
+            }
+            cfg.AppSettings.Settings["db"].Value = dbTmp.ToString();
+            cfg.Save();
+            ConfigurationManager.RefreshSection("appSettings");
+
+        }
+
+        private void ParamSetForm_Load(object sender, EventArgs e)
+        {
+            string db = ConfigurationManager.AppSettings["db"]; // 数据库连接串
+            string ConnectionTimeOut = ConfigurationManager.AppSettings["ConnectionTimeOut"]; // 心跳间隔时间
+            string ConnectionTimeOutInterval = ConfigurationManager.AppSettings["ConnectionTimeOutInterval"]; // 执行断开静默链接间隔时间毫秒
+            string IsHaveModBus = ConfigurationManager.AppSettings["IsHaveModBus"]; // 是否有MODBUS类设备1:有;0:无
+            string ModBusQueryInterval = ConfigurationManager.AppSettings["ModBusQueryInterval"]; // MODBUS轮询获取抄表数据时间毫秒
+
+            string[] dbParamArr = db.Split(';');
+
+            foreach (string dbParam in dbParamArr)
+            {
+                string[] param = dbParam.Split('=');
+                string paramKey = param[0].Trim();
+                // 数据库IP
+                if ("Data Source".Equals(paramKey))
+                {
+                    this.dataBaseIP.Text = param[1];
+                }
+                // 数据库名称
+                else if ("Initial Catalog".Equals(paramKey))
+                {
+                    this.dataBase.Text = param[1];
+                }
+                // 数据库用户名
+                else if ("User ID".Equals(paramKey))
+                {
+                    this.userName.Text = param[1];
+                }
+                // 数据库密码
+                else if ("Password".Equals(paramKey))
+                {
+                    this.passWord.Text = param[1];
+                }
+
+            }
+            this.connectionTimeOut.Text = ConnectionTimeOut;
+            this.connectionTimeOutInterval.Text = ConnectionTimeOutInterval;
+            this.isHaveModBus.Checked = (IsHaveModBus == "1");
+            this.modBusQueryInterval.Text = ModBusQueryInterval;
+        }
+
+        private void button2_Click(object sender, EventArgs e)
+        {
+            this.Close();
+        }
+    }
+}

+ 120 - 0
NB_IOT_TCP_HP_SOCKET/ParamSetForm.resx

@@ -0,0 +1,120 @@
+<?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>
+</root>