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(); } private void Scan_Load(object sender, EventArgs e) { } private void button_keyboard_Click(object sender, EventArgs e) { System.Diagnostics.Process.Start("osk.exe"); } } }