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.
25 lines
455 B
C#
25 lines
455 B
C#
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();
|
|
}
|
|
}
|
|
} |