Form4.cs 655 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace CLRTest
  10. {
  11. public partial class Form4 : Form
  12. {
  13. public Form4()
  14. {
  15. InitializeComponent();
  16. }
  17. private void button1_Click(object sender, EventArgs e)
  18. {
  19. if (this.textBox1.Text == "0523")
  20. {
  21. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  22. }
  23. else {
  24. MessageBox.Show("密码不正确");
  25. }
  26. }
  27. }
  28. }