ListView vs. ListBox for multiple column usage

前端 未结 4 1151
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 13:11

I am currently struggling with the GUI of my application. I have a hard time figuring out whether the ListBox or ListView is more \"suitable\" for multi-column representation of

4条回答
  •  爱一瞬间的悲伤
    2021-02-02 13:37

    ListView is much better for multi-column representation of data. However it seems to get more complicated/ugly code than a simple ListBox.

    Still its much better for many reasons, resizeable columns and all that.

    I don't think ListBox has multiple columns so you'd have to hack something ugly in.

    http://www.xtremedotnettalk.com/showthread.php?t=93443

提交回复
热议问题