13 references to AttachedAnnotationAction
PresentationFramework (13)
MS\Internal\Annotations\AttachedAnnotationChangedEventArgs.cs (8)
70
internal AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
action, IAttachedAnnotation attachedAnnotation, object previousAttachedAnchor, AttachmentLevel previousAttachmentLevel)
99
public
AttachedAnnotationAction
Action { get { return _action; } }
144
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Added, attachedAnnotation, null, AttachmentLevel.Unresolved);
156
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Loaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
168
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Deleted, attachedAnnotation, null, AttachmentLevel.Unresolved);
180
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Unloaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
194
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.AnchorModified, attachedAnnotation, previousAttachedAnchor, previousAttachmentLevel);
207
private
AttachedAnnotationAction
_action;
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (5)
109
case
AttachedAnnotationAction
.Added:
113
case
AttachedAnnotationAction
.Deleted:
117
case
AttachedAnnotationAction
.Loaded:
121
case
AttachedAnnotationAction
.Unloaded:
125
case
AttachedAnnotationAction
.AnchorModified: