改变了#en;'#39;用于usercontrol中的wpf texbox(代码隐藏)

时间:2016-07-14 07:56:46

标签: c# asp.net wpf textbox isenabled

上下文中的代码

    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的简单 for循环执行上述操作。

我尝试了以下方法,但没有按预期工作

    for(i=0;i<19;i++)
    {
          textBox"" + i + "".IsVisible = true;
    }

我是wpf的新手,我将我的应用程序从winforms迁移到wpf。

2 个答案:

答案 0 :(得分:3)

使用绑定。

XAML(MyUserControl):

<UserControl Name="MyControl" ...
....

    <TextBox Name="textBox1" IsEnabled="{Binding ElementName=MyControl, Path=AreTextBoxesEnabled}" ... />
    <TextBox Name="textBox2" IsEnabled="{Binding ElementName=MyControl, Path=AreTextBoxesEnabled}" ... />
    <TextBox Name="textBox3" IsEnabled="{Binding ElementName=MyControl, Path=AreTextBoxesEnabled}" ... />
...

代码隐藏(MyUserControl):

public static readonly DependencyProperty AreTextBoxesEnabledProperty = DependencyProperty.Register(
    "AreTextBoxesEnabled",
    typeof(bool),
    typeof(MyUserControl));

public bool AreTextBoxesEnabled
{
    get { return (bool)GetValue(AreTextBoxesEnabledProperty); }
    set { SetValue(AreTextBoxesEnabledProperty, value); }
}

只需拨打AreTextBoxesEnabled = true;即可启用所有文本框。

当然,还有很多其他方法。但这是通过利用绑定的力量来实现它的基本方式(没有MVVM)。

简单解决方案(但不推荐)的方法很简单:

for (i = 0; i < 19; i++)
{
    var tb = this.FindName("textBox" + i.ToString()) as TextBox;
    if (tb != null) tb.IsEnabled = true;
}

答案 1 :(得分:0)

创建一个文本框列表,如:

var textBoxes = new List<TextBox>();

//顺便说一句,我手边没有编译器,我认为类型是TextBox。

填写textBoxes:

textBoxes.Add(textBox1);
textBoxes.Add(textBox2);
...
textBoxes.Add(textBox18);

这是填写它的一次性手动操作。然后你可以循环遍历它们:

foreach (var textBox in textBoxes)
{
    textBox.IsVisible = true;
}

或者在带有foreach循环的文本框中使用任何其他设置/算法(或者用于linq等)。