Refactor props dictionary name

This commit is contained in:
Nathaniel Bond 2022-07-20 03:34:59 -04:00
Родитель 996336fa4f
Коммит 6c2d2fa695
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,7 @@ namespace Comet
{ {
public partial class ImageButton : View, Microsoft.Maui.IImageButton public partial class ImageButton : View, Microsoft.Maui.IImageButton
{ {
protected static Dictionary<string, string> ImageHandlerPropertyMapper = new(HandlerPropertyMapper) protected static Dictionary<string, string> ImageButtonHandlerPropertyMapper = new(HandlerPropertyMapper)
{ {
[nameof(ImageSource)] = nameof(IImageSourcePart.Source), [nameof(ImageSource)] = nameof(IImageSourcePart.Source),
}; };
@ -57,6 +57,6 @@ namespace Comet
} }
protected override string GetHandlerPropertyName(string property) protected override string GetHandlerPropertyName(string property)
=> ImageHandlerPropertyMapper.TryGetValue(property, out var value) ? value : property; => ImageButtonHandlerPropertyMapper.TryGetValue(property, out var value) ? value : property;
} }
} }