如何在vb.net中将项目添加到另一个列表框中

时间:2017-12-27 10:21:00

标签: vb.net

嗨,我正在购物清单,我想列出一个在另一个下的项目

ListBox1.Items.Add(shp.fruits & vbNewLine & shp.vegetables & vbNewLine & shp.drinks & vbNewLine & shp.snacks & vbNewLine & shp.detergent)

这是我的代码,但是在没有空格的情况下彼此相邻地写下项目

1 个答案:

答案 0 :(得分:3)

您无法在ListBox中插入换行符。
每个添加的项目都是一行。

如果您想添加一系列商品,请尝试以下方式:

ListBox1.Items.AddRange({shp.fruits, shp.vegetables, shp.drinks, shp.snacks, shp.detergent})