x可以使用哪些属性:

时间:2013-09-19 16:36:31

标签: wpf wpf-controls

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

1 个答案:

答案 0 :(得分:2)

您可以在MSDN上获取XAML Namespace featuresx:Something)的完整列表。