Evento Shape.EnabledChanged
si verifica quando Enabled il valore della proprietà è stata modificata.
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 Enabled la proprietà viene modificata da una modifica a livello di codice o dell'utente.
per ulteriori informazioni su come gestire gli eventi, vedere Utilizzo degli eventi.
Esempi
Nell'esempio seguente viene modificato Cursor quando Enabled la proprietà viene impostata su true.Questo esempio presuppone che l'utente abbia a RectangleShape controllare RectangleShape1 denominato 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
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
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)