Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    MeasurementsControl Class

    Contains appearance settings for all map rulers.

    Namespace: DevExpress.Xpf.Map

    Assembly: DevExpress.Xpf.Map.v25.1.dll

    NuGet Package: DevExpress.Wpf.Map

    #Declaration

    [NonCategorized]
    public class MeasurementsControl :
        Control

    #Example

    Use the MeasurementsControl object to specify appearance settings for all map rulers. The following example changes the ruler fill color, opacity, line color, and line thickness:

    Map ruler style

    <Window.Resources>
       <Style TargetType="{x:Type dxm:MeasurementsControl}">
           <Setter Property="AreaOpacity" Value="0.5"/>
           <Setter Property="Fill" Value="OrangeRed"/>
           <Setter Property="Stroke" Value="DarkRed"/>
           <Setter Property="StrokeThickness" Value="2"/>
       </Style>
    </Window.Resources>
    <Grid>
    <!--...-->
       <dxm:MapControl x:Name="mapControl1" >
           <dxm:MapControl.Measurements>
               <dxm:Measurements/>
           </dxm:MapControl.Measurements>
           <!--...-->       
       </dxm:MapControl>
    </Grid>
    

    Related API members:

    Name

    Description

    AreaOpacity

    Gets or sets the area ruler opacity.

    Fill

    Gets or sets the Brush object used to fill area rulers.

    Stroke

    Gets or sets the Brush object used to draw ruler lines.

    StrokeThickness

    Gets or sets the ruler line thickness.

    See Also