DownloadContentTooltipTests ShowDownloadContentTooltip 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 ShowDownloadContentTooltip()
Examples

[Test, Ignore]
public void ShowDownloadContentTooltip()
{
    Form form = new DownloadContentTooltip();
    form.Show();
    form.Refresh();
    bool isClosed = StackTraceExtensions.StartedFromNCrunchOrNunitConsole;
    form.Closed += (sender, args) => isClosed = true;
    while (!isClosed)
        Application.DoEvents();
    form.Close();
}
See Also