frm_PassWord.cs
上传用户:linjjii
上传日期:2016-02-09
资源大小:1906k
文件大小:1k
源码类别:

远程控制编程

开发平台:

Windows_Unix

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace INCUserver
  9. {
  10.     public partial class frm_PassWord : Form
  11.     {
  12.         /// <summary>
  13.         /// 密码
  14.         /// </summary>
  15.         public string Password
  16.         {
  17.             get { return txt_PassWord.Text; }
  18.         }
  19.         public frm_PassWord()
  20.         {
  21.             InitializeComponent();
  22.             txt_PassWord.Focus();
  23.         }
  24.         private void btn_Enter_Click(object sender, EventArgs e)
  25.         {
  26.             this.Close();
  27.         }
  28.         private void btn_Cancel_Click(object sender, EventArgs e)
  29.         {
  30.             this.Close();
  31.         }
  32.     }
  33. }