Control.DockChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il valore della proprietà Dock cambia.
public:
event EventHandler ^ DockChanged;
public event EventHandler DockChanged;
public event EventHandler? DockChanged;
member this.DockChanged : EventHandler
Public Custom Event DockChanged As EventHandler
Tipo evento
Esempio
L'esempio di codice seguente è un gestore eventi che viene eseguito quando il valore della Text proprietà viene modificato. La Control classe dispone di diversi metodi con il modello di nome PropertyNameChanged
generato quando viene modificato il valore PropertyName corrispondente(PropertyName rappresenta il nome della proprietà corrispondente).
Nell'esempio di codice seguente viene modificato l'oggetto ForeColor di una TextBox visualizzazione dei dati di valuta. Nell'esempio il testo viene convertito in un numero decimale e viene modificato in ForeColor Color.Red se il numero è negativo e in Color.Black se il numero è positivo. In questo esempio è necessario disporre di un oggetto Form che contiene un oggetto TextBox.
private:
void currencyTextBox_TextChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
{
try
{
// Convert the text to a Double and determine if it is a negative number.
if ( Double::Parse( currencyTextBox->Text ) < 0 )
{
// If the number is negative, display it in Red.
currencyTextBox->ForeColor = Color::Red;
}
else
{
// If the number is not negative, display it in Black.
currencyTextBox->ForeColor = Color::Black;
}
}
catch ( Exception^ )
{
// If there is an error, display the text using the system colors.
currencyTextBox->ForeColor = SystemColors::ControlText;
}
}
private void currencyTextBox_TextChanged(object sender, EventArgs e)
{
try
{
// Convert the text to a Double and determine if it is a negative number.
if(double.Parse(currencyTextBox.Text) < 0)
{
// If the number is negative, display it in Red.
currencyTextBox.ForeColor = Color.Red;
}
else
{
// If the number is not negative, display it in Black.
currencyTextBox.ForeColor = Color.Black;
}
}
catch
{
// If there is an error, display the text using the system colors.
currencyTextBox.ForeColor = SystemColors.ControlText;
}
}
Private Sub currencyTextBox_TextChanged(sender As Object, _
e As EventArgs) Handles currencyTextBox.TextChanged
Try
' Convert the text to a Double and determine if it is a negative number.
If Double.Parse(currencyTextBox.Text) < 0 Then
' If the number is negative, display it in Red.
currencyTextBox.ForeColor = Color.Red
Else
' If the number is not negative, display it in Black.
currencyTextBox.ForeColor = Color.Black
End If
Catch
' If there is an error, display the text using the system colors.
currencyTextBox.ForeColor = SystemColors.ControlText
End Try
End Sub
Commenti
Questo evento viene generato se la Dock proprietà viene modificata da una modifica a livello di codice o da un'interazione dell'utente.
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.