mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-20 22:05:07 +00:00
Removed unnecessary partial declaration
This commit is contained in:
parent
29ccf656cd
commit
f44d2207e5
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ContentControl placed on a MapPanel at a geographic location specified by the Location property.
|
/// ContentControl placed on a MapPanel at a geographic location specified by the Location property.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class MapContentControl : ContentControl
|
public class MapContentControl : ContentControl
|
||||||
{
|
{
|
||||||
public static readonly DependencyProperty AutoCollapseProperty =
|
public static readonly DependencyProperty AutoCollapseProperty =
|
||||||
DependencyPropertyHelper.Register<MapContentControl, bool>(nameof(AutoCollapse), false,
|
DependencyPropertyHelper.Register<MapContentControl, bool>(nameof(AutoCollapse), false,
|
||||||
|
|
@ -79,7 +79,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MapContentControl with a Pushpin Style.
|
/// MapContentControl with a Pushpin Style.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class Pushpin : MapContentControl
|
public class Pushpin : MapContentControl
|
||||||
{
|
{
|
||||||
public Pushpin()
|
public Pushpin()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue