如何在 C# 中引用动态创建的选中列表框项目
我试图查看选中列表框中的特定项目是否已选中。 我假设引用该项目是:
var checkBox = CheckBoxCheckedListBox1.Items[0];
但这会返回一个对象。转换为复选框会引发异常。
谢谢!
I'm trying to see if a particular item in a checkedlistbox is checked or not.
I assumed referencing the item would be:
var checkBox = CheckBoxCheckedListBox1.Items[0];
But that returns an object. Casting to a CheckBox throws an exeption.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处使用
bool Checked = CheckBoxCheckedListBox1.GetItemChecked(i)
。Use
bool checked = CheckBoxCheckedListBox1.GetItemChecked(i)
here.