Precision
This commit is contained in:
@@ -2,13 +2,20 @@
|
||||
|
||||
namespace Jugenddienst_Stunden.Converter;
|
||||
internal class SecondsTimeConverter : IValueConverter {
|
||||
|
||||
private int seconds;
|
||||
|
||||
/// <summary>
|
||||
/// Konvertiert eine Sekundenangabe nach Stunden:Minuten, auch bei mehr als 24 Stunden
|
||||
/// </summary>
|
||||
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture) {
|
||||
if (value is null)
|
||||
return "0:0";
|
||||
if (value is int) {
|
||||
seconds = (int)value;
|
||||
}
|
||||
if (value is double) {
|
||||
seconds = (int)Math.Round((double)value);
|
||||
} else {
|
||||
int.TryParse((string?)value, out seconds);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user