34 行
765 B
C#
34 行
765 B
C#
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
|
|
{
|
|
private string FeventName;
|
|
private string Fcontent;
|
|
|
|
public LogForm(string eventName, string Content)
|
|
{
|
|
FeventName = eventName;
|
|
Fcontent = Content;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void LogForm_Load(object sender, EventArgs e)
|
|
{
|
|
this.Text = FeventName;
|
|
this.richTextBox1.Text = Fcontent;
|
|
}
|
|
}
|
|
}
|