如何设置LISTBOX中列的宽度?

发布于 2024-08-19 08:57:06 字数 542 浏览 2 评论 0原文

我有一个列表框,我在其中绑定来自数据表的数据

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁的新欢旧爱 2024-08-26 08:57:06

将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文