AnaProtocol.cs 746B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace GWSocketClient
  11. {
  12. public partial class AnaProtocol : Form
  13. {
  14. private string protocolData;
  15. public AnaProtocol(string pd = "")
  16. {
  17. InitializeComponent();
  18. this.protocolData = pd;
  19. }
  20. #region 窗体事件
  21. private void AnaProtocol_Load(object sender, EventArgs e)
  22. {
  23. rtbCmd.Text = this.protocolData;
  24. }
  25. #endregion
  26. private void buttonCancle_Click(object sender, EventArgs e)
  27. {
  28. }
  29. }
  30. }