From 07466c19110693e3e439a7d7c8ad0bc21d9b3287 Mon Sep 17 00:00:00 2001
From: xm <1271024303@qq.com>
Date: 星期三, 29 四月 2020 09:14:01 +0800
Subject: [PATCH] 优化代码,更改门锁需求接口

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

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
index cfdeb44..43f19bc 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionDirectoryListForm.cs
@@ -60,13 +60,25 @@
             listView.AddChidren(row1);
             row1.AddLeftCaption("鏍圭洰褰曟枃浠�", 800);
             row1.AddRightArrow();
-
+            row1.AddBottomLine();
             row1.ButtonClickEvent += (sender, e) =>
             {
                 var form = new HideOptionFileListForm();
                 form.AddForm(UserCenterLogic.CombinePath());
             };
 
+            //鏌ョ湅鍏ㄩ儴鏂囦欢
+            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));
         }
 

--
Gitblit v1.8.0