mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-04 00:35:46 +08:00
23 lines
544 B
C#
23 lines
544 B
C#
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();
|
|
}
|
|
} |