我想通过使用该单元格的行和列值来检查gridpanel中的单元格是否为空。 有什么想法吗?
答案 0 :(得分:2)
您可以通过查询ControlCollection
集合中该单元格的控制项来测试特定单元格是否具有控件。
if Assigned(MyGridPanel.ControlCollection.ControlItems[x, y]) and
Assigned(MyGridPanel.ControlCollection.ControlItems[x, y].Control) then