VisualStyleRenderer.IsElementDefined(VisualStyleElement) Metoda

Definice

Určuje, zda je zadaný prvek vizuálního stylu definován aktuálním stylem vizuálu.

public:
 static bool IsElementDefined(System::Windows::Forms::VisualStyles::VisualStyleElement ^ element);
public static bool IsElementDefined (System.Windows.Forms.VisualStyles.VisualStyleElement element);
static member IsElementDefined : System.Windows.Forms.VisualStyles.VisualStyleElement -> bool
Public Shared Function IsElementDefined (element As VisualStyleElement) As Boolean

Parametry

element
VisualStyleElement

A VisualStyleElement , jehož kombinace tříd a částí bude ověřena.

Návraty

Boolean

true je-li definována kombinace ClassName vlastností a Part vlastností element , falsev opačném případě .

Výjimky

Operační systém nepodporuje vizuální styly.

-nebo-

Vizuální styly jsou zakázány uživatelem v operačním systému.

-nebo-

Vizuální styly se nepoužívají v oblasti klienta oken aplikací.

Příklady

Následující příklad kódu ukazuje, jak použít metodu IsElementDefined k určení, zda inicializovat VisualStyleRenderer na dané VisualStyleElement. Tento příklad kódu je součástí většího příkladu poskytnutého pro VisualStyleRenderer přehled třídy.

    // Set the VisualStyleRenderer to a new element.
private:
    bool SetRenderer(VisualStyleElement^ element)
    {
        if (!VisualStyleRenderer::IsElementDefined(element))
        {
            return false;
        }

        if (renderer == nullptr)
        {
            renderer = gcnew VisualStyleRenderer(element);
        }
        else
        {
            renderer->SetParameters(element);
        }

        return true;
    }
// Set the VisualStyleRenderer to a new element.
private bool SetRenderer(VisualStyleElement element)
{
    if (!VisualStyleRenderer.IsElementDefined(element))
    {
        return false;
    }

    if (renderer == null)
    {
        renderer = new VisualStyleRenderer(element);
    }
    else
    {
        renderer.SetParameters(element);
    }

    return true;
}
' Set the VisualStyleRenderer to a new element.
Private Function SetRenderer(ByVal element As _
    VisualStyleElement) As Boolean

    If Not VisualStyleRenderer.IsElementDefined(element) Then
        Return False
    End If

    If renderer Is Nothing Then
        renderer = New VisualStyleRenderer(element)
    Else
        renderer.SetParameters(element)
    End If

    Return True
End Function

Poznámky

Tato metoda kontroluje hodnotu IsSupported vlastnosti interně.

Platí pro