1

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

1 回答 1

2

您可以在 MSDN 上获取XAML 命名空间功能( )的完整列表。x:Something

于 2013-09-19T16:40:53.983 回答