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