6

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?

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Kage
  • 563
  • 2
  • 10
  • 20

1 Answers1

15

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;
Thomas Levesque
  • 286,951
  • 70
  • 623
  • 758