Colors

Tell us more about your request. You want to draw a gradient?
 
I want to draw or paint a colors combination using white and blue... I don't know if it needs to create a new color definition or it just create a bitmap usable as a background in a control.
 
Look into using the LinearGradientBrush. If the control resizes a lot you could draw with its Paint event, otherwise just draw to a Bitmap the size of the control rectangle (Bounds) and set this image as background image.
 
Back
Top