ComboBox.SelectionChangeCommitted 事件

定義

發生於使用者變更選取的項目,而且該項變更已顯示於 ComboBox 時。

public:
 event EventHandler ^ SelectionChangeCommitted;
public event EventHandler SelectionChangeCommitted;
public event EventHandler? SelectionChangeCommitted;
member this.SelectionChangeCommitted : EventHandler 
Public Custom Event SelectionChangeCommitted As EventHandler 

事件類型

範例

下列程式碼範例會使用 SelectionChangeCommitted 事件和 SelectionLength 屬性,根據使用者選取並認可的內容,變更文字方塊的長度。

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

備註

SelectionChangeCommitted只有在使用者變更下拉式方塊選取專案時,才會引發此事件,而且您可以在使用者變更清單中選取的專案時,建立此事件的處理常式,以提供 的特殊處理 ComboBox 。 不過,視 設定的方式 ComboBox 而定,以及使用者如何變更選取的專案, SelectionChangeCommitted 可能不會引發事件。 或者,您可以處理 SelectedIndexChanged ,但請注意,不論索引是以程式設計方式或使用者變更,都會發生此事件。

如需處理事件的詳細資訊,請參閱 處理和引發事件

適用於