ComboBox.SelectionChangeCommitted 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 l'utente modifica l'elemento selezionato e la modifica viene visualizzata in ComboBox.
public:
event EventHandler ^ SelectionChangeCommitted;
public event EventHandler SelectionChangeCommitted;
public event EventHandler? SelectionChangeCommitted;
member this.SelectionChangeCommitted : EventHandler
Public Custom Event SelectionChangeCommitted As EventHandler
Tipo evento
Esempio
Nell'esempio di codice seguente viene usato l'evento SelectionChangeCommitted e la SelectionLength proprietà per modificare la lunghezza della casella di testo a seconda di ciò che l'utente ha selezionato e eseguito il commit.
void comboBox1_SelectionChangeCommitted( Object^ sender, EventArgs^ /*e*/ )
{
ComboBox^ senderComboBox = dynamic_cast<ComboBox^>(sender);
// Change the length of the text box depending on what the user has
// selected and committed using the SelectionLength property.
if ( senderComboBox->SelectionLength > 0 )
{
textbox1->Width =
senderComboBox->SelectedItem->ToString()->Length *
((int)this->textbox1->Font->SizeInPoints);
textbox1->Text = senderComboBox->SelectedItem->ToString();
}
}
private void comboBox1_SelectionChangeCommitted(object sender, EventArgs e)
{
ComboBox senderComboBox = (ComboBox) sender;
// Change the length of the text box depending on what the user has
// selected and committed using the SelectionLength property.
if (senderComboBox.SelectionLength > 0)
{
textbox1.Width =
senderComboBox.SelectedItem.ToString().Length *
((int) this.textbox1.Font.SizeInPoints);
textbox1.Text = senderComboBox.SelectedItem.ToString();
}
}
Private Sub comboBox1_SelectionChangeCommitted(ByVal sender _
As Object, ByVal e As EventArgs) _
Handles comboBox1.SelectionChangeCommitted
Dim senderComboBox As ComboBox = CType(sender, ComboBox)
' Change the length of the text box depending on what the user has
' selected and committed using the SelectionLength property.
If (senderComboBox.SelectionLength > 0) Then
textbox1.Width = _
senderComboBox.SelectedItem.ToString().Length() * _
CType(Me.textbox1.Font.SizeInPoints, Integer)
textbox1.Text = senderComboBox.SelectedItem.ToString()
End If
End Sub
Commenti
L'evento SelectionChangeCommitted viene generato solo quando l'utente modifica la selezione della casella combinata e è possibile creare un gestore per questo evento per fornire una gestione speciale per ComboBox l'utente quando l'utente modifica l'elemento selezionato nell'elenco. Tuttavia, a seconda della ComboBox modalità di configurazione e del modo in cui l'utente modifica l'elemento selezionato, l'evento SelectionChangeCommitted potrebbe non essere generato. In alternativa, è possibile gestire , SelectedIndexChangedma si noti che questo evento si verifica se l'indice viene modificato a livello di codice o dall'utente.
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.