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