From 72e1b4e4626315ebd4b879a68c94e7738fd0473e Mon Sep 17 00:00:00 2001
From: WJC <wjc@hdlchina.com.cn>
Date: 星期一, 28 十月 2019 11:00:28 +0800
Subject: [PATCH] 2019-10-28-1
---
ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs
index 24f7d61..6d9db74 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs
@@ -33,7 +33,7 @@
public TextInputExControl(int i_Width, int i_Height, bool real = false)
{
this.InitSize(i_Width, i_Height, real);
- this.TextColor = UserCenterColor.Current.TextGrayColor;
+ this.TextColor = UserCenterColor.Current.TextGrayColor3;
this.TextChangeEventHandler += this.TextChangeEvent;
this.EditorEnterAction += this.EditorEnterEvent;
@@ -47,7 +47,7 @@
public TextInputExControl(int i_Width, bool real = false)
{
this.InitSize(i_Width, real);
- this.TextColor = UserCenterColor.Current.TextGrayColor;
+ this.TextColor = UserCenterColor.Current.TextGrayColor3;
this.TextChangeEventHandler += this.TextChangeEvent;
this.EditorEnterAction += this.EditorEnterEvent;
@@ -63,7 +63,7 @@
/// <param name="view"></param>
private void EditorEnterEvent(View view)
{
- this.TextColor = UserCenterColor.Current.TextGrayColor;
+ this.TextColor = UserCenterColor.Current.TextGrayColor3;
this.IsTextBlack = false;
this.FinishInputEvent?.Invoke();
}
--
Gitblit v1.8.0