I am trying to use the Traditional Application Menu instead of the Backstage Application Menu. My XAML builds right (it is based off of the application manual example) and when I click on the Orb, it changes colors, but no menu is shown. So i recognized that the Width and Height in Auto mode is set to 0. So I changed it to 250 width and height and still no menu is visible.
Here is my XAML:
Here is my XAML:
<ribbon:Ribbon.ApplicationMenu>
<ribbon:ApplicationMenu Width="250" Height="250">
<ribbon:SplitButton Label="New" Width="250" Height="250"/>
<ribbon:Button Label="Save" Width="250" Height="250"/>
<ribbon:Button Label="Open" Width="250" Height="250"/>
</ribbon:ApplicationMenu>
</ribbon:Ribbon.ApplicationMenu>