Hi,I have the following Legend structure:[ATTACH=CONFIG]17568[/ATTACH]<esri:Legend x:Name="legendasDeTematicosDoMapa"
LayerItemsMode="Tree"
ShowOnlyVisibleLayers="False"
Refreshed="Legend_Refreshed" Background="White">
<esri:Legend.MapLayerTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding IsEnabled, Mode=TwoWay}"
IsEnabled="{Binding IsInScaleRange}"/>
<Slider Maximum="1" Value="{Binding Layer.Opacity, Mode=TwoWay}" Width="40" Margin="0,0,8,0" />
<TextBlock Text="{Binding Label}" />
</StackPanel>
</DataTemplate>
</esri:Legend.MapLayerTemplate>
<esri:Legend.LayerTemplate>
<DataTemplate>
<CheckBox Content="{Binding Label}"
IsChecked="{Binding IsEnabled, Mode=TwoWay}"
IsEnabled="{Binding IsInScaleRange}" />
</DataTemplate>
</esri:Legend.LayerTemplate>
</esri:Legend>
I need to change the more internal level of the legend from CheckBoxes into RadioButtons, but when i change the LayerTemplate, the middle checkBoxes change into radioButtons too, which would not be troublesome if i could set them as different radio groups.does anyone knows the solution to this?