黄学彪
2020-06-18 2450c12c825ad4d78d1572da2fa421706db2df2f
ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/BaseCommonControl/Common/ClickButtonCommon.cs
@@ -41,7 +41,7 @@
            this.BackgroundColor = UserCenterColor.Current.ClickButtonDefultColor;
            this.TextAlignment = TextAlignment.Center;
            this.MouseDownEventHandler += this.Button_MouseDownEvent;
            this.ButtonDownClickEvent += this.Button_MouseDownEvent;
        }
        #endregion
@@ -58,7 +58,7 @@
            if (this.UseClickStatu == false)
            {
                //永久移除
                this.MouseDownEventHandler -= this.Button_MouseDownEvent;
                this.ButtonDownClickEvent -= Button_MouseDownEvent;
                return;
            }
            if (base.CanClick == false || isSelcetStatu == true)
@@ -73,7 +73,7 @@
            //设置点击后的状态
            this.SetClickStatu();
            new System.Threading.Thread(() =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                System.Threading.Thread.Sleep(ControlCommonResourse.StatuChangedWaitTime);
                Application.RunOnMainThread(() =>
@@ -86,8 +86,7 @@
                    //设置非点击后的状态
                    this.SetNotClickStatu();
                });
            })
            { IsBackground = true }.Start();
            });
        }
        /// <summary>