1 write to _coreStrokes
PresentationCore (1)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
42_coreStrokes = coreStrokes;
22 references to _coreStrokes
PresentationCore (22)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (22)
322if (0 != _coreStrokes.Count || _coreStrokes.ExtendedProperties.Count != 0) 652_coreStrokes.AddWithoutEvent(localStroke); 756_coreStrokes.ExtendedProperties[guid] = data; 1675new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(_coreStrokes.Count); 1678for (int i = 0; i < _coreStrokes.Count; i++) 1680_strokeLookupTable.Add(_coreStrokes[i], new StrokeLookupEntry()); 1684_strokeDescriptorTable = new List<StrokeDescriptor>(_coreStrokes.Count); 1689using (MemoryStream localStream = new MemoryStream(_coreStrokes.Count * 125)) //reasonable default 1696foreach (Stroke s in _coreStrokes) 1814if (_coreStrokes.ExtendedProperties.Count > 0) 1817cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(_coreStrokes.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true); 1827cumulativeEncodedSize += SaveStrokeIds(_coreStrokes, localStream, false); 1875int[] strokeIds = StrokeIdGenerator.GetStrokeIds(_coreStrokes); 1876for (int i = 0; i < _coreStrokes.Count; i++) 1878Stroke s = _coreStrokes[i]; 2122ExtendedPropertyCollection attributes = _coreStrokes.ExtendedProperties; 2129for (int j = 0; j < _coreStrokes.Count; j++) 2131BuildStrokeGuidList(_coreStrokes[j], guidList); 2532for (count = 0; count < _coreStrokes.Count; count++) 2534Stroke stroke = _coreStrokes[count]; 2615DrawingAttributes drattrs = _coreStrokes[count].DrawingAttributes;