Visual Programming using C#
Lecturer: Saman M. Almufti / Kurdistan Region, Nawroz University, (Visitor : Ararat Institute)
facebook: https://www.facebook.com/saman.malmufti
YouTube Link:https://youtu.be/WpkiJ4rgc68
IN THIS LECTURE:
1- adding new form
2-adding ToolTip
3-adding NotifyIcon
Convert to study guideBETA
Transform any presentation into a summarized study guide, highlighting the most important points and key insights.
1 of 11
Download to read offline
More Related Content
Vp lecture 7 ararat
2. You can add any number of forms to
your application as in figures.
Project menu>>Add Windows
Form>>add New Item window>>Add.
4. Example
Form2 f2 = new Form2();
this.Hide();
f2.Show();
Form1 f1 = new Form1();
this.Hide();
f1.Show();
Application.Exit();
5. Add toolTip to your form.
Then select any control and
set the ToolTip for each
control.
6. A notification icon notifies the user. In Windows there
is a Notification Icons section typically in the bottom
right corner.
7. example 1. Open new project.
2. Add NotifyIcon
control to your
project.
Note:- if you dont put
an icon the
notification balloon
will not appear
8. Coding
Double click on form1 and write underline code.
private void Form1_Load(object sender, EventArgs e)
{
notifyIcon1.ShowBalloonTip(1000);
}