伙计们,当我将下面的代码粘贴到记事本中并保存为 test.xaml 并运行它时,我看到下面的代码给出了运行时错误。
<Page xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<TextBlock Text="Hi Ramakrishnan, good morning"/>
<Button x:Name=”blueButton”
Width=”100”
Height=”40”
Background=”Blue”
Content=”Click Me” />
</Page>
但是下面的代码没有给出任何错误,而是在浏览器中非常正确地显示了文本块内容。有什么想法吗 ?我还检查了包括一个文本框来代替上面的按钮,仍然是同样的错误。
<Page xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<TextBlock Text="Hi Ramakrishnan, good morning"/>
</Page>