3 instantiations of List
PresentationFramework (3)
System\Windows\Documents\TextRangeEditLists.cs (1)
318List list = new List
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7037DefaultConstructor = delegate () { return new System.Windows.Documents.List(); },
System\Windows\Markup\KnownTypes.cs (1)
1380case KnownElements.List: o = new System.Windows.Documents.List(); break;
81 references to List
PresentationFramework (81)
MS\Internal\PtsHost\ContainerParagraph.cs (1)
1042if (element is List)
MS\Internal\PtsHost\ListMarkerSourceInfo.cs (2)
39internal static Thickness CalculatePadding(List list, double lineHeight, double pixelsPerDip) 53private static FormattedText GetFormattedMarker(List list, double pixelsPerDip)
MS\Internal\PtsHost\ListParaClient.cs (2)
80List list = Paragraph.Element as List;
MS\Internal\PtsHost\ListParagraph.cs (1)
83else if (element is List)
MS\Internal\PtsHost\MbpInfo.cs (3)
124else if (o is Table || o is List) 153else if (o is List) 155defaultPadding = ListMarkerSourceInfo.CalculatePadding((List)o, lineHeight, pixelsPerDip);
MS\Internal\Text\MarkerProperties.cs (1)
27internal MarkerProperties(List list, int index)
System\Windows\Controls\TextRangeAdaptor.cs (1)
70object val = tp.GetValue(List.MarkerStyleProperty);
System\Windows\Documents\FixedElement.cs (1)
408return typeof(List);
System\Windows\Documents\FlowDocument.cs (1)
48/// <see cref="Paragraph"/>, <see cref="Section"/>, <see cref="List"/>, <see cref="Table"/>.
System\Windows\Documents\List.cs (6)
38DefaultStyleKeyProperty.OverrideMetadata(typeof(List), new FrameworkPropertyMetadata(typeof(List))); 91typeof(List), 114typeof(List), 138typeof(List), 246if (block is List)
System\Windows\Documents\ListItem.cs (2)
68public List List 72return (this.Parent as List);
System\windows\Documents\TextEditorLists.cs (6)
127List list = parentListItem == null ? null : (List)parentListItem.Parent; 160private static void ToggleBullets(TextSelection thisSelection, ListItem parentListItem, ListItem immediateListItem, List list) 189private static void ToggleNumbering(TextSelection thisSelection, ListItem parentListItem, ListItem immediateListItem, List list) 340private static bool HasBulletMarker(List list) 351private static bool HasNumericMarker(List list)
System\Windows\Documents\TextPointer.cs (1)
1033/// is structurally incomplete, say in empty <see cref="List"/>
System\Windows\Documents\TextRangeBase.cs (6)
696else if (typeof(List).IsAssignableFrom(elementType)) 717else if (typeof(List).IsAssignableFrom(elementType) && navigator is TextPointer) 795List list = (List)navigator.GetAdjacentElement(LogicalDirection.Forward); 825List list = (List)((TextPointer)navigator).Parent;
System\Windows\Documents\TextRangeEdit.cs (2)
799else if (block is List) 1033if (block is Paragraph || block is BlockUIContainer || block is List)
System\Windows\Documents\TextRangeEditLists.cs (20)
52if (secondListItem != null && secondListItem.PreviousListItem == null && secondParagraphOrBlockUIContainer.NextBlock is List) 57List sublistOfSecondParagraph = (List)secondParagraphOrBlockUIContainer.NextBlock; 214List precedingList = mergePosition.GetAdjacentElement(LogicalDirection.Backward) as List; 215List followingList = mergePosition.GetAdjacentElement(LogicalDirection.Forward) as List; 318List list = new List 342if (firstListItem == null || lastListItem == null || firstListItem.Parent != lastListItem.Parent || !(firstListItem.Parent is List)) 347List listToRemove = null; 402!(firstListItem.Parent is List)) 416List list = (List)firstListItem.Parent; 419List indentedList = (List)TextRangeEdit.InsertElementClone(firstListItem.ElementStart, lastListItem.ElementEnd, list); 429List nestedListOfLastItem = leadingParagraphOfLastItem.NextBlock as List; 496List unindentedList = (List)firstListItem.Parent; 759private static TextPointer GetPositionAfterList(List list)
System\Windows\Documents\TextRangeEditTables.cs (2)
633if (ancestor is List || ancestor is Inline && !TextSchema.IsMergeableInline(ancestor.GetType())) 851if (parent is List)
System\Windows\Documents\TextRangeSerialization.cs (8)
885if ((property == Block.MarginProperty && (typeof(Paragraph).IsAssignableFrom(propertyOwnerType) || typeof(List).IsAssignableFrom(propertyOwnerType))) 887(property == Block.PaddingProperty) && typeof(List).IsAssignableFrom(propertyOwnerType)) 1371List list = fragment.Blocks.FirstBlock as List; 1385List nestedList = listItem.Blocks.FirstBlock as List; 1442if (insertionPosition.Parent is List) 1724typeof(List).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (8)
307typeof(List).IsAssignableFrom(elementType) || 411else if (typeof(List).IsAssignableFrom(type)) 413return typeof(List); 525else if (typeof(List).IsAssignableFrom(type)) 838else if (typeof(List).IsAssignableFrom(parentType)) 1000List.MarkerStyleProperty, 1001List.MarkerOffsetProperty, 1002List.StartIndexProperty,
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
465case 372: t = () => typeof(List); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5333Type type = typeof(System.Windows.Documents.List); 5335this.GetXamlType(typeof(System.Windows.Documents.List)), // DeclaringType 5342GetDelegate = delegate (object target) { return ((System.Windows.Documents.List)target).ListItems; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7034typeof(System.Windows.Documents.List),
System\Windows\Markup\KnownTypes.cs (2)
2498case KnownElements.List: return (o as System.Windows.Documents.List).ListItems; 5919case KnownElements.List: t = typeof(System.Windows.Documents.List); break;