Add missing document for event 92/120592/2
authorSungHyun Min <shyun.min@samsung.com>
Thu, 23 Mar 2017 08:47:37 +0000 (17:47 +0900)
committerSungHyun Min <shyun.min@samsung.com>
Thu, 23 Mar 2017 08:49:22 +0000 (17:49 +0900)
Change-Id: I46e2bd385adeb382dcbe50bbce2d78c908fc7550
Signed-off-by: SungHyun Min <shyun.min@samsung.com>
Tizen.Xamarin.Forms.Extension/GridView.cs

index 8083283..2030f67 100644 (file)
@@ -92,15 +92,27 @@ namespace Tizen.Xamarin.Forms.Extension
 
         public static readonly BindableProperty OrientationProperty = BindableProperty.Create("Orientation", typeof(GridViewOrientation), typeof(GridView), GridViewOrientation.Vertical);
 
+        /// <summary>
+        ///Occurs when the visual representation of the item is being added to the visual layout.
+        /// </summary>
         public event EventHandler<ItemVisibilityEventArgs> ItemAppearing;
 
+        /// <summary>
+        ///Occurs when the visual representation of the item is being removed from the visual layout.
+        /// </summary>
         public event EventHandler<ItemVisibilityEventArgs> ItemDisappearing;
 
+        /// <summary>
+        ///Occurs when the item is selected.
+        /// </summary>
         public event EventHandler<SelectedItemChangedEventArgs> ItemSelected;
 
+        /// <summary>
+        ///Occurs when the item is tapped.
+        /// </summary>
         public event EventHandler<TappedItemChangedEventArgs> ItemTapped;
 
-        public event EventHandler<GrdiViewScrollToRequestedEventArgs> ScrollToRequested;
+        internal event EventHandler<GrdiViewScrollToRequestedEventArgs> ScrollToRequested;
 
         /// <summary>
         /// Identifiers of the direction for which the GridView expands while placing its items.
@@ -273,6 +285,7 @@ namespace Tizen.Xamarin.Forms.Extension
         // Below Properties and methods are NOT used in GridView.
         // For interacting with Cell(Xamarin.Form.Core) implementing IListViewController is needed,
         // but these are unnecessary in GridView.
+
         #region IListViewController
 
         event EventHandler<ScrollToRequestedEventArgs> IListViewController.ScrollToRequested
@@ -316,6 +329,6 @@ namespace Tizen.Xamarin.Forms.Extension
             throw new NotImplementedException();
         }
 
-        #endregion
+        #endregion IListViewController
     }
-}
+}
\ No newline at end of file