在下面的代码中,为什么我不能在 TextBlock 属性中编写 x:Text ,而我可以完全正确地写 x:Name 。如何找出哪些属性可以用x:
作为前缀<Window x:Class="HelloWPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Hello WPF" Height="350" Width="525">
<Grid>
<TextBlock x:Name="Hello" Text="Hello World"/>
</Grid>
</Window>