Update description 65/122665/1
authorsung-su.kim <sung-su.kim@samsung.com>
Mon, 3 Apr 2017 06:34:51 +0000 (15:34 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Mon, 3 Apr 2017 06:35:00 +0000 (15:35 +0900)
- Bakcground
- RadioButton
- FloatingButton

Change-Id: I8117fc1b5e34f4c1dea226161f5dcce7c3b63708

Tizen.Xamarin.Forms.Extension/Background.cs [changed mode: 0755->0644]
Tizen.Xamarin.Forms.Extension/BackgroundOptions.cs [changed mode: 0755->0644]
Tizen.Xamarin.Forms.Extension/FloatingButton.cs
Tizen.Xamarin.Forms.Extension/FloatingButtonItem.cs
Tizen.Xamarin.Forms.Extension/FloatingButtonPosition.cs
Tizen.Xamarin.Forms.Extension/RadioButton.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 841be01..9277572
@@ -21,7 +21,9 @@ namespace Tizen.Xamarin.Forms.Extension
         public static readonly BindableProperty OptionProperty = BindableProperty.Create("Option", typeof(BackgroundOptions), typeof(Background), BackgroundOptions.Scale);
 
         /// <summary>
-        /// Gets or Sets the Image on the background. This identifier is the image path to the image.
+        /// Gets or Sets the Image on the background.
+        /// This identifier is the image path to the image.
+        /// This is a bindable property.
         /// </summary>
         public FileImageSource Image
         {
@@ -30,7 +32,10 @@ namespace Tizen.Xamarin.Forms.Extension
         }
 
         /// <summary>
-        /// Gets or Sets the BackgroundOption on the background. This identifiers on how a background is to display its image.
+        /// Gets or Sets the BackgroundOption on the background.
+        /// This identifiers on how a background is to display its image.
+        /// This is a bindable property.
+        /// Defalt value is BackgroundOptions.Scale.
         /// </summary>
         public BackgroundOptions Option
         {
@@ -38,4 +43,4 @@ namespace Tizen.Xamarin.Forms.Extension
             set { SetValue(OptionProperty, value); }
         }
     }
-}
+}
\ No newline at end of file
old mode 100755 (executable)
new mode 100644 (file)
index 20af6b3..5c435b8
@@ -6,20 +6,23 @@ namespace Tizen.Xamarin.Forms.Extension
     public enum BackgroundOptions
     {
         /// <summary>
-        /// Center the background image
+        /// Center the background image.
         /// </summary>
         Center,
+
         /// <summary>
-        /// Scale the background image, retaining the aspect ratio
+        /// Scale the background image, retaining the aspect ratio.
         /// </summary>
         Scale,
+
         /// <summary>
-        /// Stretch the background image to fill the widget's area
+        /// Stretch the background image to fill the widget's area.
         /// </summary>
         Stretch,
+
         /// <summary>
-        /// Tile background image at its original size
+        /// Tile background image at its original size.
         /// </summary>
         Tile
     }
