复选框文本(在选中列表框中)不会出现
我使用以下代码将复选框添加到选中列表框中:
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该只添加文本而不是
CheckBox
控件。 CheckedListBox 控件将自行创建复选框:You should only add text and not a
CheckBox
control. The CheckedListBox control will create the check boxes itself:您不必将
CheckBox
控件添加到CheckedListBox
。只需添加文本 (Item
)。希望这有帮助。
You don't have to add a
CheckBox
control to theCheckedListBox
. Just add text (Item
).Hope this helps.