From cbfc3cf73cae92158a0af1713080b9e01cfae43d Mon Sep 17 00:00:00 2001 From: tscholb Date: Mon, 10 Jun 2019 19:00:23 +0900 Subject: [PATCH] [NUI] Add GetDefaultWindow() (#878) this api for get Default Window. --- src/Tizen.NUI/src/public/NUIApplication.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Tizen.NUI/src/public/NUIApplication.cs b/src/Tizen.NUI/src/public/NUIApplication.cs index eabf35ed4..7697415fa 100755 --- a/src/Tizen.NUI/src/public/NUIApplication.cs +++ b/src/Tizen.NUI/src/public/NUIApplication.cs @@ -198,6 +198,17 @@ namespace Tizen.NUI } } + /// + /// Gets the default window. + /// + /// The default Window. + /// 6 + [EditorBrowsable(EditorBrowsableState.Never)] + public Window GetDefaultWindow() + { + return Window.Instance; + } + internal Application ApplicationHandle { get -- 2.34.1