using System; using System.Windows.Forms; namespace Mesnac.Action.ChemicalWeighing.LjDry { public partial class FrmDry : Form { public FrmDry() { InitializeComponent(); } private int _id = 0; public FrmDry(int id) : this() { this._id = id; } private void btnCancel_Click(object sender, EventArgs e) { this.Close(); } } }