How Change the color of this TextBlock from MainPage.xaml.cs?
To set the foreground color of the TextBlock, you can use something similar
myTextBlock.Foreground = new SolidColorBrush(someColor);
I am a new developer of Windows Phone 7. I On the MainPage.xaml page, there is TextBlock Text = “{Binding MyDate}”.
How to change the color of this TextBlock from MainPage.xaml.cs?
First, you need to specify an x:Name attribute for the TextBlock element, for example, X:NAME = “myTextBlock”. After this operation is completed, the TextBlock is in the code-behind Can be used as a field with the same name in x:Name.
To set the foreground color of the TextBlock, you can use something similar
< pre>myTextBlock.Foreground = new SolidColorBrush(someColor);