mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-08-16 09:31:40 +02:00
.github
.idea
app
.idea
Desktop
App
Common
BytesValueConverter.cs
DatabaseGui.cs
NumberValueConverter.cs
TextFormat.cs
Controls
Dialogs
Pages
Screens
Windows
App.axaml
App.axaml.cs
Discord
Resources
Server
Arguments.cs
Desktop.csproj
Program.cs
Resources
Server
Utils
.gitignore
Directory.build.props
DiscordHistoryTracker.sln
Version.cs
build.bat
build.sh
empty.dht
global.json
lib
tools
web
.gitattributes
.gitignore
LICENSE.md
README.md
16 lines
488 B
C#
16 lines
488 B
C#
using System;
|
|
using System.Globalization;
|
|
using Avalonia.Data.Converters;
|
|
|
|
namespace DHT.Desktop.App.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();
|
|
}
|
|
}
|