i have created a RibbonGallery/ComboBox
to display a list of installed fonts.
but sometimes after entering say "V" this is what i get
look at the text in the menu.
[Font Family: Name=...
why is that happening.
code
// xaml
<ribbon:RibbonComboBox Label="Gallery">
<ribbon:RibbonGallery SelectedValue="ABC" SelectedValuePath="Content" MaxColumnCount="1">
<ribbon:RibbonGalleryCategory x:Name="fontsMenu" />
</ribbon:RibbonGallery>
</ribbon:RibbonComboBox>
// code behind
InstalledFontCollection col = new InstalledFontCollection();
fontsMenu.ItemsSource = col.Families;
fontsMenu.DisplayMemberPath = "Name";