72 references to Children
PresentationCore (53)
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (2)
113
transformGroup.
Children
.Add(descendentVisual.TransformToAncestor(visual3Dchild));
114
transformGroup.
Children
.Add(visual3Dchild.TransformToOuterSpace());
System\Windows\Input\Stylus\Common\RawStylusInput.cs (3)
82
group.
Children
.Add(new MatrixTransform(_report.InputSource.CompositionTarget.TransformFromDevice));
84
group.
Children
.Add(_tabletToElementTransform);
87
group.
Children
.Add(transform);
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (2)
1144
group.
Children
.Add(new MatrixTransform(PointerTabletDevice.TabletToScreen * toDevice));
1145
group.
Children
.Add(StylusDevice.GetElementTransform(relativeTo));
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (8)
295
transformTabletToView.
Children
.Add(rawStylusInputReport.StylusDevice.As<PointerStylusDevice>().GetTabletToElementTransform(null)); // this gives matrix in measured units (not device)
296
transformTabletToView.
Children
.Add(targetPIC.ViewToElement); // Make it relative to the element.
316
transformTabletToView.
Children
.Add(stylusDevice.GetTabletToElementTransform(null)); // this gives matrix in measured units (not device)
317
transformTabletToView.
Children
.Add(currentTarget.ViewToElement); // Make it relative to the element.
456
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
457
transformTabletToView.
Children
.Add(currentPic.ViewToElement); // Make it relative to the element.
475
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
476
transformTabletToView.
Children
.Add(pic.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\PenContexts.cs (4)
442
transformTabletToView.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
443
transformTabletToView.
Children
.Add(currentPic.ViewToElement); // Make it relative to the element.
461
transformTabletToView.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
462
transformTabletToView.
Children
.Add(pic.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\WispLogic.cs (4)
2692
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
2693
transformTabletToView.
Children
.Add(targetPIC.ViewToElement); // Make it relative to the element.
2711
transformTabletToView.
Children
.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
2712
transformTabletToView.
Children
.Add(currentTarget.ViewToElement); // Make it relative to the element.
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (2)
1289
group.
Children
.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(source, _tabletDevice.TabletDevice)));
1290
group.
Children
.Add(StylusDevice.GetElementTransform(relativeTo));
System\Windows\Media\GeneralTransformGroup.cs (16)
53
if ((
Children
== null) || (
Children
.Count == 0))
61
for (int i = 0; i <
Children
.Count; i++)
63
if (
Children
.Internal_GetItem(i).TryTransform(inPoint, out result) == false)
82
if ((
Children
== null) || (
Children
.Count == 0))
88
for (int i = 0; i <
Children
.Count; i++)
90
result =
Children
.Internal_GetItem(i).TransformBounds(result);
105
if ((
Children
== null) || (
Children
.Count == 0))
111
for (int i =
Children
.Count - 1; i >= 0; i--)
113
GeneralTransform g =
Children
.Internal_GetItem(i).Inverse;
120
group.
Children
.Add(g);
134
if ((
Children
== null) || (
Children
.Count == 0))
140
foreach (GeneralTransform gt in
Children
)
System\Windows\Media\Visual.cs (10)
2211
group.
Children
.Add(gt);
2237
group.
Children
.Add(new MatrixTransform(m));
4430
group.
Children
.Add(g0);
4431
group.
Children
.Add(g1);
4540
group.
Children
.Add(new MatrixTransform(m));
4543
group.
Children
.Add(gt);
4570
group.
Children
.Add(new MatrixTransform(m));
4584
group.
Children
.Add(new GeneralTransform2DTo3DTo2D(gAsVisual3D, visualForGenTransform));
4601
Debug.Assert((group == null) || (group.
Children
.Count > 0));
4608
group.
Children
.Add(new MatrixTransform(m));
System\Windows\Media3D\GeneralTransform2DTo3D.cs (2)
42
transformGroup.
Children
.Add((GeneralTransform)transform2D.GetCurrentValueAsFrozen());
43
transformGroup.
Children
.Add((GeneralTransform)child.TransformToOuterSpace().GetCurrentValueAsFrozen());
PresentationFramework (17)
MS\Internal\Controls\InkCanvasFeedbackAdorner.cs (2)
57
desiredTransform.
Children
.Add(transform);
62
desiredTransform.
Children
.Add(new TranslateTransform(_offsetX, _offsetY));
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
1034
transformations.
Children
.Add(new MatrixTransform(-1.0, 0.0, 0.0, 1.0, this.Width, 0.0));
1037
transformations.
Children
.Add(new TranslateTransform(anchor.X, anchor.Y));
1082
transformations.
Children
.Add(offsetTransform);
1084
transformations.
Children
.Add(transform);
MS\Internal\Controls\TemplatedAdorner.cs (2)
81
group.
Children
.Add(transform);
87
group.
Children
.Add(t);
System\Windows\Controls\Primitives\Popup.cs (2)
2436
visualToClientTransform.
Children
.Add(visual.TransformToAncestor(rootVisual));
2439
visualToClientTransform.
Children
.Add(new MatrixTransform(
System\Windows\Documents\AdornerLayer.cs (2)
980
group.
Children
.Add(matrixTransform);
984
group.
Children
.Add(sourceTransform);
System\Windows\Documents\ColumnResizeAdorner.cs (2)
78
group.
Children
.Add(translation);
82
group.
Children
.Add(transform);
System\Windows\Documents\CompositionAdorner.cs (2)
103
group.
Children
.Add(translation);
107
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)
395
transformGroup.
Children
.Add(transform);
396
transformGroup.
Children
.Add(deviceTransform);