namespace FluentTest.ViewModels { using System.Collections.ObjectModel; using System.Windows.Input; using FluentTest.Commanding; public class GalleryViewModel : ViewModel { private ObservableCollection items; public GalleryViewModel() { this.Items = new ObservableCollection(); this.RefreshCommand = new RelayCommand(this.Refresh); this.Refresh(); } public ObservableCollection Items { get { return this.items; } private set { if (Equals(value, this.items)) { return; } this.items = value; this.OnPropertyChanged(); } } public ICommand RefreshCommand { get; private set; } public void Refresh() { this.Items.Clear(); this.Items.Add(new GalleryItemViewModel("Group 1", "1")); this.Items.Add(new GalleryItemViewModel("Group 1", "2")); this.Items.Add(new GalleryItemViewModel("Group 1", "3")); this.Items.Add(new GalleryItemViewModel("Group 1", "4")); this.Items.Add(new GalleryItemViewModel("Group 1", "5")); this.Items.Add(new GalleryItemViewModel("Group 1", "6")); this.Items.Add(new GalleryItemViewModel("Group 2", "10")); this.Items.Add(new GalleryItemViewModel("Group 2", "20")); this.Items.Add(new GalleryItemViewModel("Group 2", "30")); this.Items.Add(new GalleryItemViewModel("Group 2", "40")); this.Items.Add(new GalleryItemViewModel("Group 2", "50")); this.Items.Add(new GalleryItemViewModel("Group 2", "60")); this.Items.Add(new GalleryItemViewModel("Group 3", "100")); this.Items.Add(new GalleryItemViewModel("Group 3", "200")); this.Items.Add(new GalleryItemViewModel("Group 3", "300")); this.Items.Add(new GalleryItemViewModel("Group 3", "400")); this.Items.Add(new GalleryItemViewModel("Group 3", "500")); this.Items.Add(new GalleryItemViewModel("Group 3", "600")); this.Items.Add(new GalleryItemViewModel("Group 4", "1000")); this.Items.Add(new GalleryItemViewModel("Group 4", "2000")); this.Items.Add(new GalleryItemViewModel("Group 4", "3000")); this.Items.Add(new GalleryItemViewModel("Group 4", "4000")); this.Items.Add(new GalleryItemViewModel("Group 4", "5000")); this.Items.Add(new GalleryItemViewModel("Group 4", "6000")); } } }