优先级问题吧,如果你在Style中再添加一个属性,如:
        <Style TargetType="TextBox">
            <Setter Property="Text" Value="{Binding Source={StaticResource person1}, Path=Age, UpdateSourceTrigger=PropertyChanged}"/>
            <Setter Property="FontWeight" Value="Bold"/>
        </Style>
如果你的textbox1不设置FontWeight,其FontWeight值就会用Style中的Bold,如果你textbox1的FontWeight设为Light,就会用Light,而不会用Bold。