Mango Deployed アプリを実行している限り、ゲームを 60fps で実行できます。
以下のコードはMSDN: Game at 60fpsから引用されたものです。
60Hzで実行されるゲームタイマー間隔
timer.UpdateInterval = TimeSpan.FromTicks(166667);
イベント ハンドラーを作成する
public Game1()
{
graphics = new GraphicsDeviceManager(this);
graphics.PreparingDeviceSettings += new EventHandler<PreparingDeviceSettingsEventArgs>(graphics_PreparingDeviceSettings);
// Frame rate is 60 fps
TargetElapsedTime = TimeSpan.FromTicks(166667);
}
次に、ハンドラーを実装します
void graphics_PreparingDeviceSettings(object sender, PreparingDeviceSettingsEventArgs e)
{
e.GraphicsDeviceInformation.PresentationParameters.PresentationInterval = PresentInterval.One;
}