#95 – x:Name vs. Name

You’ll typically see a Name property on XAML elements.  This property can be used in your code-behind, as a reference to the object being created.

 <Button Content="Button" Height="23" Name="button1" Width="75" Click="button1_Click" />
 <Button Content="Button" Height="23" Name="button2" Width="75" />

But you might also see x:Name being used (attribute syntax) in XAML.

 <Viewport3D Name="viewport1">
     <ModelVisual3D x:Name="visual1">
     </ModelVisual3D>
 </Viewport3D>

The Name property can be used with elements that inherit a Name property from their base class (e.g. FrameworkElement).  But for classes that don’t define a Name property or inherit from a class that does, you must use the x:Name property if you want to reference the object from your code-behind.

In general, Name and x:Name are interchangeable.  The former is an actual property on the class and the latter is a directive that comes from the default x: namespace and is used by the XAML parser.

Advertisement

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

3 Responses to #95 – x:Name vs. Name

  1. Pingback: Tweets that mention #95 – x:Name vs. Name « 2,000 Things You Should Know About WPF -- Topsy.com

  2. misterpakwas says:

    Sir, you know the Three-tier architecture in programming right? I was having a hard time using it with the INotifyChangedProperty, can you do a video tutorial about that? Thanks. I really like your articles.

  3. misterpakwas says:

    Sir, I think you know the Three-tier architecture in developing a system, I am having a hard time using it with the INotifyChangedProperty, could you do a youtube tutorial on how to use the three-tier with INotifyChangedProperty or could these two be integrated in system developing or should I just use one? I like your articles. Thanks

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: