>我正在查看 LinearGradientBrush 类的构造函数,我看到它有一个覆盖,它采用 GradientStop 的集合和一个双精度作为角度。
当我查看它的属性时,我找不到如何在定义画笔后从画笔中获得角度。
有没有办法做到这一点,或者我是否必须编写一些函数来查看起点和终点并从中计算角度?(嘭 - 请不要告诉我这是我唯一的选择...
一旦定义,我找不到如何从画笔中获得角度。
根据 referencesource.microsoft.com,angle
不存储,而仅用于计算EndPoint
:
public LinearGradientBrush(GradientStopCollection gradientStopCollection,
double angle) : base (gradientStopCollection)
{
EndPoint = EndPointFromAngle(angle);
}
private Point EndPointFromAngle(double angle)
{
// Convert the angle from degrees to radians
angle = angle * (1.0/180.0) * System.Math.PI;
return (new Point(System.Math.Cos(angle), System.Math.Sin(angle)));
}
从EndPoint
获得angle
应该是直截了当的。