I have this checkbox with the InteractionTrigger to measure.
It work Ok, my question is:
It is posible to keep the graphic draw in the map after we doubleclick to finish the measure action?
<CheckBox x:Name="DisplayMeasureCheckBox" Content="Display Measure Values?"
Grid.Column="0"
FontWeight="Medium" Padding="2" VerticalAlignment="Bottom" HorizontalAlignment="Left">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Checked">
<esri:MeasureAction AreaUnit="SquareMiles" DisplayTotals="True" DistanceUnit="Miles" MapUnits="DecimalDegrees" MeasureMode="Polygon"
FillSymbol="{StaticResource DefaultFillSymbol}" TargetName="MyMap" />
</i:EventTrigger>
</i:Interaction.Triggers>
</CheckBox>
Thanks!!!