1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-02-22 22:46:01 +01:00
Discord-History-Tracker/app/Desktop/Common/NumberValueConverter.cs
2025-02-03 12:28:07 +01:00

16 lines
485 B
C#

using System;
using System.Globalization;
using Avalonia.Data.Converters;
namespace DHT.Desktop.Common;
sealed class NumberValueConverter : IValueConverter {
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture) {
return value == null ? "-" : string.Format(Program.Culture, "{0:n0}", value);
}
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture) {
throw new NotSupportedException();
}
}