我创建了一个RibbonGallery/ComboBox
来显示已安装字体的列表。
但有时在输入说“V”之后这就是我得到的
查看菜单中的文字。
[Font Family: Name=...
为什么会这样。
码
// 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";
答案 0 :(得分:1)
这就是FontFamily.ToString()实现的方式,这正是我们所展示的内容:
public override string ToString()
{
return string.Format(CultureInfo.CurrentCulture, "[{0}: Name={1}]", new object[] { base.GetType().Name, this.Name });
}
你肯定需要将一些DisplayMemberPath设置为“Name”,你已经在RibbonGalleryCategory上有一个,但现在我很好奇 - 不应该在RibbonGallery甚至RibbonComboBox上设置它?坦率地说,我还没有使用过wpf功能区控件 - 我所能提出的只是假设。
希望这会有所帮助:)