dc/LogForm.cs

34 rivejä
765 B
C#

2022-04-01 17:03:54 +08:00
using Glorysoft.SECS.EQP.Utilities;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ARI.EAP.HOST
{
public partial class LogForm : Form
{
2022-12-16 13:01:24 +08:00
private string FeventName;
private string Fcontent;
2022-04-01 17:03:54 +08:00
2022-12-16 13:01:24 +08:00
public LogForm(string eventName, string Content)
2022-04-01 17:03:54 +08:00
{
FeventName = eventName;
2022-12-16 13:01:24 +08:00
Fcontent = Content;
2022-04-01 17:03:54 +08:00
InitializeComponent();
}
private void LogForm_Load(object sender, EventArgs e)
{
2022-12-16 13:01:24 +08:00
this.Text = FeventName;
this.richTextBox1.Text = Fcontent;
2022-04-01 17:03:54 +08:00
}
}
}