public MainPage()
{
this.InitializeComponent();
TextBlock story = new TextBlock();
story.Text = "TestTestTest";
story.FontSize = 22;
story.Margin = "???";
story.Foreground = "???";
body.Children.Add(story);
}
textBlock.Foreground = new SolidColorBrush(Color.FromRgb(0, 0, 255));
или
textBlock.Foreground = Brushes.Blue;
story.Margin = new Thickness(0,5,0,5);
story.Foreground = new SolidColorBrush(Colors.LimeGreen);
using System.Windows.Media;
using Windows.UI; // для Colors
using Windows.UI.Xaml.Media; // для SolidColorBrush