Remove retired ItemsRepeater control

This commit is contained in:
Michael Bucari-Tovo 2025-05-07 13:12:12 -06:00
parent 45472abd1f
commit 0df17a2296
8 changed files with 46 additions and 169 deletions

View file

@ -0,0 +1,11 @@
using ReactiveUI;
namespace HangoverAvalonia.ViewModels;
public class CheckBoxViewModel : ViewModelBase
{
private bool _isChecked;
public bool IsChecked { get => _isChecked; set => this.RaiseAndSetIfChanged(ref _isChecked, value); }
private object _bookText;
public object Item { get => _bookText; set => this.RaiseAndSetIfChanged(ref _bookText, value); }
}