Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HamburgerMenuHyperlinkButton Class

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

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v24.2.dll

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public class HamburgerMenuHyperlinkButton :
    ButtonBase,
    IHamburgerMenuItem,
    IHamburgerMenuItemBase,
    IVisualItem,
    ISupportOwner<HamburgerMenu>

#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.

<dxwui:HamburgerMenuHyperlinkButton Content="Additional Information" NavigateUri="https://www.devexpress.com/"/>
See Also