Сам понять не могу. Хотел найти, где именно выставляеться позиция окна "по умолчанию". Поковырял и конструктор:
Code
/// <summary> /// Initializes a new instance of this class, which provides basic graphics device initialization, game logic, rendering code, and a game loop. Reference page contains code sample. /// </summary> public Game() { FrameworkDispatcher.Update(); this.EnsureHost(); this.launchParameters = new LaunchParameters(); this.gameComponents = new GameComponentCollection(); this.gameComponents.ComponentAdded += new EventHandler<GameComponentCollectionEventArgs>(this.GameComponentAdded); this.gameComponents.ComponentRemoved += new EventHandler<GameComponentCollectionEventArgs>(this.GameComponentRemoved); this.content = new ContentManager((IServiceProvider) this.gameServices); this.host.Window.Paint += new EventHandler<EventArgs>(this.Paint); this.clock = new GameClock(); this.totalGameTime = TimeSpan.Zero; this.accumulatedElapsedGameTime = TimeSpan.Zero; this.lastFrameElapsedGameTime = TimeSpan.Zero; this.targetElapsedTime = TimeSpan.FromTicks(166667L); this.inactiveSleepTime = TimeSpan.FromMilliseconds(20.0); }