摘要: function IntToBin(AInt: Integer): string; begin Result := ''; for var lIndex := 1 to Sizeof(AInt) * 8 do Result := Result + (AInt shr (Sizeof(AInt) * 阅读全文
posted @ 2022-09-06 10:23 一曲轻扬 阅读(263) 评论(0) 推荐(0)
摘要: 1.位置:OnGetContentStyle事件,在事件列表的Style下. 2.OnGetContentStyle何时触发: 当获取内容数据的UI样式(style)时触发此事件. 注意,用户每次点击单元格时,都会触发此事件! 3.参数解释 procedure TForm1.cxGrid1DBTab 阅读全文
posted @ 2022-09-06 09:51 一曲轻扬 阅读(190) 评论(0) 推荐(0)