columns属性设置为3,则有3列。

解决方案 »

  1.   

    改ListView吧,实在比ListBox好多了。
      

  2.   

    可以看看Delphi中这段帮助:TCustomListBox.ColumnsSpecifies the number of columns, in a multi-column list box, that are visible without having to scroll.property Columns: Integer;DescriptionUse Columns to specify the number of columns, in a multi-column list box, that are visible without having to use the horizontal scrollbar.Multi-column list boxes have a horizontal scrollbar that allows users to view multiple columns as they wrap. The default value for Columns is 0, meaning that the list box is not multi-column. That is, users can scroll only vertically and the list of items will not wrap.For Columns values greater than 0, multiple columns accommodate the items as they wrap beyond the bottom of the list box. The Columns property specifies the number of columns that are visible without having to horizontally scroll the list box.The width of each column depends upon both the Width property and the number of Columns.