Color.Addition(Color, Color) Operator
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds two Color structures.
public:
static System::Windows::Media::Color operator +(System::Windows::Media::Color color1, System::Windows::Media::Color color2);
public static System.Windows.Media.Color operator + (System.Windows.Media.Color color1, System.Windows.Media.Color color2);
static member ( + ) : System.Windows.Media.Color * System.Windows.Media.Color -> System.Windows.Media.Color
Public Shared Operator + (color1 As Color, color2 As Color) As Color
A new Color structure whose color values are the results of the addition operation.
Color structures are added together by adding the alpha, red, green, and blue channels of the first color to the alpha, red, green, and blue channels of the second color. For example, the alpha channel of color1
and the alpha channel of color2
are added together to produce the alpha channel of the resulting color. The same is done with the red, green, and blue channels to produce the red, green, and blue channels of the new color.
The equivalent method for this operator is Color.Add(Color, Color)
제품 | 버전 |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.