Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create Notifications Box

How to show a box in the taskbar?In the Forms i have added the image, but how can I show in the taskbar at the bottom right?

Like This:

enter image description here

Example:

enter image description here

like image 202
jolly Avatar asked Dec 03 '25 07:12

jolly


1 Answers

You probably want to look into the NotifyIcon Class, since you are talking about the Task Bar.

For your notification form, you would target the primary screens lower right corner:

Something like this:

notifyForm.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - notifyForm.Width,
                                Screen.PrimaryScreen.WorkingArea.Height - notifyForm.Height);

Make sure your notification has the following property set:

notifyForm.StartPosition = FormStartPosition.Manual;
like image 109
LarsTech Avatar answered Dec 05 '25 20:12

LarsTech



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!