13 references to AttachedAnnotationAction
PresentationFramework (13)
MS\Internal\Annotations\AttachedAnnotationChangedEventArgs.cs (8)
88internal AttachedAnnotationChangedEventArgs(AttachedAnnotationAction action, IAttachedAnnotation attachedAnnotation, object previousAttachedAnchor, AttachmentLevel previousAttachmentLevel) 117public AttachedAnnotationAction Action { get { return _action; } } 162return new AttachedAnnotationChangedEventArgs(AttachedAnnotationAction.Added, attachedAnnotation, null, AttachmentLevel.Unresolved); 174return new AttachedAnnotationChangedEventArgs(AttachedAnnotationAction.Loaded, attachedAnnotation, null, AttachmentLevel.Unresolved); 186return new AttachedAnnotationChangedEventArgs(AttachedAnnotationAction.Deleted, attachedAnnotation, null, AttachmentLevel.Unresolved); 198return new AttachedAnnotationChangedEventArgs(AttachedAnnotationAction.Unloaded, attachedAnnotation, null, AttachmentLevel.Unresolved); 212return new AttachedAnnotationChangedEventArgs(AttachedAnnotationAction.AnchorModified, attachedAnnotation, previousAttachedAnchor, previousAttachmentLevel); 225private AttachedAnnotationAction _action;
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (5)
115case AttachedAnnotationAction.Added: 119case AttachedAnnotationAction.Deleted: 123case AttachedAnnotationAction.Loaded: 127case AttachedAnnotationAction.Unloaded: 131case AttachedAnnotationAction.AnchorModified: