RibbonComboBox的SelectedValue属性问题

时间:2012-08-02 19:40:17

标签: wpf ribbon-control

我刚开始使用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。

提前致谢。

1 个答案:

答案 0 :(得分:1)

我已经解决了我的问题:

我只需要在元素中将IsSelected属性设置为True

<RibbonGalleryItem Content="Phase 1" IsSelected="True" />