how to create a brush in MFC?
I need a color that isn't in the standard brushes. (dark red, red, green, darkgreen)
please help,
VIsualPenguin
Printable View
how to create a brush in MFC?
I need a color that isn't in the standard brushes. (dark red, red, green, darkgreen)
please help,
VIsualPenguin
Take a look at the CBrush object.
CBrush br(RGB(23, 253, 75));
That would be a very greenish brush, with a little blue and a little lighter than normal green.
thanks!