Back to Devexpress

HamburgerMenuHyperlinkButton Class

wpf-devexpress-dot-xpf-dot-windowsui-c6661eed.md

latest2.8 KB
Original Source

HamburgerMenuHyperlinkButton Class

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

Namespace : DevExpress.Xpf.WindowsUI

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

NuGet Package : DevExpress.Wpf.Controls

Declaration

csharp
public class HamburgerMenuHyperlinkButton :
    ButtonBase,
    IHamburgerMenuItem,
    IHamburgerMenuItemBase,
    IVisualItem,
    ISupportOwner<HamburgerMenu>
vb
Public Class HamburgerMenuHyperlinkButton
    Inherits ButtonBase
    Implements IHamburgerMenuItem,
               IHamburgerMenuItemBase,
               IVisualItem,
               ISupportOwner(Of 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.

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

Inheritance

Object DispatcherObject DependencyObject Visual UIElement FrameworkElement Control ContentControl ButtonBase HamburgerMenuHyperlinkButton

See Also

HamburgerMenuHyperlinkButton Members

DevExpress.Xpf.WindowsUI Namespace