I have UniformGridwith a number Buttonlike Children. Each Buttonhas Tagan identifier, for example. (disabled code):
MyUniformGrid.Children.Add(new Button {
Margin = new Thickness(5),
Tag = Query.GetUInt32("id"),
Width = 200
});
How to select child object Buttonwith id 87? (such as,)
Intellisense does not appear using Linq methods on input MyUniformGrid.Children.(after adding using System.Linq;).
source
share