reuse VirtualizingWrapPanel for display Dataset Explorer

This commit is contained in:
Alex Bezdieniezhnykh
2024-09-04 20:02:55 +03:00
parent 9436e96d81
commit b4bedb7520
7 changed files with 186 additions and 69 deletions
+2 -2
View File
@@ -148,9 +148,9 @@ public class YoloLabel : Label
}
}
public static async Task<List<YoloLabel>> ReadFromFile(string filename, CancellationToken cancellationToken)
public static async Task<List<YoloLabel>> ReadFromFile(string filename)
{
var str = await File.ReadAllTextAsync(filename, cancellationToken);
var str = await File.ReadAllTextAsync(filename);
return str.Split(Environment.NewLine)
.Select(Parse)