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; 1676new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(_coreStrokes.Count); 1679for (int i = 0; i < _coreStrokes.Count; i++) 1681_strokeLookupTable.Add(_coreStrokes[i], new StrokeLookupEntry()); 1685_strokeDescriptorTable = new List<StrokeDescriptor>(_coreStrokes.Count); 1690using (MemoryStream localStream = new MemoryStream(_coreStrokes.Count * 125)) //reasonable default 1697foreach (Stroke s in _coreStrokes) 1815if (_coreStrokes.ExtendedProperties.Count > 0) 1818cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(_coreStrokes.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true); 1828cumulativeEncodedSize += SaveStrokeIds(_coreStrokes, localStream, false); 1876int[] strokeIds = StrokeIdGenerator.GetStrokeIds(_coreStrokes); 1877for (int i = 0; i < _coreStrokes.Count; i++) 1879Stroke s = _coreStrokes[i]; 2123ExtendedPropertyCollection attributes = _coreStrokes.ExtendedProperties; 2130for (int j = 0; j < _coreStrokes.Count; j++) 2132BuildStrokeGuidList(_coreStrokes[j], guidList); 2533for (count = 0; count < _coreStrokes.Count; count++) 2535Stroke stroke = _coreStrokes[count]; 2616DrawingAttributes drattrs = _coreStrokes[count].DrawingAttributes;