You can do so as follows:
<ComboBox Name='fontCombo' ItemsSource='{x:Static Fonts.SystemFontFamilies}' />
<!--And bind the TextBlock.FontFamily to the selected item of the above combo as follows -->
<TextBlock
Text='Something'
FontFamily='{Binding ElementName=fontCombo, Path=SelectedItem}'
/>
Share with