Skip to main content
A newer version of this page is available. .

HamburgerMenuHyperlinkButton Class

Represents a button in the HamburgerMenu that functions as a hyperlink.

Namespace: DevExpress.UI.Xaml.Layout

Assembly: DevExpress.UI.Xaml.Layout.v18.2.dll

Declaration

public class HamburgerMenuHyperlinkButton :
    HyperlinkButton,
    IHamburgerMenuItem,
    ISplitCollectionItem,
    IVisualItem

Remarks

The HamburgerMenuHyperlinkButton control is a button in the HamburgerMenu that appears as an underlined text and acts as a hyperlink. Use the HamburgerMenu.Items collection to add the HamburgerMenuHyperlinkButton to the HamburgerMenu.

To specify the URI to which the button navigates, use the NavigateUri property. When an end-user clicks the link, the default browser navigates to the specified URI. You can also handle the Click event to perform custom actions with a button click.

The markup below shows a sample hyperlink button.

<Layout:HamburgerMenuHyperlinkButton Content="Additional Information" NavigateUri="https://documentation.devexpress.com/#Win10Apps/CustomDocument12019"/>

Inheritance

Object
Windows.UI.Xaml.DependencyObject
Windows.UI.Xaml.UIElement
Windows.UI.Xaml.FrameworkElement
Windows.UI.Xaml.Controls.Control
Windows.UI.Xaml.Controls.ContentControl
Windows.UI.Xaml.Controls.Primitives.ButtonBase
Windows.UI.Xaml.Controls.HyperlinkButton
HamburgerMenuHyperlinkButton
See Also