RotateTransform.CenterY 属性

定义

获取或设置此转换的旋转中心点的 y 坐标。

public:
 property double CenterY { double get(); void set(double value); };
double CenterY();

void CenterY(double value);
public double CenterY { get; set; }
var double = rotateTransform.centerY;
rotateTransform.centerY = double;
Public Property CenterY As Double
<RotateTransform CenterY="double"/>

属性值

Double

double

旋转中心的 y 坐标,以转换的参考帧内的像素为单位。 默认值为 0。

注解

RotateTransform 作为 UIElementRenderTransform 应用时,RenderTransformOrigin 也会影响转换的行为方式。 具体而言,这会影响 UIElement 旋转的中心点。 有关详细信息,请参阅 RotateTransform 中的备注。

适用于