Files
kou_zhaoxielou_shandong/口罩泄露定制款/UserControl/InputBoxForm.cs

31 lines
764 B
C#
Raw Normal View History

2026-01-16 20:53:33 +08:00
using System;
using System.Windows.Forms;
namespace _定制款.
{
public partial class InputBoxForm : Form
{
public string InputText { get; private set; }
public InputBoxForm(string title, string prompt)
{
InitializeComponent();
this.Text = title;
lblPrompt.Text = prompt;
}
private void btnOK_Click(object sender, EventArgs e)
{
InputText = txtInput.Text;
this.DialogResult = DialogResult.OK;
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Cancel;
this.Close();
}
}
}