1234567891011121314151617181920212223242526272829303132333435363738 |
- using CCWin;
- 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 MOKA_Factory_Tools
- {
- public partial class Verify : Skin_Color
- {
- public Verify()
- {
- InitializeComponent();
- }
- private void Verify_Load(object sender, EventArgs e)
- {
- }
- private void textBox1_KeyDown(object sender, KeyEventArgs e)
- {
- // 判断是否回车登录;
- if (e.KeyCode == Keys.Enter)
- {
- if ( TB_PASSWORD.Text == "123456" )
- {
- this.Close();
- }
- }
- }
- }
- }
|