Set window position

I set fixed size for window without border

this.Window.AllowUserResizing = true;
this.Window.Title = "PaymentSoft";
graphics.SynchronizeWithVerticalRetrace = true;
this.Window.IsBorderless = true;
IsFixedTimeStep = true;
TargetElapsedTime = TimeSpan.FromMilliseconds(16);
graphics.PreferredBackBufferHeight = 1024;
graphics.PreferredBackBufferWidth = 1280;

How can I set window position on 0;0?

You can just set the window position using the GameWindow.Position property.

It does not work. I did all as described here https://gitter.im/MonoGame/MonoGame

this property work only into Initialize() method. Thank Harry Cra0zy

Oops, I forgot about this issue. I have a PR up to fix it: https://github.com/MonoGame/MonoGame/pull/5814