I have a Xamarin.Forms.Color and I want to convert it to a 'hex value'.
So far, I haven't found a solution to my problem.
My code is as follows:
foreach (var cell in Grid.Children)
{
var pixel = new Pixel
{
XAttribute = cell.X ,
YAttribute = cell.Y ,
// I want to convert the color to a hex value here
Color = cell.BackgroundColor
};
}
See Question&Answers more detail:os