Binding a Style Setter Value properly
问题 I have the following scenario: <UserControl.Resources> <Style x:Key="NormalFontStyle"> <Setter Property="Control.FontFamily" Value="{Binding MyFont}"></Setter> </Style> <Style x:Key="BigFontStyle"> <Setter Property="Control.FontFamily" Value="{Binding MyFont}"></Setter> <Setter Property="Control.FontSize" Value="{Binding MyBigFontSize}"></Setter> </Style> </UserControl.Resources> <Grid Style="{StaticResource NormalFontStyle}"> <!-- Grid Contents --> </Grid> The DataContext of the Grid is the