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 

イベントの種類

次のコード例では、 イベントと プロパティをSelectionChangeCommittedSelectionLength使用して、ユーザーが選択およびコミットした内容に応じてテキスト ボックスの長さを変更します。

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処理できますが、このイベントは、インデックスがプログラムによって変更されるか、ユーザーによって変更されたかに関係なく発生します。

イベントの処理の詳細については、「処理とイベントの発生」を参照してください。

適用対象