Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 4.23 KB

itemscontrolautomationpeer.md

File metadata and controls

38 lines (24 loc) · 4.23 KB
-api-id -api-type
T:Windows.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer
winrt class

Windows.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer

-description

Exposes ItemsControl types to Microsoft UI Automation.

-remarks

The Windows Runtime ItemsControl class creates a new ItemsControlAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from ItemsControlAutomationPeer if you are deriving a custom class from ItemsControl 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. Make sure though that there aren't any existing derived classes from ItemsControl that might better suit your scenario. For example, Selector, FlipView, GridView, ComboBox, ListViewBase and ListBox are all a type of ItemsControl. Each of these already has a dedicated automation peer.

Default peer implementation and overrides in ItemsControlAutomationPeer

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

For Windows Phone 8.x apps, ItemsControlAutomationPeer has methods that support creating item-specific automation peers for data items. See CreateItemAutomationPeer and OnCreateItemAutomationPeer.

ItemsControlAutomationPeer derived classes

ItemsControlAutomationPeer is the parent class for SelectorAutomationPeer.

-examples

-see-also

ItemsControl, FrameworkElementAutomationPeer, IItemContainerProvider, Custom automation peers