frmMachineConfig.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. using lyfzAttendance.Controller;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.IO;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Windows.Forms;
  12. namespace lyfzAttendance
  13. {
  14. public partial class frmMachineConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
  15. {
  16. public frmMachineConfig()
  17. {
  18. InitializeComponent();
  19. this.cbox_MachineType.SelectedIndexChanged += Cbox_MachineType_SelectedIndexChanged;
  20. this.cbox_ConnectType.SelectedIndexChanged += Cbox_ConnectType_SelectedIndexChanged;
  21. this.btn_SaveConfig.Click += Btn_SaveConfig_Click;
  22. this.btn_Cancel.Click += Btn_Cancel_Click;
  23. }
  24. private void Btn_Cancel_Click(object sender, EventArgs e)
  25. {
  26. this.Close();
  27. }
  28. private void Btn_SaveConfig_Click(object sender, EventArgs e)
  29. {
  30. if ( this.cbox_MachineType.SelectedIndex == 0 )
  31. {// 旧款指纹机;
  32. ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.Old;
  33. if (string.IsNullOrEmpty(tx_MachineLicense.Text))
  34. {
  35. MessageBox.Show("许可证不能空");
  36. return;
  37. }
  38. try
  39. {
  40. ClientProcess.DeviceConfig.License = Convert.ToUInt32(tx_MachineLicense.Text);
  41. }
  42. catch
  43. {
  44. MessageBox.Show("许可证只能是数字");
  45. return;
  46. }
  47. }
  48. else
  49. {// 新款指纹机;
  50. ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.New;
  51. }
  52. if (this.cbox_ConnectType.SelectedIndex == 0)
  53. {// usb
  54. ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Usb;
  55. }
  56. else if (this.cbox_ConnectType.SelectedIndex == 1)
  57. {// 串口;
  58. ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Comm;
  59. ClientProcess.DeviceConfig.ComPort = (uint)cbox_CommPort.SelectedIndex+1;
  60. ClientProcess.DeviceConfig.Baudrate = Convert.ToUInt32(cbox_Baudrate.Text);
  61. }
  62. else if (this.cbox_ConnectType.SelectedIndex == 2)
  63. {// 网络;
  64. ClientProcess.DeviceConfig.ConnectType = lyfzAttendanceLib.ConnectMethod.Net;
  65. if ( ClientProcess.DeviceConfig.MachineType == (int)lyfzAttendanceLib.DeviceType.Old)
  66. {
  67. try
  68. {
  69. ClientProcess.DeviceConfig.TimeOut = Convert.ToUInt32(tx_TimeOut.Text);
  70. }
  71. catch
  72. {
  73. ClientProcess.DeviceConfig.TimeOut = 5000;
  74. }
  75. ClientProcess.DeviceConfig.ProtocolType = (uint)cbox_ProtocolType.SelectedIndex;
  76. }
  77. ClientProcess.DeviceConfig.IPAddress = tx_IpAddress.Text;
  78. try
  79. {
  80. ClientProcess.DeviceConfig.TCPPort = Convert.ToUInt32(tx_TCPPort.Text);
  81. ClientProcess.DeviceConfig.NetPassword = Convert.ToUInt32(tx_NetPassword.Text);
  82. }
  83. catch
  84. {
  85. MessageBox.Show("TCP端口号或网络密码不为数字串");
  86. return;
  87. }
  88. }
  89. ClientProcess.SaveMachineConfig();
  90. MessageBox.Show("保存成功");
  91. }
  92. private void Cbox_ConnectType_SelectedIndexChanged(object sender, EventArgs e)
  93. {
  94. if ( cbox_ConnectType.SelectedIndex == 0 )
  95. {// usb
  96. cbox_CommPort.Enabled = false;
  97. cbox_Baudrate.Enabled = false;
  98. cbox_ProtocolType.Enabled = false;
  99. tx_IpAddress.Enabled = false;
  100. tx_NetPassword.Enabled = false;
  101. tx_TCPPort.Enabled = false;
  102. }
  103. else if ( cbox_ConnectType.SelectedIndex == 1 )
  104. {// 串口
  105. cbox_CommPort.Enabled = true;
  106. cbox_Baudrate.Enabled = true;
  107. cbox_ProtocolType.Enabled = false;
  108. tx_IpAddress.Enabled = false;
  109. tx_NetPassword.Enabled = false;
  110. tx_TCPPort.Enabled = false;
  111. }
  112. else if (cbox_ConnectType.SelectedIndex == 2)
  113. {// 网络
  114. cbox_CommPort.Enabled = false;
  115. cbox_Baudrate.Enabled = false;
  116. cbox_ProtocolType.Enabled = true;
  117. tx_IpAddress.Enabled = true;
  118. tx_NetPassword.Enabled = true;
  119. tx_TCPPort.Enabled = true;
  120. }
  121. if (ClientProcess.DeviceConfig.MachineType == lyfzAttendanceLib.DeviceType.Old)
  122. {
  123. if (ClientProcess.DeviceConfig.License == 0)
  124. this.tx_MachineLicense.Text = "4335";
  125. else
  126. this.tx_MachineLicense.Text = ClientProcess.DeviceConfig.License.ToString();
  127. if (ClientProcess.DeviceConfig.WaitDialTime == 0)
  128. this.tx_TimeOut.Text = "5000";
  129. else
  130. this.tx_TimeOut.Text = ClientProcess.DeviceConfig.WaitDialTime.ToString();
  131. if (ClientProcess.DeviceConfig.TCPPort == 0)
  132. this.tx_TCPPort.Text = "5005";
  133. else
  134. this.tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
  135. if (ClientProcess.DeviceConfig.NetPassword == 0)
  136. this.tx_NetPassword.Text = "200409";
  137. else
  138. this.tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
  139. }
  140. else
  141. {
  142. if (ClientProcess.DeviceConfig.TCPPort == 0)
  143. this.tx_TCPPort.Text = "5005";
  144. else
  145. this.tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
  146. if (ClientProcess.DeviceConfig.NetPassword == 0)
  147. this.tx_NetPassword.Text = "200409";
  148. else
  149. this.tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
  150. }
  151. }
  152. private void Cbox_MachineType_SelectedIndexChanged(object sender, EventArgs e)
  153. {
  154. if (cbox_MachineType.SelectedIndex == 0 )
  155. {
  156. // 启用部分控件;
  157. this.cbox_ProtocolType.Enabled = true;
  158. this.tx_MachineLicense.Enabled = true;
  159. this.tx_TimeOut.Enabled = true;
  160. ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.Old;
  161. this.tx_MachineLicense.Text = "4335";
  162. this.tx_TCPPort.Text = "5005";
  163. this.tx_NetPassword.Text = "200409";
  164. }
  165. else
  166. {
  167. // 禁用部分控件;
  168. this.cbox_ProtocolType.Enabled = false;
  169. this.tx_MachineLicense.Enabled = false;
  170. this.tx_TimeOut.Enabled = false;
  171. ClientProcess.DeviceConfig.MachineType = lyfzAttendanceLib.DeviceType.New;
  172. this.tx_NetPassword.Text = "0";
  173. }
  174. }
  175. private void frmMachineConfig_Load(object sender, EventArgs e)
  176. {
  177. InitLoad();
  178. }
  179. private void InitLoad()
  180. {
  181. tx_MachineNumber.Text = ClientProcess.DeviceConfig.MachineNumber.ToString();
  182. if (ClientProcess.DeviceConfig.MachineType == lyfzAttendanceLib.DeviceType.Old)
  183. {
  184. cbox_MachineType.SelectedIndex = 0;
  185. this.tx_TimeOut.Text = ClientProcess.DeviceConfig.TimeOut.ToString();
  186. this.tx_MachineLicense.Text = ClientProcess.DeviceConfig.License.ToString();
  187. if (ClientProcess.DeviceConfig.ProtocolType == 0)
  188. cbox_ProtocolType.SelectedIndex = 0;// tcp
  189. else
  190. cbox_ProtocolType.SelectedIndex = 1;// udp
  191. }
  192. else
  193. {
  194. cbox_MachineType.SelectedIndex = 1;
  195. // 禁用部分控件;
  196. this.cbox_ProtocolType.Enabled = false;
  197. this.tx_MachineLicense.Enabled = false;
  198. this.tx_TimeOut.Enabled = false;
  199. }
  200. if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Usb)
  201. {
  202. cbox_CommPort.Enabled = false;
  203. cbox_Baudrate.Enabled = false;
  204. cbox_ProtocolType.Enabled = false;
  205. tx_IpAddress.Enabled = false;
  206. tx_NetPassword.Enabled = false;
  207. tx_TCPPort.Enabled = false;
  208. cbox_ConnectType.SelectedIndex = 0;
  209. }
  210. else if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Comm)
  211. {
  212. cbox_ProtocolType.Enabled = false;
  213. tx_IpAddress.Enabled = false;
  214. tx_NetPassword.Enabled = false;
  215. tx_TCPPort.Enabled = false;
  216. cbox_CommPort.SelectedIndex = (int)ClientProcess.DeviceConfig.ComPort;
  217. cbox_Baudrate.Text = ClientProcess.DeviceConfig.Baudrate.ToString();
  218. cbox_ConnectType.SelectedIndex = 1;
  219. }
  220. else if (ClientProcess.DeviceConfig.ConnectType == lyfzAttendanceLib.ConnectMethod.Net)
  221. {
  222. cbox_CommPort.Enabled = false;
  223. cbox_Baudrate.Enabled = false;
  224. cbox_ProtocolType.Enabled = true;
  225. tx_IpAddress.Text = ClientProcess.DeviceConfig.IPAddress;
  226. tx_TCPPort.Text = ClientProcess.DeviceConfig.TCPPort.ToString();
  227. tx_NetPassword.Text = ClientProcess.DeviceConfig.NetPassword.ToString();
  228. cbox_ProtocolType.SelectedIndex = (int)ClientProcess.DeviceConfig.ProtocolType;
  229. cbox_ConnectType.SelectedIndex = 2;
  230. }
  231. }
  232. }
  233. }