72 references to Children
PresentationCore (53)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (2)
97
transformGroup.
Children
.Add(descendentVisual.TransformToAncestor(visual3Dchild));
98
transformGroup.
Children
.Add(visual3Dchild.TransformToOuterSpace());
System\Windows\Input\Stylus\Common\RawStylusInput.cs (3)
75
group.
Children
.Add(new MatrixTransform(_report.InputSource.CompositionTarget.TransformFromDevice));
77
group.
Children
.Add(_tabletToElementTransform);
80
group.
Children
.Add(transform);
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (2)
1136
group.
Children
.Add(new MatrixTransform(PointerTabletDevice.TabletToScreen * toDevice));
1137
group.
Children
.Add(StylusDevice.GetElementTransform(relativeTo));
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (8)
283
transformTabletToView.
Children
.Add(rawStylusInputReport.StylusDevice.As<PointerStylusDevice>().GetTabletToElementTransform(null)); // this gives matrix in measured units (not device)
284
transformTabletToView.
Children
.Add(targetPIC.ViewToElement); // Make it relative to the element.
304
transformTabletToView.
Children
.Add(stylusDevice.GetTabletToElementTransform(null)); // this gives matrix in measured units (not device)
305
transformTabletToView.
Children
.Add(currentTarget.ViewToElement); // Make it relative to the element.
444
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
445
transformTabletToView.
Children
.Add(currentPic.ViewToElement); // Make it relative to the element.
463
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
464
transformTabletToView.
Children
.Add(pic.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\PenContexts.cs (4)
420
transformTabletToView.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
421
transformTabletToView.
Children
.Add(currentPic.ViewToElement); // Make it relative to the element.
439
transformTabletToView.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
440
transformTabletToView.
Children
.Add(pic.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\WispLogic.cs (4)
2683
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
2684
transformTabletToView.
Children
.Add(targetPIC.ViewToElement); // Make it relative to the element.
2702
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
2703
transformTabletToView.
Children
.Add(currentTarget.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (2)
1286
group.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(source, _tabletDevice.TabletDevice)));
1287
group.
Children
.Add(StylusDevice.GetElementTransform(relativeTo));
System\Windows\Media\GeneralTransformGroup.cs (16)
36
if ((
Children
== null) || (
Children
.Count == 0))
44
for (int i = 0; i <
Children
.Count; i++)
46
if (
Children
.Internal_GetItem(i).TryTransform(inPoint, out result) == false)
65
if ((
Children
== null) || (
Children
.Count == 0))
71
for (int i = 0; i <
Children
.Count; i++)
73
result =
Children
.Internal_GetItem(i).TransformBounds(result);
88
if ((
Children
== null) || (
Children
.Count == 0))
94
for (int i =
Children
.Count - 1; i >= 0; i--)
96
GeneralTransform g =
Children
.Internal_GetItem(i).Inverse;
103
group.
Children
.Add(g);
117
if ((
Children
== null) || (
Children
.Count == 0))
123
foreach (GeneralTransform gt in
Children
)
System\Windows\Media\Visual.cs (10)
2195
group.
Children
.Add(gt);
2221
group.
Children
.Add(new MatrixTransform(m));
4414
group.
Children
.Add(g0);
4415
group.
Children
.Add(g1);
4524
group.
Children
.Add(new MatrixTransform(m));
4527
group.
Children
.Add(gt);
4554
group.
Children
.Add(new MatrixTransform(m));
4568
group.
Children
.Add(new GeneralTransform2DTo3DTo2D(gAsVisual3D, visualForGenTransform));
4585
Debug.Assert((group == null) || (group.
Children
.Count > 0));
4592
group.
Children
.Add(new MatrixTransform(m));
System\Windows\Media3D\GeneralTransform2DTo3D.cs (2)
31
transformGroup.
Children
.Add((GeneralTransform)transform2D.GetCurrentValueAsFrozen());
32
transformGroup.
Children
.Add((GeneralTransform)child.TransformToOuterSpace().GetCurrentValueAsFrozen());
PresentationFramework (17)
MS\Internal\Controls\InkCanvasFeedbackAdorner.cs (2)
54
desiredTransform.
Children
.Add(transform);
59
desiredTransform.
Children
.Add(new TranslateTransform(_offsetX, _offsetY));
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
1024
transformations.
Children
.Add(new MatrixTransform(-1.0, 0.0, 0.0, 1.0, this.Width, 0.0));
1027
transformations.
Children
.Add(new TranslateTransform(anchor.X, anchor.Y));
1072
transformations.
Children
.Add(offsetTransform);
1074
transformations.
Children
.Add(transform);
MS\Internal\Controls\TemplatedAdorner.cs (2)
74
group.
Children
.Add(transform);
80
group.
Children
.Add(t);
System\Windows\Controls\Primitives\Popup.cs (2)
2429
visualToClientTransform.
Children
.Add(visual.TransformToAncestor(rootVisual));
2432
visualToClientTransform.
Children
.Add(new MatrixTransform(
System\Windows\Documents\AdornerLayer.cs (2)
976
group.
Children
.Add(matrixTransform);
980
group.
Children
.Add(sourceTransform);
System\Windows\Documents\ColumnResizeAdorner.cs (2)
70
group.
Children
.Add(translation);
74
group.
Children
.Add(transform);
System\Windows\Documents\CompositionAdorner.cs (2)
100
group.
Children
.Add(translation);
104
group.
Children
.Add(transform);
System\Windows\Markup\KnownTypes.cs (1)
2498
case KnownElements.GeneralTransformGroup: return (o as System.Windows.Media.GeneralTransformGroup).
Children
;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (2)
392
transformGroup.
Children
.Add(transform);
393
transformGroup.
Children
.Add(deviceTransform);