如何创建一个结合CheckedListBox和详细ListView的显示?

发布于 2024-12-20 06:04:00 字数 408 浏览 0 评论 0原文

我正在尝试创建这样的东西:

在此处输入图像描述

这个 示例 使用制表符作为条目之间的间距。它的缺陷是我可能会遇到太长的条目,我不知道它在我的情况下会如何表现。

如何在 C# 中创建类似的东西?我想使用 ListView,但后来我还需要一个复选框,所以我尝试了 CheckedListBox,但后来我无法创建列。

我怎样才能创造出两者结合的东西?

I am trying to create something like this:

enter image description here

This example creates view using a tabbing as spacing between entry. The flaw about it is that I might experience too long entries which I don't know how it might behave in my situation.

How can I create something similar in C#? I wanted to use ListView, but then I need a check box also, so I tried CheckedListBox, but then I can not create columns.

How can I create something that is a combination of two?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

无声静候 2024-12-27 06:04:00

使用启用复选框的 ListView 时会出现什么问题?

ListView.CheckBoxes 属性

what is the problem in using a ListView for which you enable the Checkboxes?

ListView.CheckBoxes Property

江挽川 2024-12-27 06:04:00

如果您使用 -2 作为宽度在列表视图中创建列,则列的大小将自动调整。

例如:

        listView1.View = View.Details;

        listView1.CheckBoxes = true;

        listView1.Columns.Add("Col1", -2, HorizontalAlignment.Left);
        listView1.Columns.Add("Col2", -2, HorizontalAlignment.Left);
        listView1.Columns.Add("Col3", -2, HorizontalAlignment.Left);

        ListViewItem oItem = new ListViewItem();

        oItem.Text = "Col1 Text";
        oItem.SubItems.Add("Col2 Text");
        oItem.SubItems.Add("Col3 Text");

        listView1.Items.Add(oItem);

If you create your columns in the list view using -2 as the width, the columns will be automatically sized.

For example:

        listView1.View = View.Details;

        listView1.CheckBoxes = true;

        listView1.Columns.Add("Col1", -2, HorizontalAlignment.Left);
        listView1.Columns.Add("Col2", -2, HorizontalAlignment.Left);
        listView1.Columns.Add("Col3", -2, HorizontalAlignment.Left);

        ListViewItem oItem = new ListViewItem();

        oItem.Text = "Col1 Text";
        oItem.SubItems.Add("Col2 Text");
        oItem.SubItems.Add("Col3 Text");

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