黄学彪
2020-12-16 0d9f64668fd7350d6a21fd157e32009a96d98134
ZigbeeApp/Shared/Phone/Common/Logic/HdlTemplateDataFormLogic.cs
old mode 100755 new mode 100644
File was renamed from ZigbeeApp/Shared/Phone/TemplateData/TemplateDataFormLogic.cs
@@ -3,29 +3,29 @@
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.TemplateData
namespace Shared.Phone
{
    /// <summary>
    /// 模板数据的界面逻辑
    /// </summary>
    public class TemplateDataFormLogic
    public class HdlTemplateDataFormLogic
    {
        #region ■ 变量声明___________________________
        /// <summary>
        /// 模板数据的界面逻辑
        /// </summary>
        private static TemplateDataFormLogic m_Current = null;
        private static HdlTemplateDataFormLogic m_Current = null;
        /// <summary>
        /// 模板数据的界面逻辑
        /// </summary>
        public static TemplateDataFormLogic Current
        public static HdlTemplateDataFormLogic Current
        {
            get
            {
                if (m_Current == null)
                {
                    m_Current = new TemplateDataFormLogic();
                    m_Current = new HdlTemplateDataFormLogic();
                }
                return m_Current;
            }
@@ -45,7 +45,7 @@
            //2020.09.15 不再获取云端模板
            //获取本地的模板
            var listLocal = TemplateCommonLogic.Current.GetLocalAllModelList();
            var listLocal = HdlTemplateCommonLogic.Current.GetLocalAllModelList();
            //获取云端的模板
            //var listClound = TemplateCommonLogic.Current.GetCloundAllModelList();
            //if (listLocal.Count == 0 && listClound.Count == 0)
@@ -108,7 +108,7 @@
                //    {
                //        if (fullName != null)
                //        {
                //            string fileName = fullName.Substring(DirNameResourse.AllResidenceTemplateDirectory.Length + 1);
                //            string fileName = fullName.Substring(HdlFileNameResourse.AllResidenceTemplateDirectory.Length + 1);
                //            //调用回调函数
                //            HdlThreadLogic.Current.RunMain(() =>
                //            {