Добавьте ToolTip и задайте параметры.
Откройте окно свойств элемента управления, в котором хотите сделать подсказку и введите текст подсказки.
Form1.cs
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
WindowsFormsApplication1 {
-
public
partial
class
Form1 : Form {
-
public
Form1() {
-
InitializeComponent();
-
}
-
private
void
button1_Click(
object
sender, EventArgs e) {
-
if
(textBox1.TextLength == 6 & textBox2.Text ==
"123456"
) {
-
MessageBox.Show(
"Welcome dear "
+ textBox1.Text +
"!"
);
-
}
-
else
{
-
MessageBox.Show(
"Invalid password!"
);
-
}
-
}
-
}
}
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
WindowsFormsApplication1 {
-
public
partial
class
Form1 : Form {
-
public
Form1() {
-
InitializeComponent();
-
}
-
private
void
button1_Click(
object
sender, EventArgs e) {
-
if
(textBox1.TextLength == 6 & textBox2.Text ==
"123456"
) {
-
MessageBox.Show(
"Welcome dear "
+ textBox1.Text +
"!"
);
-
}
-
else
{
-
MessageBox.Show(
"Invalid password!"
);
-
}
-
}
-
}
}