我有一块画布,将在其中添加一些矩形。我想知道我只有几个矩形的孩子。很像array.length
。
我尝试过这段代码,但是没有运气
int count = plain.Children.OfType<Rectangle>.Count;
Plain
是Canvas
的名称。
但是得到错误:
'Queryable.OfType(IQuerable)'是一个无效的方法 在给定的上下文中。代码CS0119。
任何解决方案将不胜感激,并且需要说更多信息。
答案 0 :(得分:1)
在调用OfType
和Count
方法时,您需要添加括号:
int count = plain.Children.OfType<Rectangle>().Count();