Can you help me with some code examples?how to change MapLayerTemplates and LayerTemplates to display LayerItemViewModel's ImageSource?Here are my templates:<esri:Legend x:Name="mapLegend" Background="White" Width="Auto"
LayerItemsMode="Tree" ShowOnlyVisibleLayers="False"
Refreshed="Legend_Refreshed" HorizontalAlignment="Left">
<esri:Legend.MapLayerTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<Image Source="/Neolant.TORIS.WebClient;component/Images/mapservice.png" Margin="0,0,2,0"
VerticalAlignment="Center" Width="20" Height="20"/>
<TextBlock Text="{Binding Label}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</StackPanel>
</DataTemplate>
</esri:Legend.MapLayerTemplate>
<esri:Legend.LayerTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<StackPanel.Resources>
<Image x:Name="imgLayerItem"
Source="/Neolant.TORIS.WebClient;component/Images/layer.png" Margin="0,0,2,0"
VerticalAlignment="Center" Width="20" Height="20" />
<TextBlock Text="{Binding Label}" VerticalAlignment="Center" HorizontalAlignment="Center"
Margin="0,0,0,0"/>
</StackPanel>
</DataTemplate>
</esri:Legend.LayerTemplate>
</esri:Legend>