subtract two colors
Published: 24. October 2011 | Updated: 24. October 2011License: Microsoft Public License (MS-PL)
Categories: WPF
Tags: C# Colors WPF
Import namespace
using System.Windows.Media;
Code
Color red = Colors.Red; Color green = Colors.Green; Color color = Color.Subtract(red, green);
| Send us feedback about this snippet » |





