Exemple #1
0
 public Box(int number, float x, float y,MainForm MF)
 {
     this.x = x;
     this.y = y;
     this.number = number;
     this.MF = MF;
 }
Exemple #2
0
        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);
        }
Exemple #3
0
 static void Main(string[] args)
 {
     MainForm MF = new MainForm();
     Application.Run(MF);
 }