Color Structure
.NET Framework 3.0
Describes a color in terms of alpha, red, green, and blue channels.
Namespace: System.Windows.Media
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
[TypeConverterAttribute(typeof(ColorConverter))] [LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)] public struct Color : IFormattable, IEquatable<Color>
/** @attribute TypeConverterAttribute(System.Windows.Media.ColorConverter) */ /** @attribute LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable) */ public final class Color extends ValueType implements IFormattable, IEquatable<Color>
<Color .../>
<object property="predefinedColor"/> - or - <object property="#rgb"/> - or - <object property="#argb"/> - or - <object property="#rrggbb"/> - or - <object property="#aarrggbb"/> - or - <object property="sc# scA,scR,scG,scB"/> - or - <object property="ContextColor profileUri alphaValue,colorValue"/>
predefinedColor One of the predefined colors defined by the Colors class. rgb A three-digit hexadecimal number. The first digit specifies the color's R value, the second digit specifies the G value, and the third digit specifies the B value. For example, 00F. argb A four-digit hexadecimal number. The first digit specifies the color's A value, the second digit specifies its R value, the next digit specifies the G value, and the final digit specifies its B value. For example, F00F. rrggbb A six digit hexadecimal number. The first two digits specify the color's R value, the next two specify its G value, and the final two specify its B value. For example, 0000FF. aarrggbb An eight-digit hexadecimal number. The first two digits specify the color's A value, the next two specify its R value, the next two specify its G value, and the final two specify its B value. For example, FF0000FF. scA System.Single The color's ScA value. scR System.Single The color's ScR value. scG System.Single The color's ScG value. scB System.Single The color's ScB value. profileUri System.Uri The International Color Consortium (ICC) or Image Color Management (ICM) color profile. alphaValue System.Single The alpha channel color value. The value range is 0.0 to 1.0. colorValue System.Single A comma-delimited list of 3 to 8 values that represent the color channels of the color profile. The value range is 0.0 to 1.0.
This example shows how to use sRGB, ScRGB, and color profile values to create the color blue.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <StackPanel Margin="20"> <!-- This rectangle fill uses a Color with ScRGB values to create a completely opaque blue. --> <Rectangle Width="50" Height="50" Margin="10"> <Rectangle.Fill> <SolidColorBrush> <SolidColorBrush.Color> <!-- Describes the brush's color using ScRGB values. Each value has a range of 0-1. --> <Color ScA="1.0" ScR="0.0" ScG="0.0" ScB="1.0" /> </SolidColorBrush.Color> </SolidColorBrush> </Rectangle.Fill> </Rectangle> <!-- This rectangle fill uses a Color with sRGB values to create a completely opaque blue. --> <Rectangle Width="50" Height="50" Margin="10"> <Rectangle.Fill> <SolidColorBrush> <SolidColorBrush.Color> <!-- Describes the brush's color using sRGB values. Each value is a byte with range of 0-255. --> <Color A="255" R="0" G="0" B="255" /> </SolidColorBrush.Color> </SolidColorBrush> </Rectangle.Fill> </Rectangle> <!-- This rectangle fill uses the sRGB color profile and values to create a complete opaque blue. --> <Rectangle Width="50" Height="50" Margin="10"> <Rectangle.Fill> <SolidColorBrush Color="ContextColor file://C:/WINDOWS/system32/spool/drivers/color/sRGB%20Color%20Space%20Profile.icm 1.0,0.0,0.0,1.0"/> </Rectangle.Fill> </Rectangle> </StackPanel> </Page>
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: