From 2109463fab2eb1caed189e4f258e0e763c5cea7b Mon Sep 17 00:00:00 2001 From: WJC <wjc@hdlchina.com.cn> Date: 星期四, 07 十一月 2019 11:58:53 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev-tzy' into dev-wjc --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs | 22 ++++++++++++++++++++-- 1 files changed, 20 insertions(+), 2 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs index 4eb84cc..9d31add 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs @@ -23,6 +23,21 @@ /// 涓�涓病浠�涔堢敤鐨勪笢瑗� /// </summary> private FrameLayout frameBackTemp = null; + /// <summary> + /// 鑷畾涔夌殑鑾峰彇瀛愭帶浠朵釜鏁� + /// </summary> + public new int ChildrenCount + { + get + { + int count = base.ChildrenCount; + if (frameBackTemp != null) + { + count--; + } + return count < 0 ? 0 : count; + } + } #endregion @@ -87,8 +102,11 @@ { frameBackTemp?.RemoveFromParent(); frameBackTemp = null; - //杩樺師涓烘渶澶ч珮搴� - this.Height = maxHeight; + if (maxHeight != -1) + { + //杩樺師涓烘渶澶ч珮搴� + this.Height = maxHeight; + } return; } -- Gitblit v1.8.0