wpf-devexpress-dot-xpf-dot-map-dot-keycolorcolorizer-004000e4.md
Returns the collection of keys using by KeyColorColorizer.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public ColorizerKeyItemCollection Keys { get; set; }
Public Property Keys As ColorizerKeyItemCollection
| Type | Description |
|---|---|
| ColorizerKeyItemCollection |
An ColorizerKeyItemCollection object.
|
To colorize map items using the KeyColorColorizer do the following.
KeyColorColorizer.Keys collection. Note that if keys are not specified, they will be generated automatically.<dxm:VectorLayer.Colorizer>
<dxm:KeyColorColorizer>
<dxm:KeyColorColorizer.ItemKeyProvider>
<dxm:IdItemKeyProvider/>
</dxm:KeyColorColorizer.ItemKeyProvider>
<dxm:KeyColorColorizer.Colors>
<Color>#FFFFCF62</Color>
<Color>#FFA9B5BC</Color>
<Color>#FFE99876</Color>
</dxm:KeyColorColorizer.Colors>
<dxm:KeyColorColorizer.Keys>
<dxm:ColorizerKeyItem Name="Gold">
<dxm:ColorizerKeyItem.Key>
<sys:Int32>1</sys:Int32>
</dxm:ColorizerKeyItem.Key>
</dxm:ColorizerKeyItem>
<dxm:ColorizerKeyItem Name="Silver">
<dxm:ColorizerKeyItem.Key>
<sys:Int32>2</sys:Int32>
</dxm:ColorizerKeyItem.Key>
</dxm:ColorizerKeyItem>
<dxm:ColorizerKeyItem Name="Bronze">
<dxm:ColorizerKeyItem.Key>
<sys:Int32>3</sys:Int32>
</dxm:ColorizerKeyItem.Key>
</dxm:ColorizerKeyItem>
</dxm:KeyColorColorizer.Keys>
</dxm:KeyColorColorizer>
</dxm:VectorLayer.Colorizer>
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Keys property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-map-load-vector-cartesian-data/CS/MapLesson2/MainWindow.xaml#L32
</dxm:KeyColorColorizer.ItemKeyProvider>
<dxm:KeyColorColorizer.Keys>
<dxm:ColorizerKeyItem Name="Restaurant">
See Also