gpt4 book ai didi

c# - Checkedlistbox 多列

转载 作者:太空狗 更新时间:2023-10-30 01:02:43 28 4
gpt4 key购买 nike

我在 Windows 窗体中有一个 CheckedListBox 控件。

我想知道向谁添加多列。MultiColumn 属性设置为 true。我只想知道添加 2 列的编码。

我的代码是

while (true)
{
data = SDK.GetNext("ACCHISTL", 6);
document_details = data.Split('|');
if (document_details[0] == "0")
{
if (document_details[3] == Document_nr)
{
lbLines.Items.su(document_details[4] + " -> " + document_details[14],true);
}
else
{
break;
}
}
else
{
break;
}
}

你能帮我看看正确的做法吗?

最佳答案

尽管 CheckedListBox 具有 MultiColumn 属性并且您可以将其设置为 true,但它只会将项目列表排列在多个列中,从上到下然后向右流动项目,基于控制高度

■ 1         ■ 5
■ 2 ■ 6
■ 3 ■ 7
■ 4

因此,如果您确实需要多列,请考虑使用 DatGridViewListView,它们是真正的多列控件。

关于c# - Checkedlistbox 多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32646757/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com