本文整理匯總了C#中System.Windows.Automation.SelectionItemPattern.ElementAddedToSelectionEvent字段的典型用法代碼示例。如果您正苦於以下問題:C# SelectionItemPattern.ElementAddedToSelectionEvent字段的具體用法?C# SelectionItemPattern.ElementAddedToSelectionEvent怎麽用?C# SelectionItemPattern.ElementAddedToSelectionEvent使用的例子?那麽, 這裏精選的字段代碼示例或許可以為您提供幫助。
在下文中一共展示了SelectionItemPattern.ElementAddedToSelectionEvent字段的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: AutomationEventHandler
///--------------------------------------------------------------------
/// <summary>
/// Subscribe to the selection item events of interest.
/// </summary>
/// <param name="selectionItem">
/// Automation element that supports SelectionItemPattern and is
/// a child of a selection container that supports SelectionPattern
/// </param>
/// <remarks>
/// The events are raised by the SelectionItem elements,
/// not the Selection container.
/// </remarks>
///--------------------------------------------------------------------
private void SetSelectionEventHandlers
(AutomationElement selectionItem)
{
AutomationEventHandler selectionHandler =
new AutomationEventHandler(SelectionHandler);
Automation.AddAutomationEventHandler(
SelectionItemPattern.ElementSelectedEvent,
selectionItem,
TreeScope.Element,
SelectionHandler);
Automation.AddAutomationEventHandler(
SelectionItemPattern.ElementAddedToSelectionEvent,
selectionItem,
TreeScope.Element,
SelectionHandler);
Automation.AddAutomationEventHandler(
SelectionItemPattern.ElementRemovedFromSelectionEvent,
selectionItem,
TreeScope.Element,
SelectionHandler);
}
private void SelectionHandler(object src, AutomationEventArgs e)
{
// TODO: event handling
}
開發者ID:.NET開發者,項目名稱:System.Windows.Automation,代碼行數:40,代碼來源:SelectionItemPattern.ElementAddedToSelectionEvent