Color.FromRgb

FromRgb(byte, byte, byte)

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

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

返回值

的一个新实例Color班级

也可以看看


FromRgb(int, int, int)

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

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

返回值

的一个新实例Color班级

也可以看看


FromRgb(float, float, float)

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

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

返回值

的一个新实例Color班级

也可以看看