mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-05 20:51:09 -07:00
15 lines
434 B
C#
15 lines
434 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Calculator.UIAutomationLibrary.Components
|
|
{
|
|
public interface ICanFocusWithClicks
|
|
{
|
|
/// <summary>
|
|
/// Sets focus on an object by clicking on it, without causing further action.
|
|
/// Supports AccSpot scans by raising click events.
|
|
/// </summary>
|
|
void FocusWithClicks();
|
|
}
|
|
}
|
|
|