Condividi tramite


Proprietà Shape.Enabled

Ottiene o imposta un valore che indica se un controllo Line o Shape può rispondere all'interazione dell'utente.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
<BrowsableAttribute(True)> _
Public Property Enabled As Boolean
[BrowsableAttribute(true)]
public bool Enabled { get; set; }
[BrowsableAttribute(true)]
public:
property bool Enabled {
    bool get ();
    void set (bool value);
}
[<BrowsableAttribute(true)>]
member Enabled : bool with get, set
function get Enabled () : boolean 
function set Enabled (value : boolean)

Valore proprietà

Tipo: Boolean
true se il controllo può rispondere all'interazione dell'utente; in caso contrario, false.Il valore predefinito è true.

Note

Con la Enabled proprietà, è possibile impedire linee e forme viene selezionato in fase di esecuzione. È inoltre possibile disabilitare i controlli che non si applicano allo stato corrente dell'applicazione. Ad esempio, una forma può essere disabilitata per impedire all'utente di fare clic su fino a quando non viene soddisfatta una determinata condizione, emulando il comportamento di un pulsante.

Esempi

Nell'esempio seguente viene illustrato come abilitare e disabilitare un RectangleShape controllo in fase di esecuzione. Questo codice è necessario disporre di un Form con un RectangleShape controllo e un TextBox controllo su di esso.

Private Sub TextBox1_TextChanged() Handles TextBox1.TextChanged
    ' If the TextBox contains text, enable the RectangleShape. 
    If TextBox1.Text <> "" Then 
        ' Enable the RectangleShape.
        RectangleShape1.Enabled = True 
        ' Change the BorderColor to the default.
        RectangleShape1.BorderColor = 
            Microsoft.VisualBasic.PowerPacks.Shape.DefaultBorderColor
    Else 
        ' Disable the RectangleShape control.
        RectangleShape1.Enabled = False 
        ' Change the BorderColor to show that the control is disabled
        RectangleShape1.BorderColor = 
            Color.FromKnownColor(KnownColor.InactiveBorder)
    End If 
End Sub
private void textBox1_TextChanged(object sender, System.EventArgs e)
{
    // If the TextBox contains text, enable the RectangleShape. 
    if (textBox1.Text != "")
    // Enable the RectangleShape.
    {
        rectangleShape1.Enabled = true;
        // Change the BorderColor to the default.
        rectangleShape1.BorderColor = Microsoft.VisualBasic.PowerPacks.Shape.DefaultBorderColor;
    }
    else
    {
        // Disable the RectangleShape control.
        rectangleShape1.Enabled = false;
        // Change the BorderColor to show that the control is disabled
        rectangleShape1.BorderColor = Color.FromKnownColor(KnownColor.InactiveBorder);
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Shape Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Procedura: disegnare linee con il controllo LineShape (Visual Studio)

Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)

Introduzione ai controlli Line e Shape (Visual Studio)