2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
37
public sealed class ContentLocatorGroup :
ContentLocatorBase
, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
42
public sealed class ContentLocator :
ContentLocatorBase
, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
287
IList<
ContentLocatorBase
> locators = GenerateLocators(node);
323
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
357
public IList<
ContentLocatorBase
> GenerateLocators(Object selection)
374
IList<
ContentLocatorBase
> returnLocators = null;
387
returnLocators = new List<
ContentLocatorBase
>(0);
409
public Object ResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel)
543
internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes,
ContentLocatorBase
locator, out AttachmentLevel attachmentLevel)
603
private int FindMatchingPrefix(ContentLocator[] prefixes,
ContentLocatorBase
locator, out bool matched)
656
private IList<
ContentLocatorBase
> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection)
660
List<
ContentLocatorBase
> locatorsToReturn = new List<
ContentLocatorBase
>();
667
IList<
ContentLocatorBase
> newLocators = null;
705
ContentLocatorBase
newLocator = GenerateLocatorGroup(startNode, selection);
740
List<
ContentLocatorBase
> tempLocators = new List<
ContentLocatorBase
>(locatorsToReturn.Count * locatorParts.Count);
742
foreach (
ContentLocatorBase
loc in locatorsToReturn)
768
private
ContentLocatorBase
GenerateLocatorGroup(PathNode node, Object selection)
773
IList<
ContentLocatorBase
> tempLocators = null;
901
private Object InternalResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel)
1227
private IList<
ContentLocatorBase
> Merge(
ContentLocatorBase
initialLocator, IList<
ContentLocatorBase
> additionalLocators)
1231
List<
ContentLocatorBase
> res = new List<
ContentLocatorBase
>(1);
1239
additionalLocators[i] = ((
ContentLocatorBase
)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
130
foreach (
ContentLocatorBase
locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
369
IList<
ContentLocatorBase
> locators = _locatorManager.GenerateLocators(dpv);
390
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
692
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(textRange);
1071
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(selection);
1078
foreach (
ContentLocatorBase
locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
133
foreach (
ContentLocatorBase
locator in _locators)
183
ContentLocatorBase
locator = (
ContentLocatorBase
)LocatorGroupSerializer.Deserialize(reader);
188
ContentLocatorBase
locator = (
ContentLocatorBase
)ListSerializer.Deserialize(reader);
297
public Collection<
ContentLocatorBase
> ContentLocators
373
private AnnotationObservableCollection<
ContentLocatorBase
> InternalLocators
379
_locators = new AnnotationObservableCollection<
ContentLocatorBase
>();
538
private AnnotationObservableCollection<
ContentLocatorBase
> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1623
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
149
internal abstract
ContentLocatorBase
Merge(
ContentLocatorBase
other);
System\Windows\Annotations\LocatorGroup.cs (5)
111
foreach (
ContentLocatorBase
locator in _locators)
215
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)
224
List<
ContentLocatorBase
> tempList = new List<
ContentLocatorBase
>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
369
internal IList<
ContentLocatorBase
> DotProduct(IList<ContentLocatorPart> additionalLocatorParts)
371
List<
ContentLocatorBase
> results = null;
376
results = new List<
ContentLocatorBase
>(1);
381
results = new List<
ContentLocatorBase
>(additionalLocatorParts.Count);
406
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)