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.
我在 Sql Server 中有一张表,其中包含一些字段。4 个字段具有 tinyint 类型,显示活动或不活动的某些属性。我想在 janus gridex 复选框单元格中显示此字段(如果值 = 1,则选中单元格)。我怎样才能做到这一点?谢谢你
DataTable dtc As DataTable = dt.Clone() dtc.testColumn.DataType = GetType(Boolean)
在此之后,您需要将所有 dt 行导入 dtc。
grd.DataSource = dtc
这可能是唯一的解决方案。