1 write to _coreStrokes
PresentationCore (1)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
43_coreStrokes = coreStrokes;
22 references to _coreStrokes
PresentationCore (22)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (22)
323if (0 != _coreStrokes.Count || _coreStrokes.ExtendedProperties.Count != 0) 653_coreStrokes.AddWithoutEvent(localStroke); 757_coreStrokes.ExtendedProperties[guid] = data; 1678new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(_coreStrokes.Count); 1681for (int i = 0; i < _coreStrokes.Count; i++) 1683_strokeLookupTable.Add(_coreStrokes[i], new StrokeLookupEntry()); 1687_strokeDescriptorTable = new List<StrokeDescriptor>(_coreStrokes.Count); 1692using (MemoryStream localStream = new MemoryStream(_coreStrokes.Count * 125)) //reasonable default 1699foreach (Stroke s in _coreStrokes) 1817if (_coreStrokes.ExtendedProperties.Count > 0) 1820cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(_coreStrokes.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true); 1830cumulativeEncodedSize += SaveStrokeIds(_coreStrokes, localStream, false); 1878int[] strokeIds = StrokeIdGenerator.GetStrokeIds(_coreStrokes); 1879for (int i = 0; i < _coreStrokes.Count; i++) 1881Stroke s = _coreStrokes[i]; 2133ExtendedPropertyCollection attributes = _coreStrokes.ExtendedProperties; 2140for (int j = 0; j < _coreStrokes.Count; j++) 2142BuildStrokeGuidList(_coreStrokes[j], guidList); 2550for (count = 0; count < _coreStrokes.Count; count++) 2552Stroke stroke = _coreStrokes[count]; 2633DrawingAttributes drattrs = _coreStrokes[count].DrawingAttributes;