123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- using lyfzAttendance.Controller;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace lyfzAttendance
- {
- public partial class frmMachineConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public frmMachineConfig()
- {
- InitializeComponent();
- this.cbox_MachineType.SelectedIndexChanged += Cbox_MachineType_SelectedIndexChanged;
- this.cbox_ConnectType.SelectedIndexChanged += Cbox_ConnectType_SelectedIndexChanged;
- this.btn_SaveConfig.Click += Btn_SaveConfig_Click;
- this.btn_Cancel.Click += Btn_Cancel_Click;
- }
- private void Btn_Cancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void Btn_SaveConfig_Click(object sender, EventArgs e)
- {
- if ( this.cbox_MachineType.SelectedIndex == 0 )
- {// 旧款指纹机;
- ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.Old;
- if (string.IsNullOrEmpty(tx_MachineLicense.Text))
- {
- MessageBox.Show("许可证不能空");
- return;
- }
- try
- {
- ClientProcess.DeviceConfig.License = Convert.ToUInt32(tx_MachineLicense.Text);
- }
- catch
- {
- MessageBox.Show("许可证只能是数字");
- return;
- }
- }
- else
- {// 新款指纹机;
- ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.New;
- }
- if (this.cbox_ConnectType.SelectedIndex == 0)
- {// usb
- ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Usb;
- }
- else if (this.cbox_ConnectType.SelectedIndex == 1)
- {// 串口;
- ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Comm;
- ClientProcess.DeviceConfig.ComPort = (uint)cbox_CommPort.SelectedIndex+1;
- ClientProcess.DeviceConfig.Baudrate = Convert.ToUInt32(cbox_Baudrate.Text);
- }
- else if (this.cbox_ConnectType.SelectedIndex == 2)
- {// 网络;
- ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Net;
- if ( ClientProcess.DeviceConfig.MachineType == (int)lyfzAttendanceLib.DeviceType.Old)
- {
- try
- {
- ClientProcess.DeviceConfig.TimeOut = Convert.ToUInt32(tx_TimeOut.Text);
- }
- catch
- {
- ClientProcess.DeviceConfig.TimeOut = 5000;
- }
- ClientProcess.DeviceConfig.ProtocolType = (uint)cbox_ProtocolType.SelectedIndex;
- }
- ClientProcess.DeviceConfig.IPAddress = tx_IpAddress.Text;
- try
- {
- ClientProcess.DeviceConfig.TCPPort = Convert.ToUInt32(tx_TCPPort.Text);
- ClientProcess.DeviceConfig.NetPassword = Convert.ToUInt32(tx_NetPassword.Text);
- }
- catch
- {
- MessageBox.Show("TCP端口号或网络密码不为数字串");
- return;
- }
- }
- ClientProcess.SaveMachineConfig();
- MessageBox.Show("保存成功");
- }
- private void Cbox_ConnectType_SelectedIndexChanged(object sender, EventArgs e)
- {
- if ( cbox_ConnectType.SelectedIndex == 0 )
- {// usb
- cbox_CommPort.Enabled = false;
- cbox_Baudrate.Enabled = false;
- cbox_ProtocolType.Enabled = false;
- tx_IpAddress.Enabled = false;
- tx_NetPassword.Enabled = false;
- tx_TCPPort.Enabled = false;
- }
- else if ( cbox_ConnectType.SelectedIndex == 1 )
- {// 串口
- cbox_CommPort.Enabled = true;
- cbox_Baudrate.Enabled = true;
- cbox_ProtocolType.Enabled = false;
- tx_IpAddress.Enabled = false;
- tx_NetPassword.Enabled = false;
- tx_TCPPort.Enabled = false;
- }
- else if (cbox_ConnectType.SelectedIndex == 2)
- {// 网络
- cbox_CommPort.Enabled = false;
- cbox_Baudrate.Enabled = false;
- cbox_ProtocolType.Enabled = true;
- tx_IpAddress.Enabled = true;
- tx_NetPassword.Enabled = true;
- tx_TCPPort.Enabled = true;
- }
- if (ClientProcess.DeviceConfig.MachineType == lyfzAttendanceLib.DeviceType.Old)
- {
- if (ClientProcess.DeviceConfig.License == 0)
- this.tx_MachineLicense.Text = "4335";
- else
- this.tx_MachineLicense.Text = ClientProcess.DeviceConfig.License.ToString();
- if (ClientProcess.DeviceConfig.WaitDialTime == 0)
- this.tx_TimeOut.Text = "5000";
- else
- this.tx_TimeOut.Text = ClientProcess.DeviceConfig.WaitDialTime.ToString();
- if (ClientProcess.DeviceConfig.TCPPort == 0)
- this.tx_TCPPort.Text = "5005";
- else
- this.tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
- if (ClientProcess.DeviceConfig.NetPassword == 0)
- this.tx_NetPassword.Text = "200409";
- else
- this.tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
- }
- else
- {
- if (ClientProcess.DeviceConfig.TCPPort == 0)
- this.tx_TCPPort.Text = "5005";
- else
- this.tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
- if (ClientProcess.DeviceConfig.NetPassword == 0)
- this.tx_NetPassword.Text = "200409";
- else
- this.tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
- }
- }
- private void Cbox_MachineType_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (cbox_MachineType.SelectedIndex == 0 )
- {
- // 启用部分控件;
- this.cbox_ProtocolType.Enabled = true;
- this.tx_MachineLicense.Enabled = true;
- this.tx_TimeOut.Enabled = true;
- ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.Old;
- this.tx_MachineLicense.Text = "4335";
- this.tx_TCPPort.Text = "5005";
- this.tx_NetPassword.Text = "200409";
- }
- else
- {
- // 禁用部分控件;
- this.cbox_ProtocolType.Enabled = false;
- this.tx_MachineLicense.Enabled = false;
- this.tx_TimeOut.Enabled = false;
- ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.New;
- this.tx_NetPassword.Text = "0";
- }
- }
- private void frmMachineConfig_Load(object sender, EventArgs e)
- {
- InitLoad();
- }
- private void InitLoad()
- {
- tx_MachineNumber.Text = ClientProcess.DeviceConfig.MachineNumber.ToString();
- if (ClientProcess.DeviceConfig.MachineType == lyfzAttendanceLib.DeviceType.Old)
- {
- cbox_MachineType.SelectedIndex = 0;
- this.tx_TimeOut.Text = ClientProcess.DeviceConfig.TimeOut.ToString();
- this.tx_MachineLicense.Text = ClientProcess.DeviceConfig.License.ToString();
- if (ClientProcess.DeviceConfig.ProtocolType == 0)
- cbox_ProtocolType.SelectedIndex = 0;// tcp
- else
- cbox_ProtocolType.SelectedIndex = 1;// udp
- }
- else
- {
- cbox_MachineType.SelectedIndex = 1;
- // 禁用部分控件;
- this.cbox_ProtocolType.Enabled = false;
- this.tx_MachineLicense.Enabled = false;
- this.tx_TimeOut.Enabled = false;
- }
- if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Usb)
- {
- cbox_CommPort.Enabled = false;
- cbox_Baudrate.Enabled = false;
- cbox_ProtocolType.Enabled = false;
- tx_IpAddress.Enabled = false;
- tx_NetPassword.Enabled = false;
- tx_TCPPort.Enabled = false;
- cbox_ConnectType.SelectedIndex = 0;
- }
- else if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Comm)
- {
- cbox_ProtocolType.Enabled = false;
- tx_IpAddress.Enabled = false;
- tx_NetPassword.Enabled = false;
- tx_TCPPort.Enabled = false;
- cbox_CommPort.SelectedIndex = (int)ClientProcess.DeviceConfig.ComPort;
- cbox_Baudrate.Text = ClientProcess.DeviceConfig.Baudrate.ToString();
- cbox_ConnectType.SelectedIndex = 1;
- }
- else if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Net)
- {
- cbox_CommPort.Enabled = false;
- cbox_Baudrate.Enabled = false;
- cbox_ProtocolType.Enabled = true;
- tx_IpAddress.Text = ClientProcess.DeviceConfig.IPAddress;
- tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
- tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
- cbox_ProtocolType.SelectedIndex = (int)ClientProcess.DeviceConfig.ProtocolType;
- cbox_ConnectType.SelectedIndex = 2;
- }
- }
- }
- }
|