Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从数据库中读取值(布尔值),如果为真,我希望它检查一个复选框,如果为假,则保持未选中该复选框。这些行看起来像这样:cblEnergy.Items.FindByValue(1).Selected = track_usage
cblEnergy.Items.FindByValue(1).Selected = track_usage
在这种情况下,track_usage是一个布尔值。
track_usage
这种方式实际上并没有像我想要的那样在复选框中创建复选标记。做这个的最好方式是什么?
如果 cb1Energy 是,CheckBoxList那么您将使用:
CheckBoxList
Dim li_chkbox = cblEnergy.Items.FindByValue("1") If (li_chkbox != null) then li_chkbox.Selected = track_usage End if