From efad979b6fae76fb37a4de7e94e6bac0a85cb72c Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期二, 30 十一月 2021 13:14:28 +0800 Subject: [PATCH] 2021-11-30 1.修复乐橙Android,没调用拒接接口问题。 --- HDL_ON/UI/UI2/3-Intelligence/Scene/NewSceneMenuListPage.cs | 113 +++++++++++++++++++++++++++++++++++--------------------- 1 files changed, 70 insertions(+), 43 deletions(-) diff --git a/HDL_ON/UI/UI2/3-Intelligence/Scene/NewSceneMenuListPage.cs b/HDL_ON/UI/UI2/3-Intelligence/Scene/NewSceneMenuListPage.cs index 24f615e..efb7272 100644 --- a/HDL_ON/UI/UI2/3-Intelligence/Scene/NewSceneMenuListPage.cs +++ b/HDL_ON/UI/UI2/3-Intelligence/Scene/NewSceneMenuListPage.cs @@ -63,44 +63,49 @@ addSceneView.AddChidren(btnAddSceneText); #endregion - #region 鎹曡幏鍦烘櫙 - FrameLayout catchSceneView = new FrameLayout() + + if (DB_ResidenceData.Instance.GatewayType == 0) { } + else { - Gravity = Gravity.CenterHorizontal, - Y =addSceneView.Bottom,//+ Application.GetRealWidth(10), - Width = Application.GetRealWidth(361), - Height = Application.GetRealWidth(202), - Radius = (uint)Application.GetRealWidth(12), - }; - bodyView.AddChidren(catchSceneView); + #region 鎹曡幏鍦烘櫙 + FrameLayout catchSceneView = new FrameLayout() + { + Gravity = Gravity.CenterHorizontal, + Y = addSceneView.Bottom,//+ Application.GetRealWidth(10), + Width = Application.GetRealWidth(361), + Height = Application.GetRealWidth(202), + Radius = (uint)Application.GetRealWidth(12), + }; + bodyView.AddChidren(catchSceneView); - ImageView catchSceneImageView = new ImageView() - { - Gravity = Gravity.CenterHorizontal, - Radius = (uint)Application.GetRealWidth(12), - ImagePath = "Intelligence/CreateScene2Bg.png", - }; - catchSceneView.AddChidren(catchSceneImageView); + ImageView catchSceneImageView = new ImageView() + { + Gravity = Gravity.CenterHorizontal, + Radius = (uint)Application.GetRealWidth(12), + ImagePath = "Intelligence/CreateScene2Bg.png", + }; + catchSceneView.AddChidren(catchSceneImageView); - btnCatchSceneBg = new Button() - { - Radius = (uint)Application.GetRealWidth(12), - }; - catchSceneView.AddChidren(btnCatchSceneBg); + btnCatchSceneBg = new Button() + { + Radius = (uint)Application.GetRealWidth(12), + }; + catchSceneView.AddChidren(btnCatchSceneBg); - Button btnCatchSceneText = new Button() - { - Y = Application.GetRealWidth(126), - Height = Application.GetRealWidth(68), - TextColor = CSS_Color.MainBackgroundColor, - TextSize = CSS_FontSize.EmphasisFontSize_Secondary, - TextAlignment = TextAlignment.Center, - TextID = StringId.CatchScene, - }; - catchSceneView.AddChidren(btnCatchSceneText); - #endregion + Button btnCatchSceneText = new Button() + { + Y = Application.GetRealWidth(126), + Height = Application.GetRealWidth(68), + TextColor = CSS_Color.MainBackgroundColor, + TextSize = CSS_FontSize.EmphasisFontSize_Secondary, + TextAlignment = TextAlignment.Center, + TextID = StringId.CatchScene, + }; + catchSceneView.AddChidren(btnCatchSceneText); + #endregion + } - + /* #region 鐢靛奖鍦烘櫙 FrameLayout movieSceneView = new FrameLayout() { @@ -137,7 +142,7 @@ }; movieSceneView.AddChidren(btnMovieSceneText); #endregion - + */ LoadEventList(); } @@ -149,27 +154,49 @@ void LoadEventList() { LoadEvent_SkipAddScenePage(); + if (DB_ResidenceData.Instance.GatewayType != 0) + { + LoadEvent_SkipCatchScenePage(); + } } + /// <summary> + /// 璺宠浆鍒涘缓鍦烘櫙鐣岄潰 + /// </summary> void LoadEvent_SkipAddScenePage() { btnAddSceneBg.MouseUpEventHandler = (sender, e) => { - if (DB_ResidenceData.Instance.CheckWhetherGatewayIdIsNull()) - { - new PublicAssmebly().TipMsgAutoClose(Language.StringByID(StringId.UnableToCreateScenarioPleaseBindGateway), true); - return; - } Action backAction = () => { this.RemoveFromParent(); action(); }; - var scene = new Entity.Scene() { roomIds = new System.Collections.Generic.List<string>() { "" } }; + var scene = new Scene() { roomIds = new System.Collections.Generic.List<string>() { "" } }; scene.NewSid(); - scene.name = Language.StringByID(StringId.Scene) + " " + (1 + Entity.FunctionList.List.scenes.Count).ToString(); - var aep = new SceneEditPage(scene,backAction); + scene.name = Language.StringByID(StringId.Scene) + " " + (1 + FunctionList.List.scenes.Count).ToString(); + var aep = new SceneAddPage(scene,backAction); MainPage.BasePageView.AddChidren(aep); - aep.LoadPage(StringId.NewScene); + aep.LoadPage(); + MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; + }; + } + + /// <summary> + /// 璺宠浆鎹曡幏鍦烘櫙鐣岄潰 + /// </summary> + void LoadEvent_SkipCatchScenePage() + { + btnCatchSceneBg.MouseUpEventHandler = (sener, e) => { + Action backAction = () => { + this.RemoveFromParent(); + action(); + }; + var scene = new Scene() { roomIds = new System.Collections.Generic.List<string>() { "" } }; + scene.NewSid(); + scene.name = Language.StringByID(StringId.Scene) + " " + (1 + FunctionList.List.scenes.Count).ToString(); + var aep = new CatchSceneAddPage(scene, backAction); + MainPage.BasePageView.AddChidren(aep); + aep.LoadPage(); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; }; } -- Gitblit v1.8.0