Z mojego okienka WPF chcę usunąć wszystkie przyciski z napisem "Anal". Co tu robię źle? Da się to tak zrobić jak ja próbuję z LINQ?
UIElement a = from UIElement uielem in grid.Children where (uielem as Button).Content =="Anal" select uielem;
grid.Children.Remove(a);
#programowanie #csharp
UIElement a = from UIElement uielem in grid.Children where (uielem as Button).Content =="Anal" select uielem;
grid.Children.Remove(a);
#programowanie #csharp
























Mógłby ktoś polecić jakiś przyjazny podręcznik do nauki C# dla początkujących? W sensie od 0 do bohatera.