From: Jaehyun Cho Date: Thu, 16 Sep 2021 04:33:53 +0000 (+0900) Subject: [NUI] Make Page.Appear/Disappear events public X-Git-Tag: accepted/tizen/unified/20231205.024657~1343 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=509e3f3d69eae944271c7eb4668868ebe27e7f7e;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Make Page.Appear/Disappear events public This is ACR patch to make Appearing, Disappearing, Appeared, Disappeared events of Page public. Also PageAppearingEventArgs, PageDisppearingEventArgs, PageAppearedEventArgs, PageDisppearedEventArgs classes are added publicly. --- 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()