How can I place a form at the bottom-right of the screen when it loads using C#?
try something on the lines of
Rectangle workingArea = Screen.GetWorkingArea(this); this.Location = new Point(workingArea.Right - Size.Width, workingArea.Bottom - Size.Height);
Hope it works well for you.
1.4m articles
1.4m replys
5 comments
57.0k users