2011-02-14 59 views
1

我有RibbonControlsLibrary的功能區菜單。 我有RibbonGalleryCategory:WPF:RibbonGalleryCategory和IsSynchronizedWithCurrentItem

<RibbonGalleryCategory Header="Recent Documents" 
         ItemsSource="{Binding RecentDocuments}"> 
... 
</RibbonGalleryCategory> 

如何我MVVM同步選定的項目? 如何在我的ICommand上綁定選定的項目? RibbonGalleryCategory.IsSynchronizedWithCurrentItem不存在。

回答

1

您的RibbonGalleryCategory需要成爲RibbonGallery的一部分。您可以在其上設置選定的項目。

<RibbonGallery SelectedItem="RecentDocument"> 
    <RibbonGalleryCategory Header="Recent Documents" 
          ItemsSource="{Binding RecentDocuments}"> 
    ... 
    </RibbonGalleryCategory> 
</RibbonGallery> 
相關問題