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));
我假设名称和类别是下拉菜单。