sc 11 months ago
parent
commit
f552120fa0
  1. 2
      UserClass/AsyncTcpClient.cs
  2. 3
      ViewModel/MainWindowViewModel.cs

2
UserClass/AsyncTcpClient.cs

@ -40,7 +40,7 @@ namespace SunlightCentralizedControlManagement_SCCM_.UserClass
{ {
DataRow drEmployee = MainWindowViewModel.Machines.Select("IP='" + client.IP + "' AND port='" + client.Port + "'").First(); DataRow drEmployee = MainWindowViewModel.Machines.Select("IP='" + client.IP + "' AND port='" + client.Port + "'").First();
drEmployee.BeginEdit(); drEmployee.BeginEdit();
drEmployee["State"] = "101"; drEmployee["State"] = "801";
drEmployee.EndEdit(); drEmployee.EndEdit();
drEmployee.AcceptChanges(); drEmployee.AcceptChanges();
drEmployee.ClearErrors(); drEmployee.ClearErrors();

3
ViewModel/MainWindowViewModel.cs

@ -82,7 +82,8 @@ namespace SunlightCentralizedControlManagement_SCCM_.ViewModel
{ {
for (int i = 0; i < Machinesdata_Count; i++) for (int i = 0; i < Machinesdata_Count; i++)
{ {
// MachiensTcpClient[i].SendAsync("SC800"); if ( Selet_Machines(Machines,"State", i).ToString() =="801")
MachiensTcpClient[i].SendAsync("SC800:SCCM["+ MachiensTcpClient[i].IP+";"+ MachiensTcpClient[i].Port+"]");
} }
} }
void DisTimer_500MS(object sender, EventArgs e)//Tick_Event周期执行事件500MS void DisTimer_500MS(object sender, EventArgs e)//Tick_Event周期执行事件500MS

Loading…
Cancel
Save