WindowVisualTests ShowCursorAndToggleHideWhenClicking Method Delta Engine Documentation

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

public void ShowCursorAndToggleHideWhenClicking()
Examples

[Test]
public void ShowCursorAndToggleHideWhenClicking()
{
    bool showCursor = true;
    new Command(() => window.ShowCursor = showCursor = !showCursor).Add(new MouseButtonTrigger());
}
See Also