In WPF I set a style for my control so it has multiple font families specified:
<Style TargetType="{x:Type MyControl}">
<Setter Property="FontFamily"
Value="Helvetica, Arial, Segoe UI" />
</Style>
How can I determine which font is actually got selected and is in use for the control?