在下面的代码中,为什么我不能在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>