UWP HyperlinkButton The HyperlinkButton class represents a button control that functions as a hyperlink. The HyperlinkButton appears as underlined text when the UWP developers set a text as the value for the Content property by default. The developers can put the HyperlinkButton anywhere inside the UWP app. The NavigateUri property value is passed to a system handler for URI types and schemes when users click the HyperlinkButton. The system launches the app that is registered for the scheme of the URI provided for NavigateUri. The UWP developers avoid loading content in a Web browser by not setting a value for NavigateUri. Instead, they have to handle the Click event. The developers can use the Click event for actions other than launching a URI in a browser. The HyperlinkButton class’s NavigateUri property gets or sets the Uniform Resource Identifier (URI) to navigate when the HyperlinkButton is clicked. This property value is a Uri to nav...
Android, .NET C#, Flutter, and Many More Programming tutorials.