TextBoxRenderer.IsSupported Property

Definition

Gets a value indicating whether the TextBoxRenderer class can be used to draw a text box 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 DrawTextBox method. This code example is part of a larger example provided for the TextBoxRenderer class.

C#
// Use DrawText with the current TextFormatFlags.
protected override void OnPaint(PaintEventArgs e)
{
    base.OnPaint(e);

    if (TextBoxRenderer.IsSupported)
    {
        TextBoxRenderer.DrawTextBox(e.Graphics, textBorder, this.Text,
            this.Font, textRectangle, textFlags, TextBoxState.Normal);

        this.Parent.Text = "CustomTextBox Enabled";
    }
    else
    {
        this.Parent.Text = "CustomTextBox Disabled";
    }
}

Remarks

If this property is false, the DrawTextBox method will throw an InvalidOperationException.

Applies to

Produkt Versioner
.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