How to show windows form on specific location in c#?
Answers
Answered by
0
public Form1()
{
InitializeComponent();
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(0, 0);
}
Similar questions