-}
+}
\ No newline at end of file
index 17b5626..f17076b 100644 (file)
@@ -5,7 +5,8 @@ namespace Tizen.Xamarin.Forms.Extension
 {
     /// <summary>
     /// The FloatingButton class.
-    /// This is only supported for mobile profiles.
+    /// Only supported for mobile profiles.
+    /// Only one in the application.
     /// </summary>
     /// <example>
     /// <code>
@@ -44,7 +45,9 @@ namespace Tizen.Xamarin.Forms.Extension
         IFloatingButton _floatingButton = null;
 
         /// <summary>
-        /// Gets or sets the movability state of the FloatingButton. This is a bindable property.
+        /// Gets or sets the movability state of the FloatingButton.
+        /// This is a bindable property.
+        /// Defalt value is FloatingButtonMovablePosition.All
         /// </summary>
         public FloatingButtonMovablePosition MovablePosition
         {
@@ -53,7 +56,8 @@ namespace Tizen.Xamarin.Forms.Extension
         }
 
         /// <summary>
-        /// Gets the horizontal position of the FloatingButton. This is a bindable property.
+        /// Gets the horizontal position of the FloatingButton.
+        /// Default value is FloatingButtonPosition.Right
         /// </summary>
         public FloatingButtonPosition Position
         {
@@ -62,6 +66,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets the visible state of the FloatingButton.
+        /// This is a bindable property.
         /// </summary>
         public bool IsShown
         {
@@ -71,6 +76,8 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets and sets the internal button of the FloatingButton.
+        /// This is a bindable property.
+        /// It can be nullable.
         /// </summary>
         public FloatingButtonItem FirstButton
         {
@@ -80,6 +87,8 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets and sets the internal button of the FloatingButton.
+        /// This is a bindable property.
+        /// It can be nullable.
         /// </summary>
         public FloatingButtonItem SecondButton
         {
index 652c720..c147a0a 100644 (file)
@@ -16,6 +16,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets the Icon of the FloatingButtonItem.
+        /// It can be nullable.
         /// </summary>
         public FileImageSource Icon
         {
index bd9184e..f887763 100644 (file)
@@ -14,27 +14,27 @@ namespace Tizen.Xamarin.Forms.Extension
     public enum FloatingButtonPosition
     {
         /// <summary>
-        /// hides in the left, but small handler will show only
+        /// Hides in the left, but small handler will show only
         /// </summary>
         LeftOut,
 
         /// <summary>
-        /// shows all of buttons, but lies on the left
+        /// Shows all of buttons, but lies on the left
         /// </summary>
         Left,
 
         /// <summary>
-        /// shows all of buttons, but lies on the center
+        /// Shows all of buttons, but lies on the center
         /// </summary>
         Center,
 
         /// <summary>
-        /// shows all of buttons, but lies on the right
+        /// Shows all of buttons, but lies on the right
         /// </summary>
         Right,
 
         /// <summary>
-        /// hides in the right, but small handler will show only
+        /// Hides in the right, but small handler will show only
         /// </summary>
         RightOut,
     }
old mode 100755 (executable)
new mode 100644 (file)
index ba31fea..9d4ff27
@@ -42,7 +42,8 @@ namespace Tizen.Xamarin.Forms.Extension
         public static readonly BindableProperty GroupNameProperty = BindableProperty.Create("GroupName", typeof(string), typeof(RadioButton), default(string));
 
         /// <summary>
-        /// Gets or sets the Text displayed as the content of the RadioButton. This is a bindable property.
+        /// Gets or sets the Text displayed as the content of the RadioButton.
+        /// This is a bindable property.
         /// </summary>
         public string Text
         {
@@ -51,7 +52,8 @@ namespace Tizen.Xamarin.Forms.Extension
         }
 
         /// <summary>
-        /// Gets or sets the Color for the text of the RadioButton. This is a bindable property.
+        /// Gets or sets the Color for the text of the RadioButton.
+        /// This is a bindable property.
         /// </summary>
         public Color TextColor
         {
@@ -60,7 +62,8 @@ namespace Tizen.Xamarin.Forms.Extension
         }
 
         /// <summary>
-        /// Gets or sets the Font for the RadioButton text. This is a bindable property.
+        /// Gets or sets the Font for the RadioButton text.
+        /// This is a bindable property.
         /// </summary>
         public Font Font
         {
@@ -70,6 +73,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets the font family to which the font for the RadioButton text belongs.
+        /// This is a bindable property.
         /// </summary>
         public string FontFamily
         {
@@ -79,6 +83,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets the size of the font of the RadioButton text.
+        /// This is a bindable property.
         /// </summary>
         public double FontSize
         {
@@ -88,6 +93,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets a value that indicates whether the font for the RadioButton text is bold, italic, or neither.
+        /// This is a bindable property.
         /// </summary>
         public FontAttributes FontAttributes
         {
@@ -97,6 +103,8 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets the name that specifies which RadioButton controls are mutually exclusive.
+        /// This is a bindable property.
+        /// It can be nullable.
         /// </summary>
         public string GroupName
         {
@@ -106,6 +114,7 @@ namespace Tizen.Xamarin.Forms.Extension
 
         /// <summary>
         /// Gets or sets a Boolean value that indicates whether this RadioButton is selected.
+        /// This is a bindable property.
         /// </summary>
         public bool IsSelected
         {
@@ -163,4 +172,4 @@ namespace Tizen.Xamarin.Forms.Extension
             radioButton.Selected?.Invoke(radioButton, new SelectedEventArgs((bool)newValue));
         }
     }
-}
+}
\ No newline at end of file