mirror of
https://github.com/abdelkader/vCardEditor
synced 2025-12-12 08:27:19 +07:00
22 lines
420 B
C#
22 lines
420 B
C#
using System.Windows.Forms;
|
|
|
|
namespace vCardEditor.View.Customs
|
|
{
|
|
public partial class CustumInputDialog : Form
|
|
{
|
|
public CustumInputDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public string input { get; set; }
|
|
|
|
private void CustumInputDialog_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
input = tbInput.Text;
|
|
}
|
|
|
|
|
|
}
|
|
}
|