コード例 #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;
 }