[NUI] Change Text to TextSelector for Textfield (#1876)
authorzhouleonlei <56956725+zhouleonlei@users.noreply.github.com>
Thu, 30 Jul 2020 02:33:00 +0000 (10:33 +0800)
committerGitHub <noreply@github.com>
Thu, 30 Jul 2020 02:33:00 +0000 (11:33 +0900)
src/Tizen.NUI/src/public/BaseComponents/Style/TextFieldStyle.cs

index 9fc70a6..ea27493 100755 (executable)
@@ -53,7 +53,7 @@ namespace Tizen.NUI.BaseComponents
         });
         /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
         [EditorBrowsable(EditorBrowsableState.Never)]
-        public static readonly BindableProperty TextSelectorProperty = BindableProperty.Create(nameof(Text), typeof(Selector<string>), typeof(TextFieldStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
+        public static readonly BindableProperty TextSelectorProperty = BindableProperty.Create("TextSelector", typeof(Selector<string>), typeof(TextFieldStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
         {
             var textFieldStyle = (TextFieldStyle)bindable;
             textFieldStyle.textSelector = ((Selector<string>)newValue)?.Clone();