код в контекстеизменения «IsEnabled» для МОФ texbox в UserControl (коде)
private void button2_Click(object sender, RoutedEventArgs e)
{
edit();
}
public void edit()
{
textBox1.IsEnabled = true;
textBox2.IsEnabled = true;
textBox3.IsEnabled = true;
textBox4.IsEnabled = true;
textBox5.IsEnabled = true;
textBox6.IsEnabled = true;
textBox7.IsEnabled = true;
textBox8.IsEnabled = true;
textBox9.IsEnabled = true;
textBox10.IsEnabled = true;
textBox11.IsEnabled = true;
textBox12.IsEnabled = true;
textBox13.IsEnabled = true;
textBox14.IsEnabled = true;
textBox15.IsEnabled = true;
textBox16.IsEnabled = true;
textBox17.IsEnabled = true;
textBox18.IsEnabled = true;
}
Я хочу, чтобы выполнить выше, используя простой цикл что петли через 1-18.
Я попытался followng метода, но не работает по назначению
for(i=0;i<19;i++)
{
textBox"" + i + "".IsVisible = true;
}
Я новичок в WPF и я мигрирующий мое приложение из WinForms в WPF.
Будет ли это работать в WinForms? Я вижу некоторый странный синтаксис 'textBox '" + i + "" .IsVisible = true; ' – Alex