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