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.
我有一组我希望它们在网站上显示的方式订购的儿童物品。我想知道的是,除了获取所有项目的列表并以这种方式呈现它们之外,有没有办法弄清楚我的项目在哪里?
提前致谢。
您可以尝试以下方法:
int position = item.Parent.GetChildren().IndexOf(item.ID);
这将为您提供项目在其父子集合中的索引位置。