Skip to main content

HamburgerMenuHyperlinkButton.NavigateUri Property

Gets or sets the URI to which the hyperlink navigates.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

Declaration

public Uri NavigateUri { get; set; }

Property Value

Type Description
Uri

A string value that specifies the URI to which the hyperlink navigates.

Remarks

When an end user clicks the hyperlink, the default browser navigates to the specified URI.

xmlns:dxwui="http://schemas.devexpress.com/winfx/2008/xaml/windowsui"
<dxwui:HamburgerMenuHyperlinkButton Content="Additional Information" NavigateUri="https://www.devexpress.com/>

If the NavigateUri property is specified, the HamburgerMenuHyperlinkButton.RequestNavigate event fires when the button is clicked, allowing you to cancel the action.

You can handle the HamburgerMenuHyperlinkButton.Click event to perform custom actions with a click.

See Also