我正在开发一个基本的文本Windows手机应用程序。它由一个主页面和几个从中分支的页面组成。我需要两件事主要是
答案 0 :(得分:0)
C#代码背后:
this.textBlock.FontSize = 30;
this.textBlock.FontFamily = new FontFamily("Arial"); //to be pulled from isolated storage
this.textBlock.FontWeight = FontWeights.Bold;
XAML:
<TextBlock Text="TextBlock" FontWeight="Bold" FontSize="30" FontFamily="Arial" x:Name="textBlock"/>
就在应用程序中制作字体级联而言,您可以使用单个独立存储值并从应用程序的设置页面更改文本值(即“Arial”,“Tahoma”等)。 / p>
如果这个不够清楚,我可以为你编写一份工作样本。
更多样本:Here