예제 #1
0
파일: Form1.cs 프로젝트: ajt67543/15Puzzle
        public static void Main()
        {
            PuzzleForm f = new PuzzleForm(); // create Form

            Application.Run(f);              // special method to launch application
            // and provide event thread
        }
예제 #2
0
파일: Form1.cs 프로젝트: ajt67543/15Puzzle
 public Tile(Image img, int index, PuzzleForm form)
 {
     this.img   = img;
     this.value = index;
     this.form  = form;
 }