Files @ f419334a476f
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/ViewModels/AboutViewModel.cs

Malkyne
Improved up behavior for clipped reactions and 3-way reactions, and fixed
related bugs.
using System.Reactive;
using ReactiveUI;

namespace DesertPaintCodex.ViewModels
{
    public class AboutViewModel : ViewModelBase
    {
        private const string AboutTextLiteral =
            @"Desert Paint Codex (formerly Desert Paint Lab) is an Open Source project available for free under the MIT License.";
        
        private string _aboutText = AboutTextLiteral;
        public string AboutText { get => _aboutText; private set => this.RaiseAndSetIfChanged(ref _aboutText, value); }

        public AboutViewModel()
        {
            CloseDialog = ReactiveCommand.Create(() => { });
        }
        
        public ReactiveCommand<Unit, Unit> CloseDialog { get; }
    }
}