// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Platform { using System; using System.Threading.Tasks; public interface IWindowImpl : ITopLevelImpl { void SetTitle(string title); void Show(); IDisposable ShowDialog(); void Hide(); } }