ColorHelper 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public ref class ColorHelper sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class ColorHelper final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class ColorHelper
Public NotInheritable Class ColorHelper
- 繼承
- 屬性
Windows 需求
裝置系列 |
Windows 10 (已於 10.0.10240.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v1.0 引進)
|
備註
Color是Windows 執行階段結構,代表具有四個色板的色彩: ( Alpha) 、R (紅色) 、G (綠色) 、B (藍色) 。 每個值都會儲存為值為 0-255 的 Byte 類型。 Color最常見的應用程式是在 UI 元素中使用 C++、C# 或 Visual Basic 及其 XAML UI 定義,在 UI 元素中定義色彩相關屬性。
ColorHelper 是數個Helper類別的其中一個,旨在提供Windows 執行階段結構值的公用程式方法。 C# 和 Microsoft Visual Basic 程式碼可以改用Color的方法,因為公用程式方法可直接在結構上使用,因為.NET Framework執行時間支援。 C++ 程式碼,包括 Visual C++ 元件延伸模組 (C++/CX) 只能存取 Color上的資料值,例如 A 域值。 針對 C++ 開發人員,C# 和 Microsoft Visual Basic 可以直接在 Color 上使用的一些公用程式功能,因為 ColorHelper 類別提供非資料成員。
版本歷程記錄
Windows 版本 | SDK 版本 | 新增值 |
---|---|---|
1703 | 15063 | ToDisplayName |
方法
FromArgb(Byte, Byte, Byte, Byte) |
根據ARGB元件的離散位元組值,產生Color結構。 C# 和 Microsoft Visual Basic 程式碼應該改用 Color.FromArgb 。 |
ToDisplayName(Color) |
擷取指定色彩的顯示名稱。 |