TextBox, PropertyChangeHandler
This commit is contained in:
13
src/Library/TerminalUI/Traits/IFocusable.cs
Normal file
13
src/Library/TerminalUI/Traits/IFocusable.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using GeneralInputKey;
|
||||
using TerminalUI.ConsoleDrivers;
|
||||
using TerminalUI.Controls;
|
||||
|
||||
namespace TerminalUI.Traits;
|
||||
|
||||
public interface IFocusable : IView
|
||||
{
|
||||
void Focus();
|
||||
void UnFocus();
|
||||
void SetCursorPosition(IConsoleDriver consoleDriver);
|
||||
void HandleKeyInput(GeneralKeyEventArgs keyEventArgs);
|
||||
}
|
||||
Reference in New Issue
Block a user