TestConverter.cs 297 B

1234567891011121314
  1. using System.Windows;
  2. using InABox.Wpf;
  3. using InABox.WPF;
  4. using Syncfusion.UI.Xaml.Maps;
  5. namespace PRSDesktop;
  6. public class TestConverter : AbstractConverter<MapMarker,string>
  7. {
  8. public override string Convert(MapMarker value)
  9. {
  10. return (value as MapMarker)?.Label ?? "??";
  11. }
  12. }