Removed partial class declarations

This commit is contained in:
ClemensFischer 2024-12-31 16:11:37 +01:00
parent 82466bbab7
commit 186f734bcc
4 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@ namespace MapControl.Caching
/// <summary>
/// IDistributedCache implementation based on local image files.
/// </summary>
public partial class ImageFileCache : IDistributedCache
public class ImageFileCache : IDistributedCache
{
private static readonly byte[] expirationTag = Encoding.ASCII.GetBytes("EXPIRES:");

View file

@ -22,7 +22,7 @@ namespace MapControl
/// <summary>
/// A MapPanel with a collection of GroundOverlay or GeoImage children.
/// </summary>
public partial class MapOverlaysPanel : MapPanel
public class MapOverlaysPanel : MapPanel
{
public static readonly DependencyProperty SourcePathsProperty =
DependencyPropertyHelper.Register<MapOverlaysPanel, IEnumerable<string>>(nameof(SourcePaths), null,

View file

@ -23,7 +23,7 @@ using DispatcherTimer = Microsoft.UI.Dispatching.DispatcherQueueTimer;
namespace MapControl
{
public abstract partial class MapTileLayerBase : Panel, IMapLayer
public abstract class MapTileLayerBase : Panel, IMapLayer
{
public static readonly DependencyProperty TileSourceProperty =
DependencyPropertyHelper.Register<MapTileLayerBase, TileSource>(nameof(TileSource), null,

View file

@ -25,7 +25,7 @@ namespace MapControl
/// <summary>
/// Displays a single map image from a Web Map Service (WMS).
/// </summary>
public partial class WmsImageLayer : MapImageLayer
public class WmsImageLayer : MapImageLayer
{
public static readonly DependencyProperty ServiceUriProperty =
DependencyPropertyHelper.Register<WmsImageLayer, Uri>(nameof(ServiceUri), null,