using System; namespace Avalonia.Platform { /// /// Defines a platform-specific embeddable window implementation. /// public interface IEmbeddableWindowImpl : ITopLevelImpl { event Action LostFocus; } }