I'm tryign to set my font weight propert to bold. But can't do that. So How can i set my font weight property to bold in c# code?
tbgc1.FontWeight.Weight = ?;
I'm tryign to set my font weight propert to bold. But can't do that. So How can i set my font weight property to bold in c# code?
tbgc1.FontWeight.Weight = ?;
using Windows.UI.Text;
....
tbgc1.FontWeight = FontWeights.Bold;
MSDNの FontWeight クラスを参照してください