Enter.cs 603 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace MOTINOVA_Motor_Factory_Set
  9. {
  10. public partial class Enter : Form
  11. {
  12. public Enter()
  13. {
  14. InitializeComponent();
  15. }
  16. private void button1_Click(object sender, EventArgs e)
  17. {
  18. this.Close();
  19. }
  20. private void Enter_Load(object sender, EventArgs e)
  21. {
  22. textBox_User.Text = "";
  23. textBox_Passwd.Text = ""
  24. ; }
  25. }
  26. }