13 references to AttachedAnnotationAction
PresentationFramework (13)
MS\Internal\Annotations\AttachedAnnotationChangedEventArgs.cs (8)
71
internal AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
action, IAttachedAnnotation attachedAnnotation, object previousAttachedAnchor, AttachmentLevel previousAttachmentLevel)
100
public
AttachedAnnotationAction
Action { get { return _action; } }
145
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Added, attachedAnnotation, null, AttachmentLevel.Unresolved);
157
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Loaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
169
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Deleted, attachedAnnotation, null, AttachmentLevel.Unresolved);
181
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Unloaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
195
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.AnchorModified, attachedAnnotation, previousAttachedAnchor, previousAttachmentLevel);
208
private
AttachedAnnotationAction
_action;
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (5)
111
case
AttachedAnnotationAction
.Added:
115
case
AttachedAnnotationAction
.Deleted:
119
case
AttachedAnnotationAction
.Loaded:
123
case
AttachedAnnotationAction
.Unloaded:
127
case
AttachedAnnotationAction
.AnchorModified: