28 lines
631 B
C#
28 lines
631 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using UI.Framework.Forms;
|
|
|
|
namespace Delivery.Plugin
|
|
{
|
|
public partial class InputKeywordForm : BaseForm
|
|
{
|
|
public string Code { get; private set; }
|
|
public InputKeywordForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InputKeywordForm_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
this.Code = this.textBox1.Text;
|
|
}
|
|
}
|
|
}
|