Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.31 KB

hyperlink_click.md

File metadata and controls

29 lines (19 loc) · 1.31 KB
-api-id -api-type
E:Windows.UI.Xaml.Documents.Hyperlink.Click
winrt event

Windows.UI.Xaml.Documents.Hyperlink.Click

-description

Occurs when the Hyperlink is clicked.

-xaml-syntax

<Hyperlink Click="eventhandler"/>

-remarks

The Click event is intended for navigation within the app, or actions other than launching a URI in a browser. For example, if you want a new app page to load rather than opening a browser, or if you want to load the URI specifically within a WebView control, you handle the Click event and write code to perform the actions you want. You don't typically handle Click as well as specifying a NavigateUri value, these represent two different ways of using the Hyperlink element. If your intent is to open the URI in the default browser, and you have specified a value for NavigateUri, don't handle Click. Conversely, if you have code for the Click event, don't specify a NavigateUri.

-examples

-see-also

NavigateUri