Remove retired ItemsRepeater control
This commit is contained in:
parent
45472abd1f
commit
0df17a2296
8 changed files with 46 additions and 169 deletions
11
Source/HangoverAvalonia/ViewModels/CheckBoxViewModel.cs
Normal file
11
Source/HangoverAvalonia/ViewModels/CheckBoxViewModel.cs
Normal 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); }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue