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.
リストを介してコンボボックスにアイテムを追加しようとしています。コンボボックスの内容は事前に決定された文字列ですが、実行するたびにリストビューにコンボボックス内のテキストではなく数字が表示されます
これは私のコマンドです:
ListView.Items.Add(Name.SelectedIndex +" "+ Category.SelectedIndex +" "+ Double.Parse(Price.Text));
SelectedIndex はインデックスです (つまり、リストの 2 番目の項目の場合は 2 になります)。
あなたが望むのは SelectedText なので:
Combobox.Items.Add(Name.SelectedText+" "+ Category.SelectedText+" "+ Double.Parse(Price.Text));
Name と Category はドロップダウンだと思います。