标签:
var curGrid = myGrid.Children.OfType<Grid>().FirstOrDefault(x => x.ActualHeight == 100);
OfType() :根据指定类型筛选 IEnumerable 的元素。
First(Func<TSource, Boolean>):返回序列中满足指定条件的第一个元素。
还有很多方法如:
ElementAt(int index) :返回序列中指定索引处的元素。
标签:
原文地址:http://www.cnblogs.com/AD1988/p/5037018.html