我在我的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”的fontSize属性的TextBlock。我做了这个,但后来我不知道该怎么做:
DataTemplate template = (DataTemplate)this.Resources["DataTemplate1"];
//template.???
实际上我想在用户按下按钮时增加fontSize。这是错误的做法吗?
答案 0 :(得分:0)
是的,这样做是不好的方法。如果要在按下按钮时更改某些内容,只需在模板中重新定义“按下”状态即可。看一个类似的问题:How to change color of button when clicked in WP7?