以下のコードでは、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>