Computer Science, asked by madhu3767, 1 year ago

How to show windows form on specific location in c#?

Answers

Answered by aravinthveer006
0

public Form1()

{

   InitializeComponent();

   this.StartPosition = FormStartPosition.Manual;

   this.Location = new Point(0, 0);

}

Similar questions