tags:

views:

28

answers:

1

What is the difference between these 2 lines? Visually I haven't noticed anything different. Sorry I am just getting started with Silverlight.

<Button Content="Click me" Name="myButton" FontSize="18" Width="150" Height="45" />

and

<Button Content="Click me" x:Name="myButton" FontSize="18" Width="150" Height="45" />
+1  A: 

Nothing (see the remarks in particular).

Kent Boogaart