public Box(int number, float x, float y,MainForm MF) { this.x = x; this.y = y; this.number = number; this.MF = MF; }
public BoxTable(MainForm MF) { this.MF = MF; mask = new Mask_Node[25]; box = new Box[25]; MaskCreate(); this.MF.KeyDown += new System.Windows.Forms.KeyEventHandler(MF_KeyDown); }
static void Main(string[] args) { MainForm MF = new MainForm(); Application.Run(MF); }