You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDry/FrmDry.cs

25 lines
455 B
C#

1 year ago
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();
}
}
}