How to change font style and font weight in C#
Below is an example of how to set the font style and font weight for a textbox called txtBoxExample
txtBox.FontStyle = Windows.UI.Text.FontStyle.Italic;
txtBox.FontWeight = Windows.UI.Text.FontWeights.Bold;