我的 xaml 中有这个 DataTemplate
<phone:PhoneApplicationPage.Resources>
<DataTemplate x:Key="DataTemplate1">
<Grid d:DesignWidth="485" d:DesignHeight="166" Height="104" Width="456">
<StackPanel Margin="92,0,0,1">
<TextBlock x:Name="nTitle" Text="{Binding title}" FontSize="18.667"/>
</StackPanel>
</Grid>
</DataTemplate>
</phone:PhoneApplicationPage.Resources>
我想在代码中编辑名为“nTitle”的 TextBlock 的 fontSize 属性。我这样做了,但后来我不知道该怎么做:
DataTemplate template = (DataTemplate)this.Resources["DataTemplate1"];
//template.???
实际上我想在用户按下按钮时增加字体大小。这是错误的做法吗?