Actually, windows phone provide default message box with black background. I am already using custom message box using its toolkit. It has background property but I am unable to assign any value. It gives type casting error.
hope so someone will tell the right value, I alreay tried (0,0,0,0) / "grey" / colors.grey but same error
CustomMessageBox msgbox = new CustomMessageBox()
{
Caption = "Memory Race",
Message ="This is custom message box!",
LeftButtonContent = "OK",
Background = "what?"
};
you can set backgroundcolor
Background = new SolidColorBrush(Colors.Green);