From d569f44a62fa915d4f01a80c21e617f676b6c5ea Mon Sep 17 00:00:00 2001
From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local>
Date: 星期五, 18 十月 2019 10:12:10 +0800
Subject: [PATCH] 2019.10.18
---
ZigbeeApp/Shared/Phone/Device/CommonForm/DeviceInfoRow.cs | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ZigbeeApp/Shared/Phone/Device/CommonForm/DeviceInfoRow.cs b/ZigbeeApp/Shared/Phone/Device/CommonForm/DeviceInfoRow.cs
index f335c58..69b0a79 100644
--- a/ZigbeeApp/Shared/Phone/Device/CommonForm/DeviceInfoRow.cs
+++ b/ZigbeeApp/Shared/Phone/Device/CommonForm/DeviceInfoRow.cs
@@ -4,7 +4,6 @@
{
public class DeviceInfoRow : FrameLayout
{
-
/// <summary>
/// TipBtn
/// </summary>
@@ -17,6 +16,10 @@
/// NextBtn
/// </summary>
public Button NextBtn;
+ /// <summary>
+ /// line
+ /// </summary>
+ private Button line;
/// <summary>
/// DeviceInfoEditRow
@@ -67,7 +70,7 @@
};
AddChidren(NextBtn);
- var line = new Button()
+ line = new Button()
{
X = Application.GetRealWidth(CommonFormResouce.X_Left),
Y = Height - 2,
@@ -114,5 +117,10 @@
{
SetTipTitle(Language.StringByID(title));
}
+
+ public void HideLine(bool hiden)
+ {
+ line.Visible = hiden;
+ }
}
}
--
Gitblit v1.8.0