XML exporter erweitert

This commit is contained in:
2023-04-28 15:33:22 +02:00
parent ef2c9bfe6b
commit b22b9855fa
5 changed files with 103 additions and 28 deletions

View File

@@ -168,7 +168,7 @@ namespace StammGenerator.ViewModel
double length = Math.Sqrt(((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2)));
Haltungslaenge = length.ToString();
Haltungslaenge = string.Format("{0:0.00}", length);
OnPropertyChanged(nameof(Haltungslaenge));
}