DependencyPropertyHelper

This commit is contained in:
ClemensFischer 2024-05-23 19:21:28 +02:00
parent bc12b388de
commit b7afd27c91
7 changed files with 21 additions and 19 deletions

View file

@ -19,7 +19,7 @@ namespace MapControl.MBTiles
public class MBTileLayer : MapTileLayer
{
public static readonly DependencyProperty FileProperty =
DependencyPropertyHelper.Register<MBTileLayer, string>(nameof(File), null, false,
DependencyPropertyHelper.Register<MBTileLayer, string>(nameof(File), null,
async (layer, oldValue, newValue) => await layer.FilePropertyChanged(newValue));
public string File