public UndoCommandServiceEventArgs(UndoCommandServiceEventType type, IUndoObject obj) {
			Type = type;
			UndoObject = obj;
		}
Beispiel #2
0
 void NotifyEvent(UndoCommandServiceEventType type, IUndoObject?obj = null)
 {
     UndoRedoChanged();
     OnEvent?.Invoke(this, new UndoCommandServiceEventArgs(type, obj));
 }