我需要从不同的类(例如名为 myTextBox 的文本框)访问 XAML 中的控件。这就是我所做的,但出现错误:
Windows1 w = new Windows1();
w.myTextBox.text = "Hello!";
但是,我收到一条错误消息:
'设置属性'System.Windows.Controls.ContentControl.Content' 引发异常。
粘性错误指向
<Grid Margin="10">
<Grid.RowDefinitions> <!-- error points to this line -->
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
请给我一些指导以找出原因或错误。
谢谢,阿米特