复选框文本(在选中列表框中)不会出现

发布于 2024-10-03 06:51:19 字数 287 浏览 6 评论 0原文

我使用以下代码将复选框添加到选中列表框中:

        CheckBox cb = new CheckBox();
        cb.Enabled = false;
        cb.Text = "A B C D";
        checkedListBox1.Items.Add(cb);

但是,如图所示,文本不会显示。我做错了什么? 谢谢!

替代文本

i've added a checkbox to a checkedlistbox using the following code:

        CheckBox cb = new CheckBox();
        cb.Enabled = false;
        cb.Text = "A B C D";
        checkedListBox1.Items.Add(cb);

but, as seen in the picture, the text wont show up. what have I done wrong ?
Thanks!

alt text

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

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

发布评论

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

评论(2

不爱素颜 2024-10-10 06:51:19

您应该只添加文本而不是 CheckBox 控件。 CheckedListBox 控件将自行创建复选框:

checkedListBox1.Items.Add("A B C D");

You should only add text and not a CheckBox control. The CheckedListBox control will create the check boxes itself:

checkedListBox1.Items.Add("A B C D");
猫九 2024-10-10 06:51:19

您不必将 CheckBox 控件添加到 CheckedListBox。只需添加文本 (Item)。

   checkedListBox1.Items.AddRange(new String[]{"A","B","C"});

希望这有帮助。

You don't have to add a CheckBox control to the CheckedListBox. Just add text (Item).

   checkedListBox1.Items.AddRange(new String[]{"A","B","C"});

Hope this helps.

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