2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
30
public sealed class ContentLocatorGroup :
ContentLocatorBase
, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
21
public sealed class ContentLocator :
ContentLocatorBase
, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
264
IList<
ContentLocatorBase
> locators = GenerateLocators(node);
300
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
334
public IList<
ContentLocatorBase
> GenerateLocators(Object selection)
351
IList<
ContentLocatorBase
> returnLocators = null;
364
returnLocators = new List<
ContentLocatorBase
>(0);
386
public Object ResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel)
519
internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes,
ContentLocatorBase
locator, out AttachmentLevel attachmentLevel)
579
private int FindMatchingPrefix(ContentLocator[] prefixes,
ContentLocatorBase
locator, out bool matched)
632
private IList<
ContentLocatorBase
> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection)
636
List<
ContentLocatorBase
> locatorsToReturn = new List<
ContentLocatorBase
>();
643
IList<
ContentLocatorBase
> newLocators = null;
681
ContentLocatorBase
newLocator = GenerateLocatorGroup(startNode, selection);
716
List<
ContentLocatorBase
> tempLocators = new List<
ContentLocatorBase
>(locatorsToReturn.Count * locatorParts.Count);
718
foreach (
ContentLocatorBase
loc in locatorsToReturn)
744
private
ContentLocatorBase
GenerateLocatorGroup(PathNode node, Object selection)
749
IList<
ContentLocatorBase
> tempLocators = null;
877
private Object InternalResolveLocator(
ContentLocatorBase
locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel)
1205
private IList<
ContentLocatorBase
> Merge(
ContentLocatorBase
initialLocator, IList<
ContentLocatorBase
> additionalLocators)
1209
List<
ContentLocatorBase
> res = new List<
ContentLocatorBase
>(1);
1217
additionalLocators[i] = ((
ContentLocatorBase
)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
122
foreach (
ContentLocatorBase
locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
367
IList<
ContentLocatorBase
> locators = _locatorManager.GenerateLocators(dpv);
388
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
677
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(textRange);
1056
IList<
ContentLocatorBase
> locators = service.LocatorManager.GenerateLocators(selection);
1063
foreach (
ContentLocatorBase
locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
126
foreach (
ContentLocatorBase
locator in _locators)
173
ContentLocatorBase
locator = (
ContentLocatorBase
)LocatorGroupSerializer.Deserialize(reader);
178
ContentLocatorBase
locator = (
ContentLocatorBase
)ListSerializer.Deserialize(reader);
287
public Collection<
ContentLocatorBase
> ContentLocators
363
private AnnotationObservableCollection<
ContentLocatorBase
> InternalLocators
369
_locators = new AnnotationObservableCollection<
ContentLocatorBase
>();
528
private AnnotationObservableCollection<
ContentLocatorBase
> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1605
foreach (
ContentLocatorBase
locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
144
internal abstract
ContentLocatorBase
Merge(
ContentLocatorBase
other);
System\Windows\Annotations\LocatorGroup.cs (5)
104
foreach (
ContentLocatorBase
locator in _locators)
208
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)
217
List<
ContentLocatorBase
> tempList = new List<
ContentLocatorBase
>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
347
internal IList<
ContentLocatorBase
> DotProduct(IList<ContentLocatorPart> additionalLocatorParts)
349
List<
ContentLocatorBase
> results = null;
354
results = new List<
ContentLocatorBase
>(1);
359
results = new List<
ContentLocatorBase
>(additionalLocatorParts.Count);
384
internal override
ContentLocatorBase
Merge(
ContentLocatorBase
other)