|
|
|
|
using HslCommunication.LogNet;
|
|
|
|
|
using HZH_Controls.Forms;
|
|
|
|
|
|
|
|
|
|
using NewLife.Threading;
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using RfidWeb.Frm;
|
|
|
|
|
using Tool;
|
|
|
|
|
|
|
|
|
|
namespace RfidWeb
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private ILogNet logNet = ILogNetFactory.GetLogNet;
|
|
|
|
|
|
|
|
|
|
TimerX _timer;
|
|
|
|
|
public FormMain()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
//if (this.FormBorderStyle == FormBorderStyle.None)
|
|
|
|
|
//{
|
|
|
|
|
// this.FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
|
|
|
// this.WindowState = FormWindowState.Normal;
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// this.FormBorderStyle = FormBorderStyle.None;
|
|
|
|
|
// this.WindowState = FormWindowState.Maximized;
|
|
|
|
|
//}
|
|
|
|
|
Init();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Init()
|
|
|
|
|
{
|
|
|
|
|
_timer = new TimerX(TimeState, null, 10, 1000);
|
|
|
|
|
// 如果所有的日志在记录之前需要在控制台显示出来
|
|
|
|
|
logNet.BeforeSaveToFile += (object sender, HslEventArgs e) =>
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(e.HslMessage.ToString());
|
|
|
|
|
};
|
|
|
|
|
logNet.ConsoleOutput = true;
|
|
|
|
|
logNet.WriteInfo("nihao");
|
|
|
|
|
|
|
|
|
|
this.panContent.Controls.Clear();
|
|
|
|
|
this.panContent.Controls.Add(new UserMain());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>移除过期的缓存项</summary>
|
|
|
|
|
void TimeState(Object state)
|
|
|
|
|
{
|
|
|
|
|
var dataTime = DateTime.Now;
|
|
|
|
|
this.Invoke(() =>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
label1.Text = dataTime.ToString("yyyy'/'MM'/'dd");
|
|
|
|
|
label2.Text = dataTime.ToString("HH:mm:ss");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void btnExit_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Application.Exit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|