Condividi tramite


Evento Shape.EnabledChanged

Si verifica quando viene modificato il valore della proprietà Enabled.

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

Sintassi

'Dichiarazione
<BrowsableAttribute(True)> _
Public Event EnabledChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler EnabledChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ EnabledChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member EnabledChanged : IEvent<EventHandler,
    EventArgs>
JScript non supporta gli eventi.

Note

Questo evento viene generato se la Enabled viene modificata la proprietà di una modifica a livello di codice o per l'interazione dell'utente.

Per ulteriori informazioni su come gestire gli eventi, vedere Gestione e generazione di eventi.

Esempi

L'esempio seguente viene modificata la Cursor quando il Enabled proprietà viene impostata su true. Si suppone di disporre di un RectangleShape controllo denominato RectangleShape1 in un form.

Private Sub RectangleShape1_EnabledChanged(
  ) Handles RectangleShape1.EnabledChanged

    If RectangleShape1.Enabled = True Then 
        ' Display a crosshair cursor.
        RectangleShape1.Cursor = Cursors.Cross
    End If 
End Sub
private void rectangleShape1_EnabledChanged(object sender, System.EventArgs e)
{
    if (rectangleShape1.Enabled == true)
    // Display a crosshair cursor.
    {
        rectangleShape1.Cursor = Cursors.Cross;
    }
}

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)