From 19397c2a95efa904cccaf299363dc0111af28042 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期一, 07 八月 2023 19:47:53 +0800
Subject: [PATCH] 2023年08月07日19:47:43
---
HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs b/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
index 980ea4d..db258bb 100644
--- a/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
+++ b/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
@@ -70,7 +70,7 @@
/// <param name="mSecondList">浜岀骇鏁版嵁闆嗗悎</param>
/// <param name="SelectAction">閫夋嫨鍥炶皟浜嬩欢</param>
/// <param name="selectTagId"></param>
- public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT)
+ public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT, int offsetY = 0)
{
if (mFirstList == null)
{
@@ -109,7 +109,7 @@
}
//View鏄剧ず
- ShowDoubleBaseView();
+ ShowDoubleBaseView(offsetY);
//鏁版嵁鍐呭濉厖
RefreshDoubleBaseView();
//閫変腑鏁堟灉
@@ -206,7 +206,7 @@
/// <summary>
/// 鏄剧ず浜岀骇view
/// </summary>
- void ShowDoubleBaseView()
+ void ShowDoubleBaseView(int offsetY = 0)
{
bodyView.BackgroundColor = CSS_Color.DialogTransparentColor1;
this.AddChidren(bodyView);
@@ -218,7 +218,7 @@
BackView = new FrameLayout()
{
X = Application.GetRealWidth(10),
- Y = Application.GetRealHeight(104),
+ Y = Application.GetRealHeight(104+ offsetY),
Width = Application.GetRealWidth(283),
Height = Application.GetRealWidth(242),
};
--
Gitblit v1.8.0