X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI.Components%2FControls%2FNavigation%2FPage.cs;h=98f17c274b197eae6dc587e3e578ab6aaecedcfa;hb=509e3f3d69eae944271c7eb4668868ebe27e7f7e;hp=480d3c4b27a16eaf01545eb5155fd058e707c378;hpb=2fcd86358209ead66be8cf3eb4b1ed10f805b339;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI.Components/Controls/Navigation/Page.cs b/src/Tizen.NUI.Components/Controls/Navigation/Page.cs index 480d3c4..98f17c2 100755 --- a/src/Tizen.NUI.Components/Controls/Navigation/Page.cs +++ b/src/Tizen.NUI.Components/Controls/Navigation/Page.cs @@ -20,33 +20,33 @@ using System.ComponentModel; namespace Tizen.NUI.Components { /// - /// PageAppearingEventArgs is a class to record page appearing event arguments which will be sent to user. + /// PageAppearingEventArgs is a class to record event arguments which will be sent to user. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public class PageAppearingEventArgs : EventArgs { } /// - /// PageDisappearingEventArgs is a class to record page disappearing event arguments which will be sent to user. + /// PageDisappearingEventArgs is a class to record event arguments which will be sent to user. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public class PageDisappearingEventArgs : EventArgs { } /// - /// PageAppearedEventArgs is a class to record page appeared event arguments which will be sent to user. + /// PageAppearedEventArgs is a class to record event arguments which will be sent to user. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public class PageAppearedEventArgs : EventArgs { } /// - /// PageDisappearedEventArgs is a class to record page disappeared event arguments which will be sent to user. + /// PageDisappearedEventArgs is a class to record event arguments which will be sent to user. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public class PageDisappearedEventArgs : EventArgs { } @@ -127,27 +127,27 @@ namespace Tizen.NUI.Components } /// - /// An event for the page appearing signal which can be used to subscribe or unsubscribe the event handler provided by the user. + /// Appearing event is invoked right before the page appears. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public event EventHandler Appearing; /// - /// An event for the page disappearing signal which can be used to subscribe or unsubscribe the event handler provided by the user. + /// Disappearing event is invoked right before the page disappears. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public event EventHandler Disappearing; /// - /// An event for the page appeared signal which can be used to subscribe or unsubscribe the event handler provided by the user. + /// Appeared event is invoked right after the page appears. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public event EventHandler Appeared; /// - /// An event for the page disappeared signal which can be used to subscribe or unsubscribe the event handler provided by the user. + /// Disappeared event is invoked right after the page disappears. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public event EventHandler Disappeared; internal void InvokeAppearing()