Skip to content

Create a Backstage View inspired by Microsoft Office 2010.

License

Notifications You must be signed in to change notification settings

DevExpress-Examples/wpf-ribbon-create-backstage-view

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPF Ribbon - Create a Backstage View

This example demonstrates how to create a WPF Backstage View (a full screen application menu) inspired by Microsoft Office 2010.

WPF Ribbon - Backstage View, DevExpress

<dxr:RibbonControl RibbonStyle="Office2010">
    ...
    <dxr:RibbonControl.ApplicationMenu>
        <dxr:BackstageViewControl>
            <dxr:BackstageButtonItem Content="New" Glyph="{dx:DXImage Image=New_16x16.png}"/>
            <dxr:BackstageButtonItem Content="Open" Glyph="{dx:DXImage Image=Open_16x16.png}" />
            <dxr:BackstageTabItem Content="Recent">
                <dxr:BackstageTabItem.ControlPane>
                    <ContentControl/>
                </dxr:BackstageTabItem.ControlPane>
            </dxr:BackstageTabItem>
            <dxr:BackstageButtonItem Content="Close" Glyph="{dx:DXImage Image=Close_16x16.png}" />
        </dxr:BackstageViewControl>
    </dxr:RibbonControl.ApplicationMenu>
</dxr:RibbonControl>

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)