mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Connection.Protocol
|
|
{
|
|
public interface IFocusable
|
|
{
|
|
bool HasFocus { get; }
|
|
void Focus();
|
|
event EventHandler FocusChanged;
|
|
}
|
|
}
|