wpf-devexpress-dot-xpf-dot-gauges-efcdc694.md
A collection that stores the layers of a particular arc scale.
Namespace : DevExpress.Xpf.Gauges
Assembly : DevExpress.Xpf.Gauges.v25.2.dll
NuGet Package : DevExpress.Wpf.Gauges
public class ArcScaleLayerCollection :
LayerCollection<ArcScaleLayer>
Public Class ArcScaleLayerCollection
Inherits LayerCollection(Of ArcScaleLayer)
The following members return ArcScaleLayerCollection objects:
Each arc scale can hold a collection of layers returned by the ArcScale.Layers property and represented by the ArcScaleLayerCollection class. Each collection item is an instance of the ArcScaleLayer class and can be accessed via the GaugeDependencyObjectCollectionBase<T>.Item property of an ArcScaleLayerCollection object.
For more information on layers, refer to the Layers (Circular Scale) document.
This example demonstrates how to specify a custom template for the layer.
<dxga:ArcScale.Layers>
<dxga:ArcScaleLayer>
<dxga:ArcScaleLayer.Presentation>
<dxga:CustomArcScaleLayerPresentation
ScaleLayerTemplate="{StaticResource OscilloscopeScaleLayerTemplate}" />
</dxga:ArcScaleLayer.Presentation>
</dxga:ArcScaleLayer>
</dxga:ArcScale.Layers>
Object DispatcherObject DependencyObject Freezable Animatable FreezableCollection<ArcScaleLayer> GaugeDependencyObjectCollectionBase<ArcScaleLayer> GaugeDependencyObjectCollection<ArcScaleLayer> LayerCollection<ArcScaleLayer> ArcScaleLayerCollection
See Also