1 write to Blue
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
183
this.
Blue
= blue;
7 references to Blue
PresentationFramework.Classic (7)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (7)
193
get { return Color.FromArgb(this.Alpha, (byte)(this.Red * 255), (byte)(this.Green * 255), (byte)(this.
Blue
* 255)); }
242
Debug.Assert(rgbColor.
Blue
>= 0 && rgbColor.
Blue
<= 1, "Blue must be between 0 and 1.");
244
float min = Math.Min(rgbColor.Red, Math.Min(rgbColor.Green, rgbColor.
Blue
));
245
float max = Math.Max(rgbColor.Red, Math.Max(rgbColor.Green, rgbColor.
Blue
));
281
hue = (rgbColor.Green - rgbColor.
Blue
) / delta;
286
hue = 2 + (rgbColor.
Blue
- rgbColor.Red) / delta;