Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ComboBox次のようないくつかの文字列を入力したい
ComboBox
comboBox1.DataSource = new List<string> { "By title", "by isbn", "by tag"};
ComboBox何を入れればいいのかわからないので、これから選択をどのように活用できますか
comboBox1.DisplayMemberそしてcomboBox1.ValueMember?
comboBox1.DisplayMember
comboBox1.ValueMember
あなたの場合、アイテムは単純な文字列なので、テキスト = アイテム. ただし、より複雑な構造がある場合は、その型の配列とセットDisplayMemberandが必要になる場合がありますValueMember。
DisplayMember
ValueMember
次に、コードは次のようになります。
myType mt = (mytype)comboBox1.SelectedItem; // Do something based on other type properties