Evbpc.Framework.Windows.Forms.Form.SetDesktopLocation C# (CSharp) Method

SetDesktopLocation() public method

Sets the location of the form in desktop coordinates.
https://msdn.microsoft.com/en-us/library/system.windows.forms.form.setdesktoplocation(v=vs.110).aspx
public SetDesktopLocation ( int x, int y ) : void
x int The x-coordinate of the form's .
y int The y-coordinate of the form's .
return void
        public void SetDesktopLocation(int x, int y)
        {
            Location = new Point(x, y);
        }