我刚开始使用Ribbon Bar在WPF项目中工作,但我遇到了RibbonComboBox。
我需要添加3个项目,所以到目前为止我所做的是:
<RibbonComboBox Name="phaseComboBox">
<RibbonGallery>
<RibbonGalleryCategory>
<RibbonGalleryItem>
Phase 1
</rb:RibbonGalleryItem>
<RibbonGalleryItem>
Phase 2
</RibbonGalleryItem>
<RibbonGalleryItem>
Phase 3
</RibbonGalleryItem>
</RibbonGalleryCategory>
<RibbonGallery>
</RibbonComboBox>
但是我首先要选择第一个元素,因此,我将RibbonGalleryCategory
的{{1}}属性设置为SelectedValue
,但它永远不会被选中。
我做错了什么?这可能是一个非常简单的问题,但这是我第一次开发Ribbon Bar。
提前致谢。
答案 0 :(得分:1)
我已经解决了我的问题:
我只需要在元素中将IsSelected
属性设置为True
:
<RibbonGalleryItem Content="Phase 1" IsSelected="True" />