Is there a way to do this in Windows Phone 7?
I can reference the TextBlock in my C# Code, but I don\'t know exactly how to then set the foreground color of it.
You could use Brushes.White to set the foreground.
myTextBlock.Foreground = Brushes.White;
The Brushes class is located in System.Windows.Media namespace.
Or, you can press Ctrl+. while the cursor is on the unknown class name to automatically add using directive.
using