Update comments

This commit is contained in:
ClemensFischer 2022-11-05 17:32:29 +01:00
parent a0b887fc7c
commit b253d0696a
8 changed files with 26 additions and 25 deletions

View file

@ -39,9 +39,9 @@ namespace MapControl
return (MapBase)element.GetValue(ParentMapProperty);
}
private static void SetViewPosition(FrameworkElement element, Point? viewPosition)
private static void SetViewPosition(FrameworkElement element, Point? position)
{
element.SetValue(ViewPositionPropertyKey, viewPosition);
element.SetValue(ViewPositionPropertyKey, position);
}
}
}