ProgressBarRenderer.IsSupported Proprietà

Definizione

Ottiene un valore che indica se la classe ProgressBarRenderer può essere utilizzata per disegnare un indicatore di stato con gli stili di visualizzazione.

public:
 static property bool IsSupported { bool get(); };
public static bool IsSupported { get; }
static member IsSupported : bool
Public Shared ReadOnly Property IsSupported As Boolean

Valore della proprietà

true se l'utente ha abilitato gli stili di visualizzazione nel sistema operativo e tali stili sono stati applicati all'area client delle finestre dell'applicazione; in caso contrario, false.

Esempio

Nell'esempio di codice seguente viene utilizzata la IsSupported proprietà per determinare se chiamare il DrawVerticalBar metodo . Questo esempio di codice fa parte di un esempio più ampio fornito per la ProgressBarRenderer classe .

    // Draw the progress bar in its normal state.
protected:
    virtual void OnPaint(PaintEventArgs^ e) override
    {
        __super::OnPaint(e);

        if (ProgressBarRenderer::IsSupported)
        {
            ProgressBarRenderer::DrawVerticalBar(e->Graphics, 
                ClientRectangle);
            this->Parent->Text = "VerticalProgressBar Enabled";
        }
        else
        {
            this->Parent->Text = "VerticalProgressBar Disabled";
        }
    }
// Draw the progress bar in its normal state.
protected override void OnPaint(PaintEventArgs e)
{
    base.OnPaint(e);

    if (ProgressBarRenderer.IsSupported)
    {
        ProgressBarRenderer.DrawVerticalBar(e.Graphics,
            ClientRectangle);
        this.Parent.Text = "VerticalProgressBar Enabled";
    }
    else
    {
        this.Parent.Text = "VerticalProgressBar Disabled";
    }
}
' Draw the progress bar in its normal state.
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs) 
    MyBase.OnPaint(e)
    
    If ProgressBarRenderer.IsSupported Then
        ProgressBarRenderer.DrawVerticalBar(e.Graphics, ClientRectangle)
        Me.Parent.Text = "VerticalProgressBar Enabled"
    Else
        Me.Parent.Text = "VerticalProgressBar Disabled"
    End If

End Sub

Commenti

Se questa proprietà è false, i metodi e le proprietà di questa classe genereranno un oggetto InvalidOperationException.

Si applica a

Vedi anche