Files
Ursa.Avalonia/demo/Ursa.Demo/ViewModels/SelectionListDemoViewModel.cs
2024-02-08 18:17:08 +08:00

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"
};
}
}