在WPF中,给定UIElementCollection,请查找所有具有StyleA的元素,并将它们更改为StyleB。
原文:Given UIElementCollection, find all elements that have StyleA, and change them to StyleB in WPF
原文:Given UIElementCollection, find all elements that have StyleA, and change them to StyleB in WPF
我有一个MyGrid.Children UIElementCollection,我想要在其中查找所有样式设置为StyleA的矩形,并将它们设置为StyleB。我想使用LINQ,如果可能的话,所以我...