1 write to _coreStrokes
PresentationCore (1)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (1)
59
_coreStrokes
= coreStrokes;
22 references to _coreStrokes
PresentationCore (22)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (22)
346
if (0 !=
_coreStrokes
.Count ||
_coreStrokes
.ExtendedProperties.Count != 0)
676
_coreStrokes
.AddWithoutEvent(localStroke);
780
_coreStrokes
.ExtendedProperties[guid] = data;
1722
new System.Collections.Generic.Dictionary<Stroke, StrokeLookupEntry>(
_coreStrokes
.Count);
1725
for (int i = 0; i <
_coreStrokes
.Count; i++)
1727
_strokeLookupTable.Add(
_coreStrokes
[i], new StrokeLookupEntry());
1731
_strokeDescriptorTable = new List<StrokeDescriptor>(
_coreStrokes
.Count);
1736
using (MemoryStream localStream = new MemoryStream(
_coreStrokes
.Count * 125)) //reasonable default
1743
foreach (Stroke s in
_coreStrokes
)
1862
if (
_coreStrokes
.ExtendedProperties.Count > 0)
1865
cumulativeEncodedSize += ExtendedPropertySerializer.EncodeAsISF(
_coreStrokes
.ExtendedProperties, localStream, guidList, GetCompressionAlgorithm(), true);
1875
cumulativeEncodedSize += SaveStrokeIds(
_coreStrokes
, localStream, false);
1932
int[] strokeIds = StrokeIdGenerator.GetStrokeIds(
_coreStrokes
);
1933
for (int i = 0; i <
_coreStrokes
.Count; i++)
1935
Stroke s =
_coreStrokes
[i];
2197
ExtendedPropertyCollection attributes =
_coreStrokes
.ExtendedProperties;
2204
for (int j = 0; j <
_coreStrokes
.Count; j++)
2206
BuildStrokeGuidList(
_coreStrokes
[j], guidList);
2624
for (count = 0; count <
_coreStrokes
.Count; count++)
2626
Stroke stroke =
_coreStrokes
[count];
2707
DrawingAttributes drattrs =
_coreStrokes
[count].DrawingAttributes;