I want to show a winform in the very right down corner just above the system tray,
How do I do that? Here is my code:
public static void Noti
You forgot this one:
fm.StartPosition = FormStartPosition.Manual;
What you'll have to work on next is putting the taskbar at, say, the left side of the screen and running the code on a machine that has the video DPI setting at a different value (like 125). You can only position the form accurately in its Load event. Don't set the client size.