WindowTests SetFullscreenMode Method Delta Engine Documentation
Use the DeviceTests.SetFullscreenResolution to see the real resolution switching View code on GitHub

Namespace: DeltaEngine.Tests.Core
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void SetFullscreenMode()
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