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:
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;
Just set its position to bottom right... assuming that is where the notification area is for every user...