'Color RGB in BackColor's Form

I'd like to put the RBG color In the property of the form, not like code, but when I try I got this error.

"0, 161, 230 no es un valor válido para Int32."

(not a valid value)

I know I could do something like this:

this.BackColor = Color.FromArgb(0, 161, 230);

But it doesn't give me a preview about the color.

What's wrong?

Thanks for the help! :)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source