Use the DeviceTests.SetFullscreenResolution to see the real resolution switching
View code on GitHub
Namespace: DeltaEngine.Tests.CoreAssembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Examples
/// <summary> /// Use the DeviceTests.SetFullscreenResolution to see the real resolution switching /// </summary> [Test] public void SetFullscreenMode() { var newFullscreenSize = new Size(1024, 768); Assert.IsFalse(window.IsFullscreen); bool fullscreenChangedWasCalled = false; window.FullscreenChanged += (size, b) => fullscreenChangedWasCalled = true; SetFullscreenWindow(newFullscreenSize); Assert.IsTrue(window.IsFullscreen); Assert.AreEqual(newFullscreenSize, window.TotalPixelSize); Assert.IsTrue(fullscreenChangedWasCalled); }
See Also