FrmSMSContent.cs 842 B

12345678910111213141516171819202122232425262728293031323334
  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.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.SMSManagement.SendRecords
  10. {
  11. public partial class FrmSMSContent : LYFZ.Software.UI.SMSManagement.SendRecords.FrmSMSContent
  12. {
  13. public string Content;
  14. public FrmSMSContent()
  15. {
  16. }
  17. #region 加载
  18. protected override void FrmSMSContent_Load(object sender, EventArgs e)
  19. {
  20. try
  21. {
  22. if (!string.IsNullOrEmpty(Content))
  23. {
  24. txtConetent.Text = Content;
  25. }
  26. }
  27. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  28. }
  29. #endregion
  30. }
  31. }