12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.SMSManagement.SendRecords
- {
- public partial class FrmSMSContent : LYFZ.Software.UI.SMSManagement.SendRecords.FrmSMSContent
- {
- public string Content;
- public FrmSMSContent()
- {
- }
- #region 加载
- protected override void FrmSMSContent_Load(object sender, EventArgs e)
- {
- try
- {
- if (!string.IsNullOrEmpty(Content))
- {
- txtConetent.Text = Content;
- }
- }
- catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
- }
- #endregion
- }
- }
|