A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
587 B

using System.Reactive;
using Avalonia;
using Avalonia.Controls.Notifications;
using ReactiveUI;
namespace ControlCatalog.ViewModels
{
public class NotificationViewModel
{
public NotificationViewModel()
{
OKCommand = ReactiveCommand.Create(() =>
{
Application.Current.MainWindow.LocalNotificationManager.Show("Notification Accepted");
});
}
public string Title { get; set; }
public string Message { get; set; }
public ReactiveCommand<Unit, Unit> OKCommand { get; }
}
}