#398 - new feature: right-click, copy

This commit is contained in:
Robert McRackan 2022-12-12 15:03:20 -05:00
parent 451af7bea9
commit ce711a36ba
12 changed files with 88 additions and 13 deletions

View file

@ -28,9 +28,13 @@ namespace LibationWinForms.GridView
[Browsable(false)] public abstract DateTime DateAdded { get; }
[Browsable(false)] protected Book Book => LibraryBook.Book;
#region Model properties exposed to the view
[Browsable(false)] public abstract bool IsSeries { get; }
[Browsable(false)] public abstract bool IsEpisode { get; }
[Browsable(false)] public abstract bool IsBook { get; }
protected RemoveStatus _remove = RemoveStatus.NotRemoved;
#region Model properties exposed to the view
protected RemoveStatus _remove = RemoveStatus.NotRemoved;
public abstract RemoveStatus Remove { get; set; }
public abstract LiberateButtonStatus Liberate { get; }
@ -56,11 +60,11 @@ namespace LibationWinForms.GridView
public string MyRating { get; protected set; }
public abstract string DisplayTags { get; }
#endregion
#endregion
#region Sorting
#region Sorting
public GridEntry() => _memberValues = CreateMemberValueDictionary();
public GridEntry() => _memberValues = CreateMemberValueDictionary();
// These methods are implementation of Dinah.Core.DataBinding.IMemberComparable
// Used by GridEntryBindingList for all sorting