From 9c16d3614d9b88c637f967518a329f239fcd3aaf Mon Sep 17 00:00:00 2001
From: lss <316519258@qq.com>
Date: 星期五, 12 六月 2020 09:22:04 +0800
Subject: [PATCH] 2020.06.12

---
 ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedContentForm.cs |   28 ++++++++++++++++++----------
 1 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedContentForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedContentForm.cs
index 7735487..bb545c2 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedContentForm.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedContentForm.cs
@@ -41,9 +41,9 @@
         /// </summary>
         private Dictionary<string, CommonDevice> dicSelectDevice = new Dictionary<string, CommonDevice>();
         /// <summary>
-        /// 褰撳墠閫夋嫨鐨勫垎鏀� 1锛氬満鏅�  2锛氬姛鑳�
+        /// 褰撳墠閫夋嫨鐨勫垎鏀� 0锛氬満鏅�  1锛氬姛鑳�
         /// </summary>
-        private int nowSwitchIndex = 1;
+        private int nowSwitchIndex = 0;
         /// <summary>
         /// 褰撳墠閫夋嫨鐨勮澶囩储寮�
         /// </summary>
@@ -126,7 +126,7 @@
             tabControl.SelectTabEvent += (tabIndex) =>
             {
                 this.nowSwitchIndex = tabIndex;
-                if (tabIndex == 1)
+                if (tabIndex == 0)
                 {
                     //鏄剧ず鍦烘櫙鍒楄〃
                     this.frameSceneTable.Visible = true;
@@ -139,7 +139,11 @@
                     this.frameDeviceTable.Visible = true;
                 }
             };
-            tabControl.InitControl();
+            //寮�濮嬪垵濮嬪寲鍦烘櫙鍔熻兘鍒囨崲鎺т欢
+            var listTitle = new List<string>();
+            listTitle.Add(Language.StringByID(R.MyInternationalizationString.uScence));
+            listTitle.Add(Language.StringByID(R.MyInternationalizationString.uFunction));
+            tabControl.InitControl(listTitle);
         }
 
         #endregion
@@ -155,12 +159,15 @@
             this.frameSceneTable.RemoveAll();
 
             var listScene = new List<Common.SceneUI>();
-            for (int i = 0; i < lookRoom.SceneUIList.Count; i++)
+            for (int i = 0; i < lookRoom.ListSceneId.Count; i++)
             {
-                if (HdlShardLogic.Current.IsFileExists(lookRoom.SceneUIList[i].FileName) == true)
+                var byteData = HdlShardLogic.Current.GetShardFileContent($"Scene_{lookRoom.ListSceneId[i]}.json");
+                if (byteData == null)
                 {
-                    listScene.Add(lookRoom.SceneUIList[i]);
+                    continue;
                 }
+                var sceneUi = Newtonsoft.Json.JsonConvert.DeserializeObject<Common.SceneUI>(System.Text.Encoding.UTF8.GetString(byteData));
+                listScene.Add(sceneUi);
             }
             if (listScene.Count == 0)
             {
@@ -180,7 +187,7 @@
                 {
                     //鍦烘櫙鎺т欢
                     var frameContr = new ScenePictrueControl();
-                    listView.AddChidrenFrame(frameContr);
+                    listView.AddChidren(frameContr);
                     frameContr.InitControl(data);
 
                     var btnSelect = new IconViewControl(58);
@@ -188,7 +195,7 @@
                     btnSelect.SelectedImagePath = "Item/ItemSelected.png";
                     btnSelect.X = Application.GetRealWidth(887);
                     btnSelect.Y = Application.GetRealHeight(35);
-                    frameContr.AddChidren(btnSelect, ChidrenBindMode.BindEventOnly);
+                    frameContr.AddChidren(btnSelect, ChidrenBindMode.BindEvent);
                     if (dicSelectScene.ContainsKey(data.Id) == true)
                     {
                         btnSelect.IsSelected = true;
@@ -430,8 +437,9 @@
         {
             //鑾峰彇杩欎釜鎴块棿閲岄潰鐨勫垎浜澶�
             var listDevice = new List<CommonDevice>();
-            foreach (var deviceFile in this.lookRoom.DeviceUIFilePathList)
+            foreach (var deviceKeys in this.lookRoom.ListDevice)
             {
+                string deviceFile = HdlShardLogic.Current.GetShardDeviceFileName(deviceKeys);
                 if (memberShardInfo.dicAllShardKeys.ContainsKey(deviceFile) == true)
                 {
                     var strArry = deviceFile.Split('_');

--
Gitblit v1.8.0