Files
aistudio-wpf-diagram/Others/Fluent.Ribbon/Fluent.Ribbon/IKeyTipedControl.cs

23 lines
544 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
namespace Fluent
{
/// <summary>
/// Base interface for controls supports key tips
/// </summary>
public interface IKeyTipedControl
{
/// <summary>
/// Gets and sets KeyTip for element.
/// </summary>
string KeyTip { get; set; }
/// <summary>
/// Handles key tip pressed
/// </summary>
KeyTipPressedResult OnKeyTipPressed();
/// <summary>
/// Handles back navigation with KeyTips
/// </summary>
void OnKeyTipBack();
}
}