12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Welling_Motor_Debug_Tool
- {
- public partial class Scan : Form
- {
- public Scan()
- {
- InitializeComponent();
- }
- private void button_Enter_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|