Guest User

Untitled

a guest
Jul 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. namespace quiz_app
  2. {
  3. public partial class Form1 : Form
  4. {
  5. public Form1()
  6. {
  7. InitializeComponent();
  8. }
  9.  
  10. private void Form1_Load(object sender, EventArgs e)
  11. {
  12.  
  13. }
  14.  
  15. private void btn1_Click(object sender, EventArgs e)
  16. {
  17. if (txtbox.Text == "vulpix")
  18. {
  19. lbl4.Text = "you are correct! you won a trip to Seymour!";
  20. }
  21. else
  22. {
  23. lbl4.Text = "you are wrong! but still get a trip to Seymour!";
  24. }
  25.  
  26.  
  27. }
  28. }
  29. }
Add Comment
Please, Sign In to add comment