Ok all i need to do is how do i create a brush color in my.settings?
because System.Drawing.Color is not for Brushes is it? Please help. thanks in advance.
Printable View
Ok all i need to do is how do i create a brush color in my.settings?
because System.Drawing.Color is not for Brushes is it? Please help. thanks in advance.
Given that the Brush class is a member of the System.Drawing namespace, it's a fair bet that any colour associated with a Brush object will be from the System.Drawing namespace too. I suggest that you spend some time learning how to use the MSDN documentation. Go to the documentation for the Brush class. Click the link for the SolidBrush class, which is one of the derived Brushes that uses a Color. Follow any links that lead you to any reference to a Color and then click that link. You will find yourself looking at the documentation for the System.Drawing.Color structure.
Done it, cheers