From 34c41b600d0ddfdb712a6c21d53d169b19fc6aba Mon Sep 17 00:00:00 2001 From: Victor Milovanov Date: Tue, 18 Sep 2018 10:34:03 -0700 Subject: [PATCH] expose IAppWindow.GetClientBounds --- AssemblyInfo.cs | 2 +- IAppWindow.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs index 55d364d..234ab0b 100644 --- a/AssemblyInfo.cs +++ b/AssemblyInfo.cs @@ -1,7 +1,7 @@ using System.Reflection; using System.Runtime.InteropServices; -[assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.1.*")] [assembly: AssemblyCompany("Lost Tech LLC")] [assembly: AssemblyProduct("Stack")] [assembly: AssemblyCopyright("Copyright © Lost Tech LLC 2018")] diff --git a/IAppWindow.cs b/IAppWindow.cs index 667e055..b67e5ed 100644 --- a/IAppWindow.cs +++ b/IAppWindow.cs @@ -11,6 +11,7 @@ public interface IAppWindow bool CanMove { get; } Rect Bounds { get; } Task GetBounds(); + Task GetClientBounds(); string Title { get; } Task Activate(); Task BringToFront();