I am trying to set a colour of an elipse object in code behind. So far I'm doing it by using the SolidColorBrush method. Wonder if there is a way to insert the colour value in hexadecimal, like in css.
Here is a code that I am using:
ellipse.Fill = new SolidColorBrush(Colors.Yellow);