Create a GDI+ Custom Color

  • Thread starter Thread starter srfpala
  • Start date Start date
S

srfpala

Guest
Tried
Color^ LightRed = gcnew Color::FromArgb(255,128,0,0);
and
System::Drawing::Color^ lightRed = gcnew
System::Drawing::Color(System::Drawing::Color::FromArgb(255, 128,0, 0));

Both of these fail.
Any ideas?
Bob

Continue reading...
 
Back
Top