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)
35
public sealed class ContentLocator :
ContentLocatorBase
, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
276
IList<
ContentLocatorBase
> locators = GenerateLocators(node);
312
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
346
public IList<
ContentLocatorBase
> GenerateLocators(Object selection)
363
IList<
ContentLocatorBase
> returnLocators = null;
376
returnLocators = new List<
ContentLocatorBase
>(0);
398
public Object ResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel)
532
internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes,
ContentLocatorBase
locator, out AttachmentLevel attachmentLevel)
592
private int FindMatchingPrefix(ContentLocator[] prefixes,
ContentLocatorBase
locator, out bool matched)
645
private IList<
ContentLocatorBase
> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection)
649
List<
ContentLocatorBase
> locatorsToReturn = new List<
ContentLocatorBase
>();
656
IList<
ContentLocatorBase
> newLocators = null;
694
ContentLocatorBase
newLocator = GenerateLocatorGroup(startNode, selection);
729
List<
ContentLocatorBase
> tempLocators = new List<
ContentLocatorBase
>(locatorsToReturn.Count * locatorParts.Count);
731
foreach (
ContentLocatorBase
loc in locatorsToReturn)
757
private
ContentLocatorBase
GenerateLocatorGroup(PathNode node, Object selection)
762
IList<
ContentLocatorBase
> tempLocators = null;
890
private Object InternalResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel)
1216
private IList<
ContentLocatorBase
> Merge(
ContentLocatorBase
initialLocator, IList<
ContentLocatorBase
> additionalLocators)
1220
List<
ContentLocatorBase
> res = new List<
ContentLocatorBase
>(1);
1228
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)
364
IList<
ContentLocatorBase
> locators = _locatorManager.GenerateLocators(dpv);
385
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
680
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(textRange);
1059
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(selection);
1066
foreach (
ContentLocatorBase
locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
127
foreach (
ContentLocatorBase
locator in _locators)
177
ContentLocatorBase
locator = (
ContentLocatorBase
)LocatorGroupSerializer.Deserialize(reader);
182
ContentLocatorBase
locator = (
ContentLocatorBase
)ListSerializer.Deserialize(reader);
291
public Collection<
ContentLocatorBase
> ContentLocators
367
private AnnotationObservableCollection<
ContentLocatorBase
> InternalLocators
373
_locators = new AnnotationObservableCollection<
ContentLocatorBase
>();
532
private AnnotationObservableCollection<
ContentLocatorBase
> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1611
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)
362
internal IList<
ContentLocatorBase
> DotProduct(IList<ContentLocatorPart> additionalLocatorParts)
364
List<
ContentLocatorBase
> results = null;
369
results = new List<
ContentLocatorBase
>(1);
374
results = new List<
ContentLocatorBase
>(additionalLocatorParts.Count);
399
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)