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
WindowsFormsApp34 {
public
partial
class
Form1 : Form {
public
Form1()
{
InitializeComponent();
}
private
void
Form1_Load(
object
sender, EventArgs e)
{
Label l1 =
new
Label();
l1.Location =
new
Point(140, 122);
l1.Text =
"Name"
;
this
.Controls.Add(l1);
TextBox box1 =
new
TextBox();
box1.Location =
new
Point(248, 119);
box1.BorderStyle = BorderStyle.FixedSingle;
this
.Controls.Add(box1);
Label l2 =
new
Label();
l2.Location =
new
Point(140, 152);
l2.Text =
"Password"
;
this
.Controls.Add(l2);
TextBox box2 =
new
TextBox();
box2.Location =
new
Point(248, 145);
box2.BorderStyle = BorderStyle.FixedSingle;
this
.Controls.Add(box2);
ToolTip t =
new
ToolTip();
t.Active =
true
;
t.AutoPopDelay = 4000;
t.InitialDelay = 600;
t.IsBalloon =
true
;
t.SetToolTip(box1,
"Name should start with Capital letter"
);
t.SetToolTip(box2,
"Password should be greater than 8 words"
);
}
}
}