foreach statement cannot operate on variables of type 'System.Windows.Controls.GroupBox' because 'System.Windows.Controls.GroupBox' does not contain a public definition for 'GetEnumerator'
mycode :
foreach (var txt in this.groupBox1.Children)
{
if (txt is TextBox)
{
(txt as TextBox).Text = string.Empty;
}
}
But why is the correct code for the Grid ?
foreach (var txt in this.MyGrid.Children)
{
if (txt is TextBox)
{
(txt as TextBox).Text = string.Empty;
}
}
What is the correct code for groupBox?
/////////////////editing
Correct code:
foreach (var txt in this.MyGridInGroupBox.Children)
{
if (txt is TextBox)
{
(txt as TextBox).Text = string.Empty;
}
}