I\'m developing a WinForm Printing application for our company.
When the document is printed, I need to take the System.Drawing.Color property of each C
System.Drawing.Color
Why not the GDI+ brush?
http://msdn.microsoft.com/en-us/library/system.drawing.solidbrush.solidbrush.aspx
The other one is for WPF.
Use the SolidBrush class:
using (SolidBrush brush = new SolidBrush(yourColor)) { // ... }