From 6cbd0936d3245fd7c433884ac9c1f5448a7cf657 Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期五, 13 十二月 2019 13:49:44 +0800 Subject: [PATCH] 合并了代码 --- ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs | 28 ++++++++++++++++++++-------- 1 files changed, 20 insertions(+), 8 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs b/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs index 3a4a75e..fc11533 100755 --- a/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs +++ b/ZigbeeApp/Shared/Phone/UserView/UserHomeView.cs @@ -426,7 +426,10 @@ Gravity = Gravity.CenterVertical, UnSelectedImagePath = "Item/Floor.png" }; - topFrameLayout.AddChidren(floor); + if (Config.Instance.Home.FloorDics.Count > 0) + { + topFrameLayout.AddChidren(floor); + } floorBtn = new Button { @@ -438,7 +441,10 @@ TextColor = ZigbeeColor.Current.GXCTextColor, Text = Config.Instance.Home.GetCurrentFloorName }; - topFrameLayout.AddChidren(floorBtn); + if (Config.Instance.Home.FloorDics.Count > 0) + { + topFrameLayout.AddChidren(floorBtn); + } var messageBtn = new Button() { @@ -460,7 +466,8 @@ TextAlignment = TextAlignment.CenterLeft, Text = Config.Instance.Home.Name ?? Language.StringByID(R.MyInternationalizationString.TheResidenceNameNull), TextSize = 24, - TextColor = ZigbeeColor.Current.GXCTextBlackColor + TextColor = ZigbeeColor.Current.GXCTextBlackColor, + IsBold=true }; if (Config.Instance.Home.IsOthreShare) { @@ -640,9 +647,9 @@ }; AddChidren(roomPageView); //涓庡睆骞曡竟妗嗙殑杈硅窛 - roomPageView.RowPadding = Application.GetRealWidth(181); + roomPageView.TCBJ = Application.GetRealWidth(181); //涓や釜page涔嬮棿鐨勯棿璺� - roomPageView.PagePadding = Application.GetRealWidth(69); + roomPageView.JMBJ = Application.GetRealWidth(0); //褰撳墠鎴块棿 //Room.CurrentRoom = Room.CurrentRoom == null ? Room.Lists[0] : Room.CurrentRoom; @@ -680,7 +687,8 @@ SelectedTextColor = ZigbeeColor.Current.GXCTextWhiteColor, TextID = R.MyInternationalizationString.Scence, IsSelected = true, - TextSize=16 + TextSize=16, + IsBold=true }; functionSceneView.AddChidren(sceneBtn); @@ -715,7 +723,9 @@ sceneBtn.IsSelected = false; functionBtn.IsSelected = true; sceneBtn.TextSize = 14; + sceneBtn.IsBold = false; functionBtn.TextSize = 16; + functionBtn.IsBold = true; RefreshBodyView(); }; //閫夋嫨鍦烘櫙鍒嗘爮 @@ -724,7 +734,9 @@ functionBtn.IsSelected = false; sceneBtn.IsSelected = true; sceneBtn.TextSize = 16; + sceneBtn.IsBold = true; functionBtn.TextSize = 14; + functionBtn.IsBold = false; RefreshBodyView(); }; @@ -906,7 +918,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 }; @@ -1626,7 +1638,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