4 writes to Y
PresentationCore (1)
Core\CSharp\System\Windows\Media\TranslateTransform.cs (1)
54Y = offsetY;
PresentationFramework (3)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (2)
307transform.Y = top; 1092offsetTransform.Y += offset;
src\Framework\System\Windows\Controls\GridSplitter.cs (1)
470set { Translation.Y = value; }
10 references to Y
PresentationCore (5)
Core\CSharp\System\Windows\Media\Generated\TranslateTransform.cs (1)
201data.Y = Y;
Core\CSharp\System\Windows\Media\TranslateTransform.cs (4)
68matrix.Translate(X, Y); 81return X == 0 && Y == 0 && CanFreeze; 91rect.Offset(X, Y); 106result._offsetY = Y;
PresentationFramework (5)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (2)
855sncAnnotation.UpdateAttribute(root, XmlToken.Top, snc.PositionTransform.Y.ToString(CultureInfo.InvariantCulture)); 1594ret = new Rect(anchor.X + PositionTransform.X + _deltaX, anchor.Y + PositionTransform.Y + _deltaY, Width, Height);
src\Framework\System\Windows\Controls\GridSplitter.cs (1)
469get { return Translation.Y; }
src\Framework\System\Windows\Controls\Primitives\PopupRoot.cs (1)
116return new Vector(transform.X, transform.Y);
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1166PositionTransform = new TranslateTransform(currentTransform.X + horizontalChange + _deltaX, currentTransform.Y + verticalChange + _deltaY);