[NUI] Change IsCreateByXaml to virtual
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications / LocaleChangedEventArgs.cs
old mode 100755 (executable)
new mode 100644 (file)
index a1e99ba..be7c9e4
@@ -21,6 +21,7 @@ namespace Tizen.Applications
     /// <summary>
     /// The class for the argument of the LocaleChanged EventHandler
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class LocaleChangedEventArgs : EventArgs
     {
 
@@ -28,14 +29,16 @@ namespace Tizen.Applications
         /// Initializes LocaleChangedEventArgs class
         /// </summary>
         /// <param name="locale">The information of the Locale</param>
+        /// <since_tizen> 3 </since_tizen>
         public LocaleChangedEventArgs(string locale)
         {
             Locale = locale;
         }
 
         /// <summary>
-        /// The property to get the intformation of the Locale
+        /// The property to get the information of the Locale
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public string Locale { get; private set; }
 
     }