17 lines
417 B
C#
17 lines
417 B
C#
using System.Collections.ObjectModel;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ursa.Demo.ViewModels;
|
|
|
|
public class SelectionListDemoViewModel: ObservableObject
|
|
{
|
|
public ObservableCollection<string> Items { get; set; }
|
|
|
|
public SelectionListDemoViewModel()
|
|
{
|
|
Items = new ObservableCollection<string>()
|
|
{
|
|
"Ding", "Otter", "Husky", "Mr. 17", "Cass"
|
|
};
|
|
}
|
|
} |