I've the following XAML for defining a Fluent Ribbon:
<Fluent:RibbonWindow x:Class="WMathTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Fluent="urn:fluent-ribbon"
Title="Some Application"
Width="800"
Height="600" >
<Fluent:Ribbon>
<!--Backstage-->
<Fluent:Ribbon.Menu>
<Fluent:Backstage Header="File">
<Fluent:BackstageTabControl>
<Fluent:BackstageTabItem Header="Database"/>
</Fluent:BackstageTabControl>
</Fluent:Backstage>
</Fluent:Ribbon.Menu>
<!--Tabs-->
<Fluent:RibbonTabItem Header="author">
<Fluent:RibbonGroupBox Header="Group">
<Fluent:Button Header="Green"
Icon="Images\Green.png"
LargeIcon="Images\GreenLarge.png" />
<Fluent:Button Header="Grey"
Icon="Images\Gray.png"
LargeIcon="Images\GrayLarge.png" />
</Fluent:RibbonGroupBox>
</Fluent:RibbonTabItem>
</Fluent:Ribbon>
</Fluent:RibbonWindow>
If I run my project and I click on the File application button I can see the backstage. If I click on Database I see an empty backstage:
Now I'd like to add some button (Open Database, Save Database and so on) but I don't know how to add a XAML for showing a page with the options (like the one that I can see in Word).
How can I add custom controls in the backstage when I click on the Database Tab Item?