c#仿照qq登录界面编辑框内容操作_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c#仿照qq登录界面编辑框内容操作

c#仿照qq登录界面编辑框内容操作

 2017/9/2 15:08:44  enych  程序员俱乐部  我要评论(0)
  • 摘要:usingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;namespace案例演示{publicpartialclassfrmlogo:Form{publicfrmlogo(){InitializeComponent();}intusi,pwi;privatevoidfrmlogo_Load(objectsender,EventArgse){}privatevoidtextBox1_MouseDown(objectsender
  • 标签:C# 内容 操作 QQ

using System;
using System.Drawing;
using System.Windows.Forms;

namespace 案例演示
{
public partial class frmlogo : Form
{
public frmlogo()
{
InitializeComponent();
}
int usi,pwi;
private void frmlogo_Load(object sender, EventArgs e)
{

}

private void textBox1_MouseDown(object sender, MouseEventArgs e)
{
usi++;
if (usi==1)
{
textBox1.Text = "";
}
if (textBox2.Text=="")
{
pwi = 0;
textBox2.Text = "密码";
}


}

private void textBox2_MouseDown(object sender, MouseEventArgs e)
{
pwi++;
if (textBox1.Text=="")
{
textBox1.Text = "用户名";
usi = 0;
}
if (pwi==1)
{
textBox2.Text = "";
}
}

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
textBox1.ForeColor = Color.Black;
}

private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
textBox2.ForeColor = Color.Black;
}

private void button1_Click(object sender, EventArgs e)
{

}
}
}

2017-09-02

上一篇: 使用Razor视图引擎来生成邮件内容 下一篇: 没有下一篇了!
发表评论
用户名: 匿名