System.Windows.Controls.SelectorSelectionAdapter.CreateAutomationPeer C# (CSharp) Метод

CreateAutomationPeer() публичный Метод

Returns an automation peer for the underlying T:System.Windows.Controls.Primitives.Selector control, for use by the Silverlight automation infrastructure.
public CreateAutomationPeer ( ) : System.Windows.Automation.Peers.AutomationPeer
Результат System.Windows.Automation.Peers.AutomationPeer
        public AutomationPeer CreateAutomationPeer()
        {
            return _selector != null ? UIElementAutomationPeer.CreatePeerForElement(_selector) : null;
        }
    }