HamburgerMenuHyperlinkButton.NavigateUri Property
Gets or sets the URI to which the hyperlink navigates.
Namespace: DevExpress.Xpf.WindowsUI
Assembly: DevExpress.Xpf.Controls.v24.1.dll
NuGet Package: DevExpress.Wpf.Controls
Declaration
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