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.

34 line
765 B

  1. using Glorysoft.SECS.EQP.Utilities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows.Forms;
  12. namespace ARI.EAP.HOST
  13. {
  14. public partial class LogForm : Form
  15. {
  16. private string FeventName;
  17. private string Fcontent;
  18. public LogForm(string eventName, string Content)
  19. {
  20. FeventName = eventName;
  21. Fcontent = Content;
  22. InitializeComponent();
  23. }
  24. private void LogForm_Load(object sender, EventArgs e)
  25. {
  26. this.Text = FeventName;
  27. this.richTextBox1.Text = Fcontent;
  28. }
  29. }
  30. }