3 implementations of IAnnotationComponent
PresentationFramework (3)
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
25internal class HighlightComponent : Canvas, IAnnotationComponent, IHighlightRange
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
36internal sealed class MarkedHighlightComponent : Canvas, IAnnotationComponent
System\Windows\Controls\StickyNote.cs (1)
53IAnnotationComponent
62 references to IAnnotationComponent
PresentationFramework (62)
MS\Internal\Annotations\Component\AdornerPresentationContext.cs (13)
65internal static void HostComponent(AdornerLayer adornerLayer, IAnnotationComponent component, UIElement annotatedElement, bool reorder) 164public override void AddToHost(IAnnotationComponent component) 179public override void RemoveFromHost(IAnnotationComponent component, bool reorder) 215public override void InvalidateTransform(IAnnotationComponent component) 225public override void BringToFront(IAnnotationComponent component) 243public override void SendToBack(IAnnotationComponent component) 313public void UpdateComponentZOrder(IAnnotationComponent component) 357private bool IsInternalComponent(IAnnotationComponent component) 369private AnnotationAdorner FindAnnotationAdorner(IAnnotationComponent component) 389private List<AnnotationAdorner> GetTopAnnotationAdorners(int level, IAnnotationComponent component) 403IAnnotationComponent childComponent = adorner.AnnotationComponent; 478private AnnotationAdorner GetAnnotationAdorner(IAnnotationComponent component) 499private static int GetComponentLevel(IAnnotationComponent component)
MS\Internal\Annotations\Component\AnnotationAdorner.cs (3)
31public AnnotationAdorner(IAnnotationComponent component, UIElement annotatedElement) : base(annotatedElement) 188internal IAnnotationComponent AnnotationComponent 223private IAnnotationComponent _annotationComponent;
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (14)
57IAnnotationComponent component = FindComponent(attachedAnnotation); 82IList<IAnnotationComponent> currentList = _attachedAnnotations[attachedAnnotation]; 85foreach (IAnnotationComponent component in currentList) 137private IAnnotationComponent FindComponent(IAttachedAnnotation attachedAnnotation) 147IAnnotationComponent component = chooser.ChooseAnnotationComponent(attachedAnnotation); 159private void AddComponent(IAttachedAnnotation attachedAnnotation, IAnnotationComponent component, bool reorder) 224IAnnotationComponent newComponent = FindComponent(attachedAnnotation); 231IList<IAnnotationComponent> currentList = _attachedAnnotations[attachedAnnotation]; //save the current list 238foreach (IAnnotationComponent component in currentList) 264private void AddToAttachedAnnotations(IAttachedAnnotation attachedAnnotation, IAnnotationComponent component) 269IList<IAnnotationComponent> currentList; 273currentList = new List<IAnnotationComponent>(); 288private Dictionary<IAttachedAnnotation, IList<IAnnotationComponent>> _attachedAnnotations = new Dictionary<IAttachedAnnotation, IList<IAnnotationComponent>>();
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (2)
1099private int Compare(IAnnotationComponent first, IAnnotationComponent second)
MS\Internal\Annotations\Component\PresentationContext.cs (5)
44public abstract void AddToHost(IAnnotationComponent component); 52public abstract void RemoveFromHost(IAnnotationComponent component, bool reorder); 59public abstract void InvalidateTransform(IAnnotationComponent component); 65public abstract void BringToFront(IAnnotationComponent component); 71public abstract void SendToBack(IAnnotationComponent component);
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (17)
111service = AnnotationService.GetService(((IAnnotationComponent)snc).AnnotatedElement); 256((IAnnotationComponent)snc).ZOrder = Convert.ToInt32(node.Value, CultureInfo.InvariantCulture); 855sncAnnotation.UpdateAttribute(root, XmlToken.ZOrder, ((IAnnotationComponent)snc).ZOrder.ToString(CultureInfo.InvariantCulture)); 903void IAnnotationComponent.AddAttachedAnnotation(IAttachedAnnotation attachedAnnotation) 927void IAnnotationComponent.RemoveAttachedAnnotation(IAttachedAnnotation attachedAnnotation) 955void IAnnotationComponent.ModifyAttachedAnnotation(IAttachedAnnotation attachedAnnotation, object previousAttachedAnchor, AttachmentLevel previousAttachmentLevel) 964IList IAnnotationComponent.AttachedAnnotations 985GeneralTransform IAnnotationComponent.GetDesiredTransform(GeneralTransform transform) 1084UIElement IAnnotationComponent.AnnotatedElement 1096PresentationContext IAnnotationComponent.PresentationContext 1113int IAnnotationComponent.ZOrder 1130bool IAnnotationComponent.IsDirty 1367Debug.Assert(((IAnnotationComponent)this).AnnotatedElement != null, "undefined annotated element"); 1368FrameworkElement target = ((IAnnotationComponent)this).AnnotatedElement as FrameworkElement; 1408/// Schedules BringIntoView call on <see cref="IAnnotationComponent.AnnotatedElement"/> from <see cref="OnRequestBringIntoView"/> 1580IAnnotationComponent component = (IAnnotationComponent)this;
System\Windows\Annotations\AnnotationComponentChooser.cs (5)
55public IAnnotationComponent ChooseAnnotationComponent(IAttachedAnnotation attachedAnnotation) 59IAnnotationComponent ac = null; 64ac = new StickyNoteControl(StickyNoteType.Text) as IAnnotationComponent; 69ac = new StickyNoteControl(StickyNoteType.Ink) as IAnnotationComponent; 74ac = new HighlightComponent() as IAnnotationComponent;
System\Windows\Controls\StickyNote.cs (3)
1368PresentationContext pc = ((IAnnotationComponent)this).PresentationContext; 1379PresentationContext pc = ((IAnnotationComponent)this).PresentationContext; 1388PresentationContext pc = ((IAnnotationComponent)this).PresentationContext;