13 references to AttachedAnnotationAction
PresentationFramework (13)
src\Framework\MS\Internal\Annotations\AttachedAnnotationChangedEventArgs.cs (8)
94
internal AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
action, IAttachedAnnotation attachedAnnotation, object previousAttachedAnchor, AttachmentLevel previousAttachmentLevel)
123
public
AttachedAnnotationAction
Action { get { return _action; } }
168
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Added, attachedAnnotation, null, AttachmentLevel.Unresolved);
180
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Loaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
192
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Deleted, attachedAnnotation, null, AttachmentLevel.Unresolved);
204
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.Unloaded, attachedAnnotation, null, AttachmentLevel.Unresolved);
218
return new AttachedAnnotationChangedEventArgs(
AttachedAnnotationAction
.AnchorModified, attachedAnnotation, previousAttachedAnchor, previousAttachmentLevel);
231
private
AttachedAnnotationAction
_action;
src\Framework\MS\Internal\Annotations\Component\AnnotationComponentManager.cs (5)
120
case
AttachedAnnotationAction
.Added:
124
case
AttachedAnnotationAction
.Deleted:
128
case
AttachedAnnotationAction
.Loaded:
132
case
AttachedAnnotationAction
.Unloaded:
136
case
AttachedAnnotationAction
.AnchorModified: