Add missing document for event in Dialog 22/120622/1
authorSeunghyun Choi <sh4682.choi@samsung.com>
Thu, 23 Mar 2017 10:20:10 +0000 (19:20 +0900)
committerSeunghyun Choi <sh4682.choi@samsung.com>
Thu, 23 Mar 2017 10:20:59 +0000 (19:20 +0900)
Change-Id: I0337cbf53c7de80159c40885a7582f38253d16ec
Signed-off-by: Seunghyun Choi <sh4682.choi@samsung.com>
Tizen.Xamarin.Forms.Extension/Dialog.cs

index ddf8bbe..9d7699a 100644 (file)
@@ -9,7 +9,6 @@ namespace Tizen.Xamarin.Forms.Extension
     /// <example>
     /// <code>
     /// var dialog = new Dialog();
-    /// dialog.Direction = DialogDirection.Bottom;
     /// dialog.Title = "Dialog"
     ///
     /// var positive = new Button()
@@ -55,12 +54,24 @@ namespace Tizen.Xamarin.Forms.Extension
 
         IDialog _dialog = null;
 
+        /// <summary>
+        /// Occurs when the dialog is dismissed.
+        /// </summary>
         public event EventHandler Dismissed;
 
+        /// <summary>
+        /// Occurs when outside of the dialog is clicked.
+        /// </summary>
         public event EventHandler OutsideClicked;
 
+        /// <summary>
+        /// Occurs when the dialog is shown on the display.
+        /// </summary>
         public event EventHandler Shown;
 
+        /// <summary>
+        /// Occurs when the device's back button is pressed.
+        /// </summary>
         public event EventHandler BackButtonPressed;
 
         public Dialog()