26 lines
762 B
C#
26 lines
762 B
C#
using Server.Forms;
|
|
using Server.MessagePack;
|
|
using Server.Connection;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Server.Handle_Packet
|
|
{
|
|
public class HandleShell
|
|
{
|
|
public HandleShell(MsgPack unpack_msgpack, Clients client)
|
|
{
|
|
FormShell shell = (FormShell)Application.OpenForms["shell:" + client.ID];
|
|
if (shell != null)
|
|
{
|
|
shell.richTextBox1.AppendText(unpack_msgpack.ForcePathObject("ReadInput").AsString);
|
|
shell.richTextBox1.SelectionStart = shell.richTextBox1.TextLength;
|
|
shell.richTextBox1.ScrollToCaret();
|
|
}
|
|
}
|
|
}
|
|
} |