How can I get the value of the setterter property in xaml?
For example, I have the following style:
<Style TargetType="TextBox"> <Setter Property="Background" Value="YellowGreen" /> </Style>
How can I get the value of the Background property from the default style in a TextBox?
<Style TargetType="Button"> <Setter Property="Background" Value="{Binding ???}" /> </Style>
I need this because I do not have access to TextBox style ..
source share