Color.FromRgba

FromRgba(byte, byte, byte, byte)

返回具有请求的 ged、green、blue、alpha 值的新颜色。 所有颜色分量必须在 0-255 范围内。

public static Color FromRgba(byte red, byte green, byte blue, byte alpha)
范围类型描述
redByte表示颜色的红色分量的字节。
greenByte表示颜色的绿色分量的字节。
blueByte表示颜色的蓝色分量的字节。
alphaByte表示颜色的 alpha 分量的字节。

返回值

的一个新实例Color班级

也可以看看


FromRgba(int, int, int, int)

返回具有请求的 ged、green、blue、alpha 值的新颜色。 所有颜色分量必须在 0-255 范围内。

public static Color FromRgba(int red, int green, int blue, int alpha)
范围类型描述
redInt32表示颜色的红色分量的 int。
greenInt32表示颜色的绿色分量的 int。
blueInt32表示颜色的蓝色分量的 int。
alphaInt32表示颜色的 alpha 分量的 int。

返回值

的一个新实例Color班级

也可以看看


FromRgba(float, float, float, float)

返回具有请求的 ged、绿色、蓝色、alpha 值的新颜色。 所有颜色分量必须在 0-1 范围内。

public static Color FromRgba(float red, float green, float blue, float alpha)
范围类型描述
redSingle表示颜色的红色分量的浮点数。
greenSingle表示颜色的绿色分量的浮点数。
blueSingle表示颜色的蓝色分量的浮点数。
alphaSingle表示颜色的 alpha 分量的浮点数。

返回值

的一个新实例Color班级

也可以看看