I am using TextBlock.Inlines to programmatically set text properties in the "Behind Code" in my windows Phone app. Does anyone know how to programmatically align the text using inlines? I've tried the applying the alignment property as depicted below without much luck.
MyLabel.Inlines.Add(new Run() { Text = "My Text ", FontSize = 10, VerticalAlignment = new ( VerticalAlignment.Center) });
Thanks
VerticalAlignment = VerticalAlignment.Center, withoutnew()operator. – Haspemulator Feb 7 at 17:56