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:

Example:

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;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With