old_flsystem/应用/Delivery.Plugin/InputKeywordForm.cs

28 lines
631 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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;
}
}
}