Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

34 linhas
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. }