TabRenderer.IsSupported Property

Definition

Gets a value indicating whether the TabRenderer class can be used to draw a tab control with visual styles.

C#
public static bool IsSupported { get; }

Property Value

true if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, false.

Examples

The following code example uses the IsSupported property to determine whether to use the DrawTabPage and DrawTabItem methods. This code example is part of a larger example provided for the TabRenderer class.

C#
// Draw the tab page and the tab items.
protected override void OnPaint(PaintEventArgs e)
{
    base.OnPaint(e);

    if (!TabRenderer.IsSupported)
    {
        this.Parent.Text = "CustomTabControl Disabled";
        return;
    }

    TabRenderer.DrawTabPage(e.Graphics, tabPageRectangle);
    TabRenderer.DrawTabItem(e.Graphics, tabItemRectangle1,
        tab1Text, this.Font, tab1Focused, tab1State);
    TabRenderer.DrawTabItem(e.Graphics, tabItemRectangle2,
        tab2Text, this.Font, tab2Focused, tab2State);

    this.Parent.Text = "CustomTabControl Enabled";
}

Remarks

If this property is false, the DrawTabPage and DrawTabItem methods will throw an InvalidOperationException.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also