L Lloyd Dupont Jan 14, 2004 #1 Color.FromArgb(0x000000) gives me a white color whereas I expected a black one, isn't it ?
P Peter Foot [MVP] Jan 14, 2004 #2 The first byte represents the transparency (although this is not supported in .NETCF) so you should use:- Color.FromArgb(0xff000000) For opaque black Peter
The first byte represents the transparency (although this is not supported in .NETCF) so you should use:- Color.FromArgb(0xff000000) For opaque black Peter
L Lloyd Dupont Jan 14, 2004 #3 thanks peter ! Peter Foot said: The first byte represents the transparency (although this is not supported in .NETCF) so you should use:- Color.FromArgb(0xff000000) For opaque black Peter -- Peter Foot Windows Embedded MVP OpenNETCF.org Senior Advisor www.inthehand.com | www.opennetcf.org Click to expand...
thanks peter ! Peter Foot said: The first byte represents the transparency (although this is not supported in .NETCF) so you should use:- Color.FromArgb(0xff000000) For opaque black Peter -- Peter Foot Windows Embedded MVP OpenNETCF.org Senior Advisor www.inthehand.com | www.opennetcf.org Click to expand...