There are some subtle differences in the two platforms. The interactive SDK for Silverlight has a WPF equivalent which is available for download here: http://help.arcgis.com/en/webapi/silverlight/help/index.html#//01660000000v000000.htmTo note some of their differences:In SL, element binding is allowed under resources.
<Grid x:Name="LayoutRoot">
<Grid.Resources>
<esri:Editor x:Key="MyEditor" Map="{Binding ElementName=MyMap}"/>
</Grid.Resources>
</Grid>
In WPF, you need to do this in code-behind.In SL, you can change cursor with: (Note TargetProperty and DiscreteObjectKeyFrame.Value)
<ObjectAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetName="root" Storyboard.TargetProperty="Cursor">
<DiscreteObjectKeyFrame KeyTime="0" Value="None" />
</ObjectAnimationUsingKeyFrames>
In WPF, you need to
<ObjectAnimationUsingKeyFrames BeginTime="0" Storyboard.TargetName="root" Storyboard.TargetProperty="(FrameworkElement.Cursor)">
<DiscreteObjectKeyFrame KeyTime="0">
<DiscreteObjectKeyFrame.Value>
<Cursor>None</Cursor>
</DiscreteObjectKeyFrame.Value>
</DiscreteObjectKeyFrame>
</ObjectAnimationUsingKeyFrames>