How to Create Login Form Unique Design in C#
How to Create Login Form Unique Design in C# Visual Studio 2010
Hello Friends Today I Will Show You How to Create Login Form Design in C# Visual Studio 2015.
I Use:
1. Bunifu .NET UI Framework. (you can find my blog)
2. Icons8
I Use Simple Code in this project :
private void tbUserName_Enter(object sender, EventArgs e)
{
HUser.Visible = true;
HPass.Visible = false;
tbUserName.ForeColor = Color.DodgerBlue;
}
private void tbUserName_Leave(object sender, EventArgs e)
{
HUser.Visible = false;
HPass.Visible = false;
tbUserName.ForeColor = Color.DodgerBlue;
}
private void tbPassword_Enter(object sender, EventArgs e)
{
HUser.Visible = false;
HPass.Visible = true;
tbUserName.ForeColor = Color.DodgerBlue;
}
private void tbPassword_Leave(object sender, EventArgs e)
{
HUser.Visible = false;
HPass.Visible = false;
tbUserName.ForeColor = Color.DodgerBlue;
}
No comments: