From 0ca3aa21580e988e340b88360cda23b501fa65f2 Mon Sep 17 00:00:00 2001 From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local> Date: 星期三, 11 十二月 2019 09:13:40 +0800 Subject: [PATCH] 2019.12.11 --- ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs b/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs index adce2b8..233fc1a 100644 --- a/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs +++ b/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs @@ -426,6 +426,10 @@ Gravity = Gravity.CenterVertical, UnSelectedImagePath = "Item/Floor.png" }; + if (Config.Instance.Home.FloorDics.Count > 0) + { + topFrameLayout.AddChidren(floor); + } floorBtn = new Button { @@ -437,13 +441,10 @@ TextColor = ZigbeeColor.Current.GXCTextColor, Text = Config.Instance.Home.GetCurrentFloorName }; - - if(Config.Instance.Home.FloorDics.Count>0) + if (Config.Instance.Home.FloorDics.Count > 0) { - topFrameLayout.AddChidren(floor); topFrameLayout.AddChidren(floorBtn); } - var messageBtn = new Button() { @@ -911,7 +912,7 @@ { Y = noFunction.Bottom, Height = Application.GetRealHeight(200), - Text = Language.StringByID(R.MyInternationalizationString.NoFunction).Replace("{\\r\\n}", "\r\n"), + Text = Language.StringByID(R.MyInternationalizationString.NoFunction_Tip).Replace("{\\r\\n}", "\r\n"), TextColor = ZigbeeColor.Current.GXCPlaceHolderTextColor, IsMoreLines = true }; @@ -1631,7 +1632,7 @@ { Y = noScene.Bottom, Height = Application.GetRealHeight(200), - Text = Language.StringByID(R.MyInternationalizationString.NoScene).Replace("{\\r\\n}", "\r\n"), + Text = Language.StringByID(R.MyInternationalizationString.NoScene_Tip).Replace("{\\r\\n}", "\r\n"), TextColor = ZigbeeColor.Current.GXCPlaceHolderTextColor, IsMoreLines = true }; -- Gitblit v1.8.0