2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
31
public sealed class ContentLocatorGroup :
ContentLocatorBase
, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
22
public sealed class ContentLocator :
ContentLocatorBase
, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
265
IList<
ContentLocatorBase
> locators = GenerateLocators(node);
301
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
335
public IList<
ContentLocatorBase
> GenerateLocators(Object selection)
352
IList<
ContentLocatorBase
> returnLocators = null;
365
returnLocators = new List<
ContentLocatorBase
>(0);
387
public Object ResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel)
520
internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes,
ContentLocatorBase
locator, out AttachmentLevel attachmentLevel)
580
private int FindMatchingPrefix(ContentLocator[] prefixes,
ContentLocatorBase
locator, out bool matched)
633
private IList<
ContentLocatorBase
> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection)
637
List<
ContentLocatorBase
> locatorsToReturn = new List<
ContentLocatorBase
>();
644
IList<
ContentLocatorBase
> newLocators = null;
682
ContentLocatorBase
newLocator = GenerateLocatorGroup(startNode, selection);
717
List<
ContentLocatorBase
> tempLocators = new List<
ContentLocatorBase
>(locatorsToReturn.Count * locatorParts.Count);
719
foreach (
ContentLocatorBase
loc in locatorsToReturn)
745
private
ContentLocatorBase
GenerateLocatorGroup(PathNode node, Object selection)
750
IList<
ContentLocatorBase
> tempLocators = null;
878
private Object InternalResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel)
1206
private IList<
ContentLocatorBase
> Merge(
ContentLocatorBase
initialLocator, IList<
ContentLocatorBase
> additionalLocators)
1210
List<
ContentLocatorBase
> res = new List<
ContentLocatorBase
>(1);
1218
additionalLocators[i] = ((
ContentLocatorBase
)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
123
foreach (
ContentLocatorBase
locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
368
IList<
ContentLocatorBase
> locators = _locatorManager.GenerateLocators(dpv);
389
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
678
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(textRange);
1057
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(selection);
1064
foreach (
ContentLocatorBase
locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
127
foreach (
ContentLocatorBase
locator in _locators)
174
ContentLocatorBase
locator = (
ContentLocatorBase
)LocatorGroupSerializer.Deserialize(reader);
179
ContentLocatorBase
locator = (
ContentLocatorBase
)ListSerializer.Deserialize(reader);
288
public Collection<
ContentLocatorBase
> ContentLocators
364
private AnnotationObservableCollection<
ContentLocatorBase
> InternalLocators
370
_locators = new AnnotationObservableCollection<
ContentLocatorBase
>();
529
private AnnotationObservableCollection<
ContentLocatorBase
> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1606
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
145
internal abstract
ContentLocatorBase
Merge(
ContentLocatorBase
other);
System\Windows\Annotations\LocatorGroup.cs (5)
105
foreach (
ContentLocatorBase
locator in _locators)
209
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)
218
List<
ContentLocatorBase
> tempList = new List<
ContentLocatorBase
>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
348
internal IList<
ContentLocatorBase
> DotProduct(IList<ContentLocatorPart> additionalLocatorParts)
350
List<
ContentLocatorBase
> results = null;
355
results = new List<
ContentLocatorBase
>(1);
360
results = new List<
ContentLocatorBase
>(additionalLocatorParts.Count);
385
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)