示例#1
0
 public static void drenaje(PictureBox pic, Label des, Button right, Button Left)
 {
     pic.Image    = Image.FromFile("Indren.jpg");
     pic.SizeMode = PictureBoxSizeMode.StretchImage;
     des.Text     = "While walking you stumble upon Pennywise, \n he attacks you and lose health, \n but manage to escape.";
     Left.Visible = false;
     right.Text   = "Next scene";
     right.Click += (sender, args) =>
     {
         In4.Ben(pic, des, right, Left);
     };
 }
示例#2
0
 public static void Sewer(PictureBox pic, Label des, Button right, Button Left)
 {
     pic.Image    = Image.FromFile("In2.jpg");
     pic.SizeMode = PictureBoxSizeMode.StretchImage;
     des.Text     = "After talking with your friends, you decide to go to the sewers \n to look for Georgie, who might still be alive." +
                    "\n You see a girl's abandoned shoe. What do you do?";
     right.Text   = "Go deeper in the sewers";
     Left.Text    = "Go elsewhere";
     right.Click += (sender, args) =>
     {
         In3.drenaje(pic, des, right, Left);
     };
     Left.Click += (sender, args) =>
     {
         In4.Ben(pic, des, right, Left);
     };
 }