Neuerstellung

- Quelle: https://github.com/oxyplot/oxyplot
This commit is contained in:
2023-09-02 09:24:59 +02:00
commit 9520c1fa4a
810 changed files with 117869 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.ObjectModel;
namespace PlotModelAlreadyInUse
{
public class ViewModel
{
public ViewModel()
{
Items = new ObservableCollection<Item>();
for (var i = 0; i < 10; i++)
Items.Add(new Item("MyName " + i));
}
public ObservableCollection<Item> Items { get; set; }
}
}