old_flsystem/应用/AutoAnswer/CommonForm.cs

24 lines
606 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
using System.Windows.Forms;
using UI.Framework.Forms;
namespace AutoAnswer
{
public partial class CommonForm : BaseForm
{
public CommonForm(string text)
{
InitializeComponent();
this.Text = this.Text.Replace("@", text);
this.labelControl1.Text = labelControl1.Text.Replace("@", text);
}
public string Strs = string.Empty;
private void CommonForm_FormClosing(object sender, FormClosingEventArgs e)
{
Strs = memoEdit1.Text.Trim();
this.DialogResult = DialogResult.OK;
}
}
}