Windows.UI.Xaml.Automation.Peers.HyperlinkButtonAutomationPeer

June 22, 2022 ยท View on GitHub

-description

Exposes HyperlinkButton types to Microsoft UI Automation.

-remarks

The Windows Runtime HyperlinkButton class creates a new HyperlinkButtonAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from HyperlinkButtonAutomationPeer if you are deriving a custom class from HyperlinkButton and want to add automation support for additional features that you enabled in your custom class. Then override OnCreateAutomationPeer so that it returns your custom peer.

Default peer implementation and overrides in HyperlinkButtonAutomationPeer

HyperlinkButtonAutomationPeer has overrides of Core methods such that the associated AutomationPeer methods provide peer-specific information to a Microsoft UI Automation client.

The peer also has other behaviors that are provided by the base FrameworkElementAutomationPeer class. For more info, see "Base implementation in FrameworkElementAutomationPeer" section of Custom automation peers.

-examples

-see-also

HyperlinkButton, ButtonBaseAutomationPeer, IInvokeProvider, Custom automation peers