You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
772 B
30 lines
772 B
using Autofac;
|
|
using HybirdFrameworkServices.Netty;
|
|
using HybirdFrameworkServices.System;
|
|
using log4net;
|
|
|
|
namespace WinFormStarter;
|
|
|
|
public partial class Form1 : Form
|
|
{
|
|
private ILog _log = LogManager.GetLogger(typeof(Form1));
|
|
private SysUserServices _sysUserServices;
|
|
|
|
public Form1(SysUserServices sysUserServices)
|
|
{
|
|
_sysUserServices = sysUserServices;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
Server server = AppInfo.Container.Resolve<Server>();
|
|
server.Begin(9000);
|
|
}
|
|
|
|
private void button2_Click(object sender, EventArgs e)
|
|
{
|
|
Server server = AppInfo.Container.Resolve<Server>();
|
|
server.Send(new byte[] { 1, 2, 3, 4, 9, 5, 6, 6, 7 });
|
|
}
|
|
} |