-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathMainViewModel.cs
57 lines (48 loc) · 1.73 KB
/
MainViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.ObjectModel;
using System.Linq;
using System.Windows;
using System.Windows.Threading;
using MahAppsMetroDataGridSample.Models;
namespace MahAppsMetroDataGridSample
{
public class MainViewModel
{
private readonly DispatcherTimer _timer;
private readonly Random _random;
public MainViewModel()
{
_random = new Random(int.MaxValue);
_timer = new DispatcherTimer(DispatcherPriority.Background, Application.Current.Dispatcher)
{
Interval = TimeSpan.FromMilliseconds(100)
};
_timer.Tick += Timer_Tick;
}
private void Timer_Tick(object sender, EventArgs e)
{
if (AlbumCollection.Count >= 5000)
{
Stop();
}
var newAlbum = new Album
{
Title = SampleData.Albums.ElementAt(_random.Next(0, SampleData.Albums.Count - 1)).Title,
Genre = SampleData.Genres.ElementAt(_random.Next(0, SampleData.Genres.Count - 1)),
Price = (decimal)_random.NextDouble() * _random.Next(1, 100),
Artist = SampleData.Artists.ElementAt(_random.Next(0, SampleData.Artists.Count - 1)),
AlbumArtUrl = "/Content/Images/placeholder.gif"
};
_ = Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background, new Action(() => { AlbumCollection.Add(newAlbum); }));
}
public void Start()
{
_timer.Start();
}
public void Stop()
{
_timer.Stop();
}
public ObservableCollection<Album> AlbumCollection { get; } = new ObservableCollection<Album>();
}
}