我到处寻找这个并没有找到解决方案.
我想要的只是当我单击按钮时,文本框变为启用状态,因此我们可以在其中写入.
我试过了 :
public void button11_Click(object sender, RoutedEventArgs e) { textbox11.Enabled = true; }
这是xaml代码
但显然它不起作用.我得到的错误:
'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?)
adv12.. 6
该控件没有名为"Enabled"的属性.试试这个:
textbox11.IsEnabled = true;
注意"是".
该控件没有名为"Enabled"的属性.试试这个:
textbox11.IsEnabled = true;
注意"是".