如何使Silverlight中TextBlock的文本粗体?

前端之家收集整理的这篇文章主要介绍了如何使Silverlight中TextBlock的文本粗体?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发C#中的窗口电话7应用程序.我是新手机7的应用程序.我也是Silverlight的新手.我想动态地生成Texblock的粗体文本.我想为文本的某些部分生成粗体文本.我正在使用以下代码

IncometextBlock.Text = "Income entries on " + selectedDate.ToShortDateString() + "        Page - "+SelectedButtonName+"";

我想输出

“2011年1月21日收入条目页 – A”

我想要上面的输出.如何使上述要求的粗体文本?你能否提供我可以解决上述问题的任何代码链接.如果我做错了,请指导我.

解决方法

我会这样做

IncometextBlock.Inlines.Clear();
IncometextBlock.Inlines.Add(new Run() {Text = "Income entries",FontWeight = FontWeights.Bold});
IncometextBlock.Inlines.Add(new Run() {Text = " on " }); 
IncometextBlock.Inlines.Add(new Run() {Text = selectedDate.ToShortDateString(),FontWeight = FontWeights.Bold});
IncometextBlock.Inlines.Add(new Run() {Text = "     Page - "}); 
IncometextBlock.Inlines.Add(new Run() {Text = SelectedButtonName,FontWeight = FontWeights.Bold});

猜你在找的Silverlight相关文章