Whilst testing out Windows Phone 7 Development using Silverlight, I needed to get the Default Theme Foreground Colour that is set by the user. To get the Foreground colour you need 2 lines of code:
PhoneApplicatonPage pap = new PhoneApplicationPage();
pap.Resources["PhoneForegroundColor"]).ToString();
This will get the Foreground Color 🙂 For the Background Color, click here
One Response
[…] For the foreground color check this post […]