x:Name与Name有两个不同点:
1、x:Name是Xaml的标记特性,任何在Xaml中定义的元素,都可以使用x:Name来为元素指定名称。
Name是FrameworkElement定义的依赖项属性(String类型),只有FrameworkElement的派生类才可以使用Name。
例如,Ellipse的Fill属性的类型是Brush,Brush不是FrameworkElement的子类,它没有Name属性。
因此,在Xaml中,为Brush指定名称时,只能使用x:Name标记特性:
- <!--Xaml code-->
- <Ellipse>
- <Ellipse.Fill>
- <SolidColorBrush x:Name="aliceBlue" Color="AliceBlue"/>
- <!--注销上面一行的代码,使用下面一行的代码无法通过编译-->
- <!--<SolidColorBrush Name="aliceBlue" Color="AliceBlue"/>-->
- </Ellipse.Fill>
- </Ellipse>
2、在FrameworkElement的定义中,添加了System.Windows.Markup.RuntimeNamePropertyAttribute特性:
该特性的作用是,当在Xaml中,使用x:Name后,该值将被自动赋给FrameworkElement的Name属性。
可以使用RuntimeNamePropertyAttribut,为自己定义的类添加名称特性:
[RuntimeNamePropertyAttribute("N1")]
[RuntimeNamePropertyAttribute("N2")]
public class Person : UIElement
{
public String N1 { get; set; }
public String N2 { get; set; }
}
- <StackPanel>
- <wp:Person x:Name="WebAttack"/>
- <TextBlock>Name:</TextBlock>
- <TextBlock Text="{Binding ElementName=WebAttack, Path=N1}"/>
- <TextBlock>Nickname:</TextBlock>
- <TextBlock Text="{Binding ElementName=WebAttack, Path=N2}"/>
- </StackPanel>