I have rgb value 0, 69, 255. What would be it’s argb value in silverlight. Is there any online converter that we can use.
Thanks in anticipation!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ARGB or RGBA works just like RGB except you need an extra value for alpha or transparency. Now, 0 alpha means fully transparent, while 255 alpha is totally opaque. So you probably want use the same RBG values with 255 for the alpha. You may also want to check out the documentation for Color.FromARGB.