示例#1
0
 void LoadHelpPage(int page)
 {
     if (System.IO.File.Exists(IO.Paths.StartupPath + "Help/" + helpFolder + "/" + "page" + (page + 1).ToString() + ".png"))
     {
         picHelpPage.Image      = SurfaceManager.LoadSurface(IO.Paths.StartupPath + "Help/" + helpFolder + "/" + "page" + (page + 1).ToString() + ".png", true, false);
         lblPageNumber.Text     = "Page " + (page + 1).ToString();
         lblPageNumber.Location = new Point(this.Width - lblPageNumber.Width - 40, 5);
     }
 }