Added initial 'About' menu with version number

This commit is contained in:
Robert McRackan 2022-05-02 14:59:43 -04:00
parent 68ad627159
commit 1816bd721c
13 changed files with 388 additions and 358 deletions

View file

@ -1,14 +0,0 @@
using Dinah.Core.Threading;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace LibationWinForms
{
public abstract class AsyncNotifyPropertyChanged : SynchronizeInvoker, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
=> this.UIThreadAsync(() => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)));
}
}