From: tscholb Date: Tue, 15 Oct 2019 09:01:25 +0000 (+0900) Subject: [NUI] fix Document related the part of window (#1078) X-Git-Tag: submit/tizen/20191016.005209~1^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e4f2bfee0e55cee4cbdf651bdafacd77c7f2954;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] fix Document related the part of window (#1078) --- diff --git a/src/Tizen.NUI/src/public/Window.cs b/src/Tizen.NUI/src/public/Window.cs index 1dc79f649..2e7d4b68b 100755 --- a/src/Tizen.NUI/src/public/Window.cs +++ b/src/Tizen.NUI/src/public/Window.cs @@ -63,7 +63,7 @@ namespace Tizen.NUI } /// - /// Creates a new Window.
+ /// Creates a new Window with a specific name.
/// This creates an extra window in addition to the default main window
///
/// The name for extra window. diff --git a/src/Tizen.NUI/src/public/WindowEvent.cs b/src/Tizen.NUI/src/public/WindowEvent.cs index 19e330f4a..a782be8ca 100755 --- a/src/Tizen.NUI/src/public/WindowEvent.cs +++ b/src/Tizen.NUI/src/public/WindowEvent.cs @@ -86,10 +86,10 @@ namespace Tizen.NUI } /// - /// This event is emitted when the screen is touched and when the touch ends.
- /// If there are multiple touch points, then this will be emitted when the first touch occurs and - /// then when the last finger is lifted.
- /// An interrupted event will also be emitted (if it occurs).
+ /// Emits the event when the screen is touched and when the touch ends.
+ /// If there are multiple touch points then it is emitted when the first touch occurs and + /// when the last finger is lifted too.
+ /// Even though incoming events are interrupted, the event occurs.
///
/// 3 public event EventHandler TouchEvent @@ -114,7 +114,7 @@ namespace Tizen.NUI } /// - /// This event is emitted when the wheel event is received. + /// Emits the event when the wheel event is received. /// /// 3 public event EventHandler WheelEvent @@ -139,7 +139,7 @@ namespace Tizen.NUI } /// - /// This event is emitted when the key event is received. + /// Emits the event when the key event is received. /// /// 3 public event EventHandler KeyEvent @@ -164,7 +164,7 @@ namespace Tizen.NUI } /// - /// This event is emitted when the window resized. + /// Emits the event when the window resized. /// /// 3 public event EventHandler Resized