ComboBox.SelectedItem プロパティ

定義

ComboBox で現在選択されている項目を取得または設定します。

public:
 property System::Object ^ SelectedItem { System::Object ^ get(); void set(System::Object ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.Browsable(false)]
public object SelectedItem { get; set; }
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.Browsable(false)]
public object? SelectedItem { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.Browsable(false)>]
member this.SelectedItem : obj with get, set
Public Property SelectedItem As Object

プロパティ値

現在選択されている項目であるオブジェクト。または、現在選択されている項目が存在しない場合は null

属性

次のコード例は、 プロパティと プロパティの SelectedIndex 使用方法を SelectedItem 示しています。 この例は、クラスの概要の完全なコード例の ComboBox 一部です。

void showSelectedButton_Click( Object^ sender, System::EventArgs^ e )
{
   int selectedIndex = comboBox1->SelectedIndex;
   Object^ selectedItem = comboBox1->SelectedItem;
   MessageBox::Show( "Selected Item Text: " + selectedItem->ToString() + "\n" +
      "Index: " + selectedIndex.ToString() );
}
private void showSelectedButton_Click(object sender, System.EventArgs e) {
    int selectedIndex = comboBox1.SelectedIndex;
    Object selectedItem = comboBox1.SelectedItem;

    MessageBox.Show("Selected Item Text: " + selectedItem.ToString() + "\n" +
                    "Index: " + selectedIndex.ToString());
}
Private Sub showSelectedButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim selectedIndex As Integer
    selectedIndex = comboBox1.SelectedIndex
    Dim selectedItem As Object
    selectedItem = comboBox1.SelectedItem

    MessageBox.Show("Selected Item Text: " & selectedItem.ToString() & Microsoft.VisualBasic.Constants.vbCrLf & _
                        "Index: " & selectedIndex.ToString())
End Sub

注釈

プロパティを SelectedItem オブジェクトに設定すると、 ComboBox そのオブジェクトがリスト内で現在選択されているオブジェクトにしようとします。 オブジェクトがリスト内にある場合は、 の編集部分 ComboBox に表示され、 SelectedIndex プロパティは対応するインデックスに設定されます。 オブジェクトがリストに存在しない場合、 SelectedIndex プロパティは現在の値のままです。

注意

クラスは ComboBox 、 メソッドを使用して指定したオブジェクトを IndexOf 検索します。 このメソッドは、 メソッドを Equals 使用して等価性を判断します。

適用対象