
Stuck on using an older version because migrating was too big of a change and the boss didn't approve :), but anyways...
Trying to make a dynamic popup menu with large icons, but the ItemVariantSize prop seems to be ignored:
<ribbon:PopupButton Label="QuickLinks" ImageSourceLarge="/ActiproSoftware.Ribbon.Wpf351;component/Products/Ribbon/Images/ButtonDefault32.png">
<ribbon:Menu ItemVariantSize="Large" ItemsSource="{Binding QuickLinks}">
<ribbon:Menu.ItemTemplate>
<DataTemplate>
<ribbon:Button Label="{Binding Description}" ImageSourceLarge="{Binding ImageSource}" />
</DataTemplate>
</ribbon:Menu.ItemTemplate>
</ribbon:Menu>
</ribbon:PopupButton>
The items come in with the small icon all the time. Am I missing something? Thanks!