如何设置LISTBOX中列的宽度?
我有一个列表框,我在其中绑定来自数据表的数据
我正在使用 VisualStudio 2003,.net 1.1
For Each dr As DataRow In dt.Rows
Dim li As New ListItem(dr("BIPAD").ToString().PadRight(25, ChrW(160)) + dr("TITLENAME").ToString())
lbMagTilteByCategory.Items.Add(li)
For Each dr As DataRow In dt.Rows
Dim li As New ListItem(dr("ID").ToString().PadRight(25, ChrW(160)) + dr("NAME").ToString()).PadRight(25, ChrW(160)) + dr("CITY").ToString()
ListBox.Items.Add(li)
Next
Next
如何设置列表框中列的宽度?..如何为列设置固定宽度?
I have a Listbox in to which I am binding the data coming from a DataTable
I am using VisualStudio 2003, .net 1.1
For Each dr As DataRow In dt.Rows
Dim li As New ListItem(dr("BIPAD").ToString().PadRight(25, ChrW(160)) + dr("TITLENAME").ToString())
lbMagTilteByCategory.Items.Add(li)
For Each dr As DataRow In dt.Rows
Dim li As New ListItem(dr("ID").ToString().PadRight(25, ChrW(160)) + dr("NAME").ToString()).PadRight(25, ChrW(160)) + dr("CITY").ToString()
ListBox.Items.Add(li)
Next
Next
How can I Set Width for the Columns in ListBox ?.. How can I have Fixed Widths for Columns ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ListBox.MultiColumn 属性设置为 True,然后将 ListBox.ColumnWidth 属性设置为您想要的任何大小。
或者,您可以切换到使用 ListView 控件,并将“视图”设置为“详细信息”。 ListView 控件中的列更加直观且更易于自定义。
Set the ListBox.MultiColumn property to True, and then set the ListBox.ColumnWidth property to whatever size you want it to be.
Alternatively, you could switch to using a ListView control with the View set to Details. The columns in the ListView control are much more intuitive and easier to customize.