如何 enable/disable 带有按钮的文本框

How to enable/disable a textbox with a button

我到处找这个,但没有找到解决方案。

我想要的只是当我点击按钮时,文本框被启用,所以我们可以在里面写东西。

我试过了:

public void button11_Click(object sender, RoutedEventArgs e)
    {

     textbox11.Enabled = true; 

    }

这是 xaml 代码

<TextBox Name="textbox11" IsEnabled="False".....>

但显然它不起作用。我得到的错误:

'System.Windows.Controls.TextBox' does not contain a definition for 'Enabled' and no extension method 'Enabled' accepting a first argument of type 'System.Windows.Controls.TextBox' could be found (are you missing a using directive or an assembly reference?)

该控件没有名为 "Enabled" 的 属性。试试这个:

textbox11.IsEnabled = true;

注意 "Is"。