我是使用 C++ Builder 的新手,如果我犯了任何基本错误,我深表歉意。
我绘制了一个名为“Collection”的 TLayout,其中包含一个 5x5 的 TRectangle 网格。细胞被命名为“CellXY”。我认为在表单上绘制这些内容可能比用代码实例化它们更容易,现在我不这么想,但我仍然想以这种方式解决问题以更好地理解。
我正在尝试编写一个方法,该方法将返回一个指向 TRectangle 的指针,其名称包含传递给该方法的坐标。
目前,我正试图通过迭代 TLayout 集合的孩子来做到这一点:
TRectangle* __fastcall TForm2::getCellRectangleFromCoordinate(int X, int Y){
TRectangle* targetCell = NULL;
char targetCellName[6];
sprintf(targetCellName, "Cell%i%i", X, Y);
for (int cIndex = 0; cIndex < Collection->ChildrenCount; ++cIndex)
{
TRectangle* cellRect = (TRectangle*) Collection->Children[cIndex]; // Error Here
string cellName = cellRect->Name;
if (targetCellName == cellName) {
targetCell = cellRect;
break;
}
}
return targetCell;
}
但我得到一个错误阅读:
E2031 Cannot cast from 'TFmxChildrenList' to 'TRectangle *'
如果有人可以提供帮助,我将不胜感激!