RibbonApplicationMenu.AuxiliaryPaneContent Property
Gets or sets the content of the Application Menu auxiliary pane.
Namespace: Microsoft.Windows.Controls.Ribbon
Assembly: RibbonControlsLibrary (in RibbonControlsLibrary.dll)
Syntax
'Declaration
Public Property AuxiliaryPaneContent As Object
public Object AuxiliaryPaneContent { get; set; }
public:
property Object^ AuxiliaryPaneContent {
Object^ get ();
void set (Object^ value);
}
member AuxiliaryPaneContent : Object with get, set
function get AuxiliaryPaneContent () : Object
function set AuxiliaryPaneContent (value : Object)
Property Value
Type: System.Object
The content of the Application Menu auxiliary pane. The registered default is nulla null reference (Nothing in Visual Basic). For more information about what can influence the value, see Dependency Property Value Precedence.
Dependency Property Information
Identifier field |
|
Metadata properties set to true |
None |
Remarks
The Application Menu has an auxiliary pane that can host additional content. The AuxiliaryPaneContent property hosts a RibbonGallery and is typically used to display a list of recent documents.
The following illustration shows the Application Menu for a ribbon control. The auxiliary pane hosts a list of recent documents.
Examples
The following example shows the auxiliary pane content of the Application Menu shown previously.
<ribbon:RibbonApplicationMenu.AuxiliaryPaneContent>
<ribbon:RibbonGallery CanUserFilter="False"
ScrollViewer.VerticalScrollBarVisibility="Auto">
<ribbon:RibbonGalleryCategory Header="Recent Documents"
Background="Transparent"
ItemsSource="{DynamicResource MostRecentFiles}">
<ribbon:RibbonGalleryCategory.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical" IsItemsHost="True"/>
</ItemsPanelTemplate>
</ribbon:RibbonGalleryCategory.ItemsPanel>
</ribbon:RibbonGalleryCategory>
</ribbon:RibbonGallery>
</ribbon:RibbonApplicationMenu.AuxiliaryPaneContent>
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.