WPF功能区组合框选择默认项目

时间:2015-03-23 08:38:21

标签: c# wpf combobox ribbon

例如,当控制置位时,如何选择默认显示为选定项目的第一个值Select。目前没有出现任何内容。

 <RibbonComboBox Width="50" Margin="0,0,0,2" DisplayMemberPath="Select"> 
                <RibbonGallery SelectedValue="Select">
                    <RibbonGalleryCategory >
                        <RibbonGalleryItem Content="Select" />
                        <RibbonGalleryItem Content="Expand" />
                        <RibbonGalleryItem Content="Collapse" />
                    </RibbonGalleryCategory>
                </RibbonGallery>
            </RibbonComboBox>

1 个答案:

答案 0 :(得分:0)

创建一个属性SelectedIndex并将其绑定到Combobox。然后SelectedIndex = 0将选择组合框中的第一个项目