CommandTests ClickingWillChangeBackgroundColor Method Delta Engine Documentation

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

public void ClickingWillChangeBackgroundColor()
Examples

[Test]
public void ClickingWillChangeBackgroundColor()
{
    new Command(Command.Click, () => window.BackgroundColor = Color.GetRandomColor());
}
[Test]
public void MiddleClickingWillChangeBackgroundColor()
{
    new Command(Command.MiddleClick, () => window.BackgroundColor = Color.GetRandomColor());
}
[Test]
public void RightClickingWillChangeBackgroundColor()
{
    new Command(Command.RightClick, () => window.BackgroundColor = Color.GetRandomColor());
}
See Also