我有一组样式,我绑定到viewmodel。这适用于背景和前景。我现在想要绑定fontsize。我可以使绑定工作,但是当我更改值并为该属性调用PropertyChanged时,它不会获得新值。有什么想法吗?
sample.xaml
<Style x:Key="ApplicationNameStyle" TargetType="TextBlock">
<Setter Property="Foreground" Value="{StaticResource NavigationForegroundColorBrush}"/>
<Setter Property="FontSize" Value="{Binding FontSize12, Source={StaticResource Sampe}}"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Margin" Value="0,2,0,0"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect BlurRadius="10" Opacity="0.25" ShadowDepth="0"/>
</Setter.Value>
</Setter>
</Style>
sampleviewmodel.cs
public Double FontSize12
{
get
{
return _fontSize12;
}
set
{
_fontSize12 = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("FontSize12"));
}
}
答案 0 :(得分:1)
您可以尝试设置绑定Mode=TwoWay
。这将使您对象上的任何更改都反映在UI上。