feat: add button group.

This commit is contained in:
rabbitism
2023-06-28 03:49:32 +08:00
parent f1fe532b70
commit b7edc5550b
12 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.ObjectModel;
namespace Ursa.Demo.ViewModels;
public class ButtonGroupViewModel: ViewModelBase
{
public ObservableCollection<string> Items { get; set; } = new ObservableCollection<string>()
{
"Ding", "Otter", "Husky", "Mr. 17", "Cass"
};
}