mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-16 22:26:36 +08:00
项目结构调整
This commit is contained in:
23
Others/Fluent.Ribbon/Fluent.Ribbon/IKeyTipedControl.cs
Normal file
23
Others/Fluent.Ribbon/Fluent.Ribbon/IKeyTipedControl.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user