1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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");
- }
- private void textBox_Scan_KeyUp(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- this.Close();
- }
- }
- }
|