frm_PassWord.cs
上传用户:linjjii
上传日期:2016-02-09
资源大小:1906k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace INCUserver
- {
- public partial class frm_PassWord : Form
- {
- /// <summary>
- /// 密码
- /// </summary>
- public string Password
- {
- get { return txt_PassWord.Text; }
- }
- public frm_PassWord()
- {
- InitializeComponent();
- txt_PassWord.Focus();
- }
- private void btn_Enter_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void btn_Cancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }