Color 結構
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 ARGB (Alpha、紅、綠、藍) 色彩。
public value class Color : IEquatable<System::Drawing::Color>
public value class Color
[System.ComponentModel.TypeConverter("System.Drawing.ColorConverter, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public readonly struct Color : IEquatable<System.Drawing.Color>
public struct Color : IEquatable<System.Drawing.Color>
public readonly struct Color : IEquatable<System.Drawing.Color>
[System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public struct Color
[System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))]
[System.Serializable]
public struct Color
public struct Color
[<System.ComponentModel.TypeConverter("System.Drawing.ColorConverter, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")>]
type Color = struct
type Color = struct
[<System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type Color = struct
[<System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))>]
[<System.Serializable>]
type Color = struct
Public Structure Color
Implements IEquatable(Of Color)
Public Structure Color
- 繼承
- 屬性
- 實作
範例
下列程式代碼範例示範A、 R和 成員的Color、 G和 BImplicit 屬性。
此範例的設計目的是要與 Windows Form 搭配使用。 將程式代碼貼到表單中,並從表單的事件Paint處理方法呼叫 ShowPropertiesOfSlateBlue
方法,並傳遞e
為 PaintEventArgs。
void ShowPropertiesOfSlateBlue( PaintEventArgs^ e )
{
Color slateBlue = Color::FromName( "SlateBlue" );
Byte g = slateBlue.G;
Byte b = slateBlue.B;
Byte r = slateBlue.R;
Byte a = slateBlue.A;
array<Object^>^temp0 = {a,r,g,b};
String^ text = String::Format( "Slate Blue has these ARGB values: Alpha:{0}, "
"red:{1}, green: {2}, blue {3}", temp0 );
e->Graphics->DrawString( text, gcnew System::Drawing::Font( this->Font,FontStyle::Italic ), gcnew SolidBrush( slateBlue ), RectangleF(PointF(0.0F,0.0F),this->Size) );
}
private void ShowPropertiesOfSlateBlue(PaintEventArgs e)
{
Color slateBlue = Color.FromName("SlateBlue");
byte g = slateBlue.G;
byte b = slateBlue.B;
byte r = slateBlue.R;
byte a = slateBlue.A;
string text = String.Format("Slate Blue has these ARGB values: Alpha:{0}, " +
"red:{1}, green: {2}, blue {3}", new object[]{a, r, g, b});
e.Graphics.DrawString(text,
new Font(this.Font, FontStyle.Italic),
new SolidBrush(slateBlue),
new RectangleF(new PointF(0.0F, 0.0F), this.Size));
}
Private Sub ShowPropertiesOfSlateBlue(ByVal e As PaintEventArgs)
Dim slateBlue As Color = Color.FromName("SlateBlue")
Dim g As Byte = slateBlue.G
Dim b As Byte = slateBlue.B
Dim r As Byte = slateBlue.R
Dim a As Byte = slateBlue.A
Dim text As String = _
String.Format("Slate Blue has these ARGB values: Alpha:{0}, " _
& "red:{1}, green: {2}, blue {3}", New Object() {a, r, g, b})
e.Graphics.DrawString(text, New Font(Me.Font, FontStyle.Italic), _
New SolidBrush(slateBlue), _
New RectangleF(New PointF(0.0F, 0.0F), _
Size.op_Implicit(Me.Size)))
End Sub
備註
具名色彩是使用 結構的屬性 Color 來表示。
每個圖元的色彩會以 32 位的數位表示:8 位代表 alpha、紅色、綠色和藍色 (ARGB) 。 四個元件中的每一個都是從 0 到 255 的數位,0 代表無濃度,255 代表完整濃度。 Alpha元件會指定色彩的透明度:0 完全透明,而 255 則完全不透明。 若要判斷色彩的 Alpha、紅色、綠色或藍色元件,請分別使用 A、 R、 G或 B 屬性。 您可以使用其中 FromArgb 一種方法來建立自訂色彩。
如需這些色彩的詳細資訊,請參閱 依名稱列出色彩。
欄位
Empty |
表示為 |
屬性
A |
取得這個 Color 結構的 Alpha 元件值。 |
AliceBlue |
取得系統定義的色彩,此色彩具有的 |
AntiqueWhite |
取得系統定義的色彩,此色彩具有的 |
Aqua |
取得系統定義的色彩,此色彩具有的 |
Aquamarine |
取得系統定義的色彩,此色彩具有的 |
Azure |
取得系統定義的色彩,此色彩具有的 |
B |
取得這個 Color 結構的藍色元件值。 |
Beige |
取得系統定義的色彩,此色彩具有的 |
Bisque |
取得系統定義的色彩,此色彩具有的 |
Black |
取得系統定義的色彩,此色彩具有的 |
BlanchedAlmond |
取得系統定義的色彩,此色彩具有的 |
Blue |
取得系統定義的色彩,此色彩具有的 |
BlueViolet |
取得系統定義的色彩,此色彩具有的 |
Brown |
取得系統定義的色彩,此色彩具有的 |
BurlyWood |
取得系統定義的色彩,此色彩具有的 |
CadetBlue |
取得系統定義的色彩,此色彩具有的 |
Chartreuse |
取得系統定義的色彩,此色彩具有的 |
Chocolate |
取得系統定義的色彩,此色彩具有的 |
Coral |
取得系統定義的色彩,此色彩具有的 |
CornflowerBlue |
取得系統定義的色彩,此色彩具有的 |
Cornsilk |
取得系統定義的色彩,此色彩具有的 |
Crimson |
取得系統定義的色彩,此色彩具有的 |
Cyan |
取得系統定義的色彩,此色彩具有的 |
DarkBlue |
取得系統定義的色彩,此色彩具有的 |
DarkCyan |
取得系統定義的色彩,此色彩具有的 |
DarkGoldenrod |
取得系統定義的色彩,此色彩具有的 |
DarkGray |
取得系統定義的色彩,此色彩具有的 |
DarkGreen |
取得系統定義的色彩,此色彩具有的 |
DarkKhaki |
取得系統定義的色彩,此色彩具有的 |
DarkMagenta |
取得系統定義的色彩,此色彩具有的 |
DarkOliveGreen |
取得系統定義的色彩,此色彩具有的 |
DarkOrange |
取得系統定義的色彩,此色彩具有的 |
DarkOrchid |
取得系統定義的色彩,此色彩具有的 |
DarkRed |
取得系統定義的色彩,此色彩具有的 |
DarkSalmon |
取得系統定義的色彩,此色彩具有的 |
DarkSeaGreen |
取得系統定義的色彩,此色彩具有的 |
DarkSlateBlue |
取得系統定義的色彩,此色彩具有的 |
DarkSlateGray |
取得系統定義的色彩,此色彩具有的 |
DarkTurquoise |
取得系統定義的色彩,此色彩具有的 |
DarkViolet |
取得系統定義的色彩,此色彩具有的 |
DeepPink |
取得系統定義的色彩,此色彩具有的 |
DeepSkyBlue |
取得系統定義的色彩,此色彩具有的 |
DimGray |
取得系統定義的色彩,此色彩具有的 |
DodgerBlue |
取得系統定義的色彩,此色彩具有的 |
Firebrick |
取得系統定義的色彩,此色彩具有的 |
FloralWhite |
取得系統定義的色彩,此色彩具有的 |
ForestGreen |
取得系統定義的色彩,此色彩具有的 |
Fuchsia |
取得系統定義的色彩,此色彩具有的 |
G |
取得這個 Color 結構的綠色元件值。 |
Gainsboro |
取得系統定義的色彩,此色彩具有的 |
GhostWhite |
取得系統定義的色彩,此色彩具有的 |
Gold |
取得系統定義的色彩,此色彩具有的 |
Goldenrod |
取得系統定義的色彩,此色彩具有的 |
Gray |
取得系統定義的色彩,此色彩具有的 |
Green |
取得系統定義的色彩,此色彩具有的 |
GreenYellow |
取得系統定義的色彩,此色彩具有的 |
Honeydew |
取得系統定義的色彩,此色彩具有的 |
HotPink |
取得系統定義的色彩,此色彩具有的 |
IndianRed |
取得系統定義的色彩,此色彩具有的 |
Indigo |
取得系統定義的色彩,此色彩具有的 |
IsEmpty |
指定這個 Color 結構是否未初始化。 |
IsKnownColor |
取得值,指出這個 Color 結構是否為預先定義的色彩。 預先定義的色彩是由 KnownColor 列舉型別的項目所表示。 |
IsNamedColor |
取得值,指出這個 Color 結構是否為命名色彩,或是 KnownColor 列舉型別的成員。 |
IsSystemColor |
取得值,指出這個 Color 結構是否為系統色彩。 系統色彩是用於 Windows 顯示項目的色彩。 系統色彩是由 KnownColor 列舉型別的元素所表示。 |
Ivory |
取得系統定義的色彩,此色彩具有的 |
Khaki |
取得系統定義的色彩,此色彩具有的 |
Lavender |
取得系統定義的色彩,此色彩具有的 |
LavenderBlush |
取得系統定義的色彩,此色彩具有的 |
LawnGreen |
取得系統定義的色彩,此色彩具有的 |
LemonChiffon |
取得系統定義的色彩,此色彩具有的 |
LightBlue |
取得系統定義的色彩,此色彩具有的 |
LightCoral |
取得系統定義的色彩,此色彩具有的 |
LightCyan |
取得系統定義的色彩,此色彩具有的 |
LightGoldenrodYellow |
取得系統定義的色彩,此色彩具有的 |
LightGray |
取得系統定義的色彩,此色彩具有的 |
LightGreen |
取得系統定義的色彩,此色彩具有的 |
LightPink |
取得系統定義的色彩,此色彩具有的 |
LightSalmon |
取得系統定義的色彩,此色彩具有的 |
LightSeaGreen |
取得系統定義的色彩,此色彩具有的 |
LightSkyBlue |
取得系統定義的色彩,此色彩具有的 |
LightSlateGray |
取得系統定義的色彩,此色彩具有的 |
LightSteelBlue |
取得系統定義的色彩,此色彩具有的 |
LightYellow |
取得系統定義的色彩,此色彩具有的 |
Lime |
取得系統定義的色彩,此色彩具有的 |
LimeGreen |
取得系統定義的色彩,此色彩具有的 |
Linen |
取得系統定義的色彩,此色彩具有的 |
Magenta |
取得系統定義的色彩,此色彩具有的 |
Maroon |
取得系統定義的色彩,此色彩具有的 |
MediumAquamarine |
取得系統定義的色彩,此色彩具有的 |
MediumBlue |
取得系統定義的色彩,此色彩具有的 |
MediumOrchid |
取得系統定義的色彩,此色彩具有的 |
MediumPurple |
取得系統定義的色彩,此色彩具有的 |
MediumSeaGreen |
取得系統定義的色彩,此色彩具有的 |
MediumSlateBlue |
取得系統定義的色彩,此色彩具有的 |
MediumSpringGreen |
取得系統定義的色彩,此色彩具有的 |
MediumTurquoise |
取得系統定義的色彩,此色彩具有的 |
MediumVioletRed |
取得系統定義的色彩,此色彩具有的 |
MidnightBlue |
取得系統定義的色彩,此色彩具有的 |
MintCream |
取得系統定義的色彩,此色彩具有的 |
MistyRose |
取得系統定義的色彩,此色彩具有的 |
Moccasin |
取得系統定義的色彩,此色彩具有的 |
Name |
取得這個 Color 的名稱。 |
NavajoWhite |
取得系統定義的色彩,此色彩具有的 |
Navy |
取得系統定義的色彩,此色彩具有的 |
OldLace |
取得系統定義的色彩,此色彩具有的 |
Olive |
取得系統定義的色彩,此色彩具有的 |
OliveDrab |
取得系統定義的色彩,此色彩具有的 |
Orange |
取得系統定義的色彩,此色彩具有的 |
OrangeRed |
取得系統定義的色彩,此色彩具有的 |
Orchid |
取得系統定義的色彩,此色彩具有的 |
PaleGoldenrod |
取得系統定義的色彩,此色彩具有的 |
PaleGreen |
取得系統定義的色彩,此色彩具有的 |
PaleTurquoise |
取得系統定義的色彩,此色彩具有的 |
PaleVioletRed |
取得系統定義的色彩,此色彩具有的 |
PapayaWhip |
取得系統定義的色彩,此色彩具有的 |
PeachPuff |
取得系統定義的色彩,此色彩具有的 |
Peru |
取得系統定義的色彩,此色彩具有的 |
Pink |
取得系統定義的色彩,此色彩具有的 |
Plum |
取得系統定義的色彩,此色彩具有的 |
PowderBlue |
取得系統定義的色彩,此色彩具有的 |
Purple |
取得系統定義的色彩,此色彩具有的 |
R |
取得這個 Color 結構的紅色元件值。 |
RebeccaPurple |
取得系統定義的色彩,此色彩具有的 |
Red |
取得系統定義的色彩,此色彩具有的 |
RosyBrown |
取得系統定義的色彩,此色彩具有的 |
RoyalBlue |
取得系統定義的色彩,此色彩具有的 |
SaddleBrown |
取得系統定義的色彩,此色彩具有的 |
Salmon |
取得系統定義的色彩,此色彩具有的 |
SandyBrown |
取得系統定義的色彩,此色彩具有的 |
SeaGreen |
取得系統定義的色彩,此色彩具有的 |
SeaShell |
取得系統定義的色彩,此色彩具有的 |
Sienna |
取得系統定義的色彩,此色彩具有的 |
Silver |
取得系統定義的色彩,此色彩具有的 |
SkyBlue |
取得系統定義的色彩,此色彩具有的 |
SlateBlue |
取得系統定義的色彩,此色彩具有的 |
SlateGray |
取得系統定義的色彩,此色彩具有的 |
Snow |
取得系統定義的色彩,此色彩具有的 |
SpringGreen |
取得系統定義的色彩,此色彩具有的 |
SteelBlue |
取得系統定義的色彩,此色彩具有的 |
Tan |
取得系統定義的色彩,此色彩具有的 |
Teal |
取得系統定義的色彩,此色彩具有的 |
Thistle |
取得系統定義的色彩,此色彩具有的 |
Tomato |
取得系統定義的色彩,此色彩具有的 |
Transparent |
取得系統定義的色彩。 |
Turquoise |
取得系統定義的色彩,此色彩具有的 |
Violet |
取得系統定義的色彩,此色彩具有的 |
Wheat |
取得系統定義的色彩,此色彩具有的 |
White |
取得系統定義的色彩,此色彩具有的 |
WhiteSmoke |
取得系統定義的色彩,此色彩具有的 |
Yellow |
取得系統定義的色彩,此色彩具有的 |
YellowGreen |
取得系統定義的色彩,此色彩具有的 |
方法
Equals(Color) |
指出目前的物件是否等於另一個相同類型的物件。 |
Equals(Object) | |
FromArgb(Int32) |
從 32 位元的 ARGB 值建立 Color 結構。 |
FromArgb(Int32, Color) |
從指定的 Color 結構 (但是使用新指定的 Alpha 值) 建立 Color 結構。 雖然這個方法允許為 Alpha 值傳遞 32 位元值,但是該值是限制為 8 位元。 |
FromArgb(Int32, Int32, Int32) |
從指定的 8 位元色彩值 (紅、綠和藍) 建立 Color 結構。 Alpha 值隱含為 255 (完全不透明)。 雖然這個方法允許為每個色彩元件傳遞 32 位元值,但是每個元件的值是限制為 8 位元。 |
FromArgb(Int32, Int32, Int32, Int32) |
從四個 ARGB 元件 (Alpha、紅、綠和藍) 值建立 Color 結構。 雖然這個方法允許為每個元件傳遞 32 位元值,但是每個元件的值是限制為 8 位元。 |
FromKnownColor(KnownColor) |
從指定的預先定義色彩建立 Color 結構。 |
FromName(String) |
從指定的預先定義色彩名稱建立 Color 結構。 |
GetBrightness() |
取得這個 Color 結構的色相-彩度-亮度 (HSL) 的亮度值。 |
GetHashCode() |
傳回這個 Color 結構的雜湊程式碼。 |
GetHue() |
取得這個 Color 結構的色相-彩度-亮度 (HSL) 的色相值,單位為度。 |
GetSaturation() |
取得這個 Color 結構的色相-彩度-亮度 (HSL) 的彩度值。 |
ToArgb() |
取得這個 Color 結構的 32 位元 ARGB 值。 |
ToKnownColor() |
取得這個 KnownColor 結構的 Color 值。 |
ToString() |
將這個 Color 結構轉換為人們可讀取的 (Human-Readable) 字串。 |
運算子
Equality(Color, Color) |
測試兩個指定的 Color 結構是否相等。 |
Inequality(Color, Color) |
測試兩個指定的 Color 結構是否不同。 |