1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace MOTINOVA_Motor_Factory_Set
- {
- public partial class Enter : Form
- {
- public Enter()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void Enter_Load(object sender, EventArgs e)
- {
- textBox_User.Text = "";
- textBox_Passwd.Text = ""
- ; }
- }
- }
|