From 5428935270159bfc42c2934ed7fb1091554fc9a4 Mon Sep 17 00:00:00 2001
From: 黄学彪 <hxb@hdlchina.com.cn>
Date: 星期四, 09 七月 2020 17:12:42 +0800
Subject: [PATCH] 修改了 sokect

---
 ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs |   23 ++++++++++++++++++-----
 1 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
index cfdeb44..7999dcc 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
@@ -60,11 +60,23 @@
             listView.AddChidren(row1);
             row1.AddLeftCaption("鏍圭洰褰曟枃浠�", 800);
             row1.AddRightArrow();
-
+            row1.AddBottomLine();
             row1.ButtonClickEvent += (sender, e) =>
             {
                 var form = new HideOptionFileListForm();
-                form.AddForm(UserCenterLogic.CombinePath());
+                form.AddForm(Common.Config.Instance.FullPath);
+            };
+
+            //鏌ョ湅鍏ㄩ儴鏂囦欢
+            var row2 = new FrameRowControl(listView.rowSpace / 2);
+            listView.AddChidren(row2);
+            row2.AddLeftCaption("鏌ョ湅鍏ㄩ儴鏂囦欢", 800);
+            row2.AddRightArrow();
+
+            row2.ButtonClickEvent += (sender, e) =>
+            {
+                var form = new HideOptionSearchAllFile();
+                form.AddForm(Shared.IO.FileUtils.RootPath);
             };
 
             listView.AdjustRealHeight(Application.GetRealHeight(23));
@@ -72,10 +84,11 @@
 
         private void AddRowControl(VerticalListControl listView, string directory, string directoryValue, bool addLine)
         {
-            string myPath = UserCenterLogic.CombinePath(DirNameResourse.LocalMemoryDirectory, directoryValue);
-            if (directoryValue == DirNameResourse.LocalMemoryDirectory)
+            string localDir = DirNameResourse.LocalMemoryDirectory;
+            string myPath = System.IO.Path.Combine(localDir, directoryValue);
+            if (localDir.EndsWith(directoryValue) == true)
             {
-                myPath = UserCenterLogic.CombinePath(DirNameResourse.LocalMemoryDirectory);
+                myPath = localDir;
             }
             if (System.IO.Directory.Exists(myPath) == false)
             {

--
Gitblit v1.8.0