AutomationPeer.EventsSource 属性

定义

获取或设置一个 AutomationPeer,它作为来自此 AutomationPeer 的所有事件的源报告给 自动化客户端。 请参阅“备注”。

public:
 property AutomationPeer ^ EventsSource { AutomationPeer ^ get(); void set(AutomationPeer ^ value); };
AutomationPeer EventsSource();

void EventsSource(AutomationPeer value);
public AutomationPeer EventsSource { get; set; }
var automationPeer = automationPeer.eventsSource;
automationPeer.eventsSource = automationPeer;
Public Property EventsSource As AutomationPeer

属性值

事件源的 AutomationPeer

注解

如果自动化提供程序元素是另一个元素的子元素,并且客户端的最佳自动化体验是将父级视为自动化事件的源,则 EventsSource 通常由 AutomationPeer 实现设置。 在这种情况下,子元素的对等实现将 EventsSource 设置为返回父元素的 AutomationPeer

适用于