bug with color ?

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

Color.FromArgb(0x000000) gives me a white color whereas I expected a black
one, isn't it ?
 
The first byte represents the transparency (although this is not supported
in .NETCF) so you should use:-
Color.FromArgb(0xff000000)
For opaque black

Peter
 
Back
Top