[NUI] Make public page transitions
authorseungho <sbsh.baek@samsung.com>
Wed, 15 Sep 2021 12:06:39 +0000 (21:06 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 20 Oct 2021 05:54:46 +0000 (14:54 +0900)
Signed-off-by: seungho <sbsh.baek@samsung.com>
src/Tizen.NUI/src/public/Transition/FadeTransition.cs
src/Tizen.NUI/src/public/Transition/ScaleTransition.cs
src/Tizen.NUI/src/public/Transition/SlideTransition.cs

index 3ed9607..5c7e595 100644 (file)
@@ -24,7 +24,7 @@ namespace Tizen.NUI
     /// <summary>
     /// FadeTransition class is a cluster of properties for the fade transition of a View.
     /// </summary>
-    [EditorBrowsable(EditorBrowsableState.Never)]
+    /// <since_tizen> 9 </since_tizen>
     public class FadeTransition : TransitionBase
     {
         private float opacity = 0.0f;
@@ -32,7 +32,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Create a FadeTransition for the View pair.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public FadeTransition()
         {
         }
@@ -43,7 +43,7 @@ namespace Tizen.NUI
         /// If this transition is for disappearing, the opacity of target View is animated to this property.
         /// Default Opacity is 0.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public float Opacity
         {
             get
index cb7bfb6..fd0b1db 100644 (file)
@@ -28,13 +28,13 @@ namespace Tizen.NUI
     /// If this transition is for disappearing, the View starts at its original size
     /// but will become the scale of scale factor and vanished.
     /// </summary>
-    [EditorBrowsable(EditorBrowsableState.Never)]
+    /// <since_tizen> 9 </since_tizen>
     public class ScaleTransition : TransitionBase
     {
         /// <summary>
         /// Create a ScaleTransition.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public ScaleTransition()
         {
         }
@@ -46,7 +46,7 @@ namespace Tizen.NUI
         ///
         /// Default ScaleFactor is Vector2(0.0f, 0.0f).
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public Vector2 ScaleFactor { get; set; } = new Vector2(0.0f, 0.0f);
 
         internal override TransitionItemBase CreateTransition(View view, bool isAppearing)
index cb5d48b..571b49b 100644 (file)
@@ -27,13 +27,13 @@ namespace Tizen.NUI
     /// The direction the target Control is comming from or going to can be selected in the pre-defined directions at the SlideTransitionDirection {UP, DOWN, LEFT, RIGHT}
     /// And, to use custom direction, the direction can be set by using Vector2.
     /// </summary>
-    [EditorBrowsable(EditorBrowsableState.Never)]
+    /// <since_tizen> 9 </since_tizen>
     public class SlideTransition : TransitionBase
     {
         /// <summary>
         /// Create a SlideTransition for the View pair.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public SlideTransition()
         {
         }
@@ -41,7 +41,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Set/get SlideDirection for this slide transition.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public Vector2 Direction { get; set; } = SlideTransitionDirection.Right;
 
         internal override TransitionItemBase CreateTransition(View view, bool isAppearing)