using System; using System.Globalization; using Avalonia.Data.Converters; namespace StabilityMatrix.Avalonia.Converters; public class KiloFormatterStringConverter : IValueConverter { /// public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture) { return value is null ? null : string.Format(new KiloFormatter(), "{0:K}", value); } /// public object? ConvertBack( object? value, Type targetType, object? parameter, CultureInfo culture ) { return value is null ? null : throw new NotImplementedException(); } }