开发者

Given UIElementCollection, find all elements that have StyleA, and change them to StyleB in WPF

I've got a MyGrid.Children UIElementCollection, I would like to find all the Rectangles in it that have there styles set to StyleA, and set them to StyleB.

I'd like to use LINQ if possible, so I can avoid a nasty nested loop.

Something like this pseudocode:

var Recs = from r in MyGrid.Children
  开发者_运维知识库                where r.Style == StyleA && r.GetType() == typeof(Rectangle)
                  select r as Rectangle;

then:

foreach(Rectangle r in Recs)
   r.Style = StyleB;

Can a LINQ guru help me improve my LINQ-fu?


Your code was almost correct, but UIElements don't have a Style property... You can filter the grid's children based to their type :

var recs = from r in MyGrid.Children.OfType<Rectangle>()
           where r.Style == StyleA
           select r;

foreach(Rectangle r in recs)
   r.Style = StyleB;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