您的位置:首页 > 编程语言 > C#

C#旅途~登录框

2016-03-09 21:11 495 查看
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 密码框
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
label3.Font = new Font("楷体", 15);
label3.ForeColor = Color.Red;
label3.Text = "欢迎光临~";

label1.Font = new Font("楷体", 12);
label1.ForeColor = Color.Black;
label1.Text = "账号:";

label2.Font = new Font("楷体", 12);
label2.ForeColor = Color.Black;
label2.Text = "密码:";

textBox2.UseSystemPasswordChar = true;
}

private void label3_Click(object sender, EventArgs e)
{

}

private void textBox1_TextChanged(object sender, EventArgs e)
{

}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: