I would like to check if exists any empty textBox on my Window. I found pretty nice solution for windowForms
if(this.Controls.OfType<TextBox>().Any(t => string.IsNullOrEmpty(t.Text)) {
...
}
by @StriplingWarrior
What is equivalent of this.Control in WPF? How to solve it in smart way?