diff --git a/MapControl/Shared/MapImageLayer.cs b/MapControl/Shared/MapImageLayer.cs index f228beb3..3ae86bf9 100644 --- a/MapControl/Shared/MapImageLayer.cs +++ b/MapControl/Shared/MapImageLayer.cs @@ -87,8 +87,7 @@ namespace MapControl } /// - /// Description of the MapImageLayer. - /// Used to display copyright information on top of the map. + /// Description of the layer. Used to display copyright information on top of the map. /// public string Description { @@ -171,18 +170,7 @@ namespace MapControl } /// - /// Optional foreground brush. - /// Sets MapBase.Foreground if not null and the MapImageLayer is the base map layer. - /// - public Brush MapForeground - { - get { return (Brush)GetValue(MapForegroundProperty); } - set { SetValue(MapForegroundProperty, value); } - } - - /// - /// Optional background brush. - /// Sets MapBase.Background if not null and the MapImageLayer is the base map layer. + /// Optional background brush. Sets MapBase.Background if not null and this layer is the base map layer. /// public Brush MapBackground { @@ -190,6 +178,15 @@ namespace MapControl set { SetValue(MapBackgroundProperty, value); } } + /// + /// Optional foreground brush. Sets MapBase.Foreground if not null and this layer is the base map layer. + /// + public Brush MapForeground + { + get { return (Brush)GetValue(MapForegroundProperty); } + set { SetValue(MapForegroundProperty, value); } + } + /// /// The current BoundingBox ///