| 123456789101112131415 |
- namespace Avalonia.Automation.Provider
- {
- /// <summary>
- /// Exposes methods and properties to support UI Automation client access to controls that
- /// initiate or perform a single, unambiguous action and do not maintain state when
- /// activated.
- /// </summary>
- public interface IInvokeProvider
- {
- /// <summary>
- /// Sends a request to activate a control and initiate its single, unambiguous action.
- /// </summary>
- void Invoke();
- }
- }
|