| | |
| | | /// </summary>
|
| | | public CategoryMainForm()
|
| | | {
|
| | | this.FormID = "CategoryMainForm";
|
| | | BackgroundColor = ZigbeeColor.Current.GXCGrayBackgroundColor;
|
| | | instance = this;
|
| | | }
|
| | |
| | | if (UserCenterResourse.ResidenceOption.CategoryPageSwitchIndex == 0)
|
| | | {
|
| | | //添加场景
|
| | | Add_Scene();
|
| | | var form = new AddOrEditorSceneForm();
|
| | | form.AddForm(new object[] { null });
|
| | | form.SceneChangedEvent += (scene, roomId) =>
|
| | | {
|
| | | //刷新bodyView
|
| | | this.RefreshBodyView();
|
| | | };
|
| | | }
|
| | | else if (UserCenterResourse.ResidenceOption.CategoryPageSwitchIndex == 2)
|
| | | {
|
| | | //添加自动化
|
| | | Add_Automation();
|
| | | Device.Logic.SkipView.SkipAddLogic(0);
|
| | | }
|
| | | };
|
| | | }
|
| | |
| | | //应该是body吧
|
| | | this.bodyFrameLayout = new FrameLayout();
|
| | | bodyFrameLayout.Y = topFrameLayout.Bottom;
|
| | | bodyFrameLayout.Height = Application.GetRealHeight(1549);
|
| | | bodyFrameLayout.Height = this.Height - topFrameLayout.Bottom;
|
| | | bodyFrameLayout.BackgroundColor = ZigbeeColor.Current.GXCGrayBackgroundColor;
|
| | | this.AddChidren(bodyFrameLayout);
|
| | |
|
| | |
| | | frameSwitchBack.AddChidren(btnFloorName);
|
| | | btnFloorName.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | var floors = new Device.Category.SelectFloor();
|
| | | var floors = new SelectFloorForm();
|
| | | AddChidren(floors);
|
| | | floors.Init(580, 330, Direction.Right);
|
| | | floors.changeFloor = true;
|
| | | floors.FloorAction += (floorId) =>
|
| | | {
|
| | | btnFloorName.Text = Config.Instance.Home.GetFloorNameById(floorId);
|
| | | HdlRoomLogic.Current.CurrentRoom = HdlRoomLogic.Current.GetLoveRoom();
|
| | | btnFloorName.Text = HdlResidenceLogic.Current.GetFloorNameById(floorId);
|
| | | HdlRoomLogic.Current.NowCategoryRoom = HdlRoomLogic.Current.GetLoveRoom();
|
| | | //刷新bodyView
|
| | | this.RefreshBodyView();
|
| | | };
|
| | |
| | | //楼层图标
|
| | | this.btnFloorIcon = new IconViewControl(69);
|
| | | btnFloorIcon.X = Application.GetRealWidth(950);
|
| | | btnFloorIcon.Y = btnFloorName.Y;
|
| | | btnFloorIcon.Y = Application.GetRealHeight(17);
|
| | | btnFloorIcon.UnSelectedImagePath = "Item/Drop_Down.png";
|
| | | frameSwitchBack.AddChidren(btnFloorIcon);
|
| | | btnFloorIcon.ButtonClickEvent += (sender, e) =>
|
| | |
| | | //目前不知道郭雪城的这个具体放在哪个的位置
|
| | | this.functionSceneAutoBodyView = new FrameLayout();
|
| | | functionSceneAutoBodyView.Y = frameSwitchBack.Bottom;
|
| | | functionSceneAutoBodyView.Height = Application.GetRealHeight(1423);
|
| | | functionSceneAutoBodyView.Height = bodyFrameLayout.Height - frameSwitchBack.Bottom;
|
| | | bodyFrameLayout.AddChidren(functionSceneAutoBodyView);
|
| | |
|
| | | //场景,功能,自动化的切换控件
|
| | |
| | | switchContr.SelectTabEvent += (selectIndex) =>
|
| | | {
|
| | | UserCenterResourse.ResidenceOption.CategoryPageSwitchIndex = selectIndex;
|
| | | if (selectIndex == 2)
|
| | | {
|
| | | Common.Logic.LogicDviceList.Clear();
|
| | | if (Common.Logic.LogicDviceList.Count == 0)
|
| | | {
|
| | | Common.Logic.LogicDviceList.AddRange(LocalDevice.Current.listAllDevice.ToArray());
|
| | | }
|
| | | }
|
| | | //刷新bodyView
|
| | | this.RefreshBodyView();
|
| | | };
|
| | |
| | | //自动化
|
| | | else if (UserCenterResourse.ResidenceOption.CategoryPageSwitchIndex == 2)
|
| | | {
|
| | | this.ShowAutotion();
|
| | | //自动化功能代码入口
|
| | | Device.Logic.SkipView.ShowAutotionView(functionSceneAutoBodyView);
|
| | | //隐藏楼层
|
| | | floorVisible = false;
|
| | | //显示右上角的加号
|
| | |
| | | {
|
| | | //当前楼层的全部房间
|
| | | var lisrRoom = HdlRoomLogic.Current.GetRoomsByCurrentFloorIdAppendLoveRoom();
|
| | | if (HdlRoomLogic.Current.NowCategoryRoom == null)
|
| | | {
|
| | | //设置第一个为初始房间
|
| | | HdlRoomLogic.Current.NowCategoryRoom = lisrRoom[0];
|
| | | }
|
| | | //房间菜单控件
|
| | | var roomSwitchContr = new RoomDeviceGroupMenuControl(lisrRoom);
|
| | | roomSwitchContr.Y = Application.GetRealHeight(-55);
|
| | | this.functionSceneAutoBodyView.AddChidren(roomSwitchContr);
|
| | | //设置初始值
|
| | | roomSwitchContr.SetDefultIndex(HdlRoomLogic.Current.CurrentRoom.Id);
|
| | | roomSwitchContr.SetDefultIndex(HdlRoomLogic.Current.NowCategoryRoom.Id);
|
| | | //选择事件
|
| | | roomSwitchContr.SelectRoomEvent += (selectRoom) =>
|
| | | {
|
| | | HdlRoomLogic.Current.CurrentRoom = selectRoom;
|
| | | HdlRoomLogic.Current.NowCategoryRoom = selectRoom;
|
| | | //场景
|
| | | if (UserCenterResourse.ResidenceOption.CategoryPageSwitchIndex == 0)
|
| | | {
|
| | |
| | | var dicGroupDevice = this.GetAllGroupDevice(room);
|
| | | if (dicGroupDevice.Count == 0)
|
| | | {
|
| | | this.ShowNoFunctionTip();
|
| | | //没有功能{0}请在个人中心--设备管理处添加
|
| | | string[] arryMsg = Language.StringByID(R.MyInternationalizationString.NoFunction).Split(new string[] { "{0}" }, StringSplitOptions.RemoveEmptyEntries);
|
| | | this.ShowNotDataImage(functionSceneBodyView, arryMsg);
|
| | | return;
|
| | | }
|
| | |
|
| | |
| | | HdlThreadLogic.Current.RunMainInThread(() =>
|
| | | {
|
| | | //初始化设备列表控件
|
| | | this.InitListDeviceControls(listDeviceView, rowInfo);
|
| | | this.InitListDeviceControls(listDeviceView, rowInfo, room);
|
| | | });
|
| | | }
|
| | | };
|
| | |
| | | if (nowSelectDeviceInfo != null)
|
| | | {
|
| | | //初始化默认的设备列表控件
|
| | | this.InitListDeviceControls(listDeviceView, nowSelectDeviceInfo);
|
| | | this.InitListDeviceControls(listDeviceView, nowSelectDeviceInfo, room);
|
| | | }
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 提示没有功能
|
| | | /// </summary>
|
| | | private void ShowNoFunctionTip()
|
| | | {
|
| | | var noFunction = new Button()
|
| | | {
|
| | | Y = Application.GetRealHeight(320),
|
| | | Width = Application.GetMinRealAverage(757),
|
| | | Height = Application.GetMinRealAverage(435),
|
| | | UnSelectedImagePath = "Item/NoFunction.png",
|
| | | Gravity = Gravity.CenterHorizontal
|
| | | };
|
| | | functionSceneBodyView.AddChidren(noFunction);
|
| | |
|
| | | var noFunctionTip = new Button()
|
| | | {
|
| | | Y = noFunction.Bottom + Application.GetRealHeight(32),
|
| | | Height = Application.GetRealHeight(200),
|
| | | Width = Application.GetRealWidth(700),
|
| | | Gravity = Gravity.CenterHorizontal,
|
| | | Text = Language.StringByID(R.MyInternationalizationString.NoFunction).Replace("{\\r\\n}", "\r\n"),
|
| | | TextColor = ZigbeeColor.Current.GXCPlaceHolderTextColor,
|
| | | TextAlignment = TextAlignment.Center,
|
| | | IsMoreLines = true
|
| | | };
|
| | | functionSceneBodyView.AddChidren(noFunctionTip);
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
| | | /// </summary>
|
| | | /// <param name="listView"></param>
|
| | | /// <param name="rowInfo"></param>
|
| | | private void InitListDeviceControls(VerticalListControl listView, DeviceRowInfo rowInfo)
|
| | | private void InitListDeviceControls(VerticalListControl listView, DeviceRowInfo rowInfo, Room i_room)
|
| | | {
|
| | | //先清空
|
| | | listView.RemoveAll();
|
| | |
|
| | | var listDevice = new List<CommonDevice>();
|
| | | foreach (var mainkeys in rowInfo.listDeviceKeys)
|
| | | for (int i = 0; i < rowInfo.listDeviceKeys.Count; i++)
|
| | | {
|
| | | var device = LocalDevice.Current.GetDevice(mainkeys);
|
| | | var device = LocalDevice.Current.GetDevice(rowInfo.listDeviceKeys[i]);
|
| | |
|
| | | //获取设备类型的
|
| | | var deviceEnumInfo = Common.LocalDevice.Current.GetMyDeviceEnumInfo(new List<CommonDevice>() { device });
|
| | | //新风面板下的回路不显示,(如新风、温/湿度传感器则不显示)
|
| | | if (deviceEnumInfo.ConcreteType == Common.DeviceConcreteType.ButtonPanel_FangyueFreshAir)
|
| | | {
|
| | | continue;
|
| | | }
|
| | |
|
| | | if (device != null)
|
| | | {
|
| | | listDevice.Add(device);
|
| | | }
|
| | | else
|
| | | {
|
| | | rowInfo.listDeviceKeys.RemoveAt(i);
|
| | | i--;
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | //窗帘
|
| | | if (device.Type == DeviceType.WindowCoveringDevice)
|
| | | {
|
| | | cardContr = new Controls.DeviceCurtainRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceCurtainRowControl();
|
| | | }
|
| | | //继电器
|
| | | else if (device.Type == DeviceType.OnOffOutput)
|
| | | {
|
| | | cardContr = new Controls.DeviceRelayRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceRelayRowControl();
|
| | | }
|
| | | //空气开关
|
| | | else if (device.Type == DeviceType.AirSwitch)
|
| | | {
|
| | | cardContr = new Controls.DeviceAirSwitchRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceAirSwitchRowControl();
|
| | | }
|
| | | //空调
|
| | | else if (device.Type == DeviceType.Thermostat)
|
| | | {
|
| | | cardContr = new Controls.DeviceAcRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceAcRowControl();
|
| | | }
|
| | | // 新风
|
| | | else if (device.Type == DeviceType.FreshAir)
|
| | | {
|
| | | cardContr = new Controls.DeviceFreshAirRowControl();
|
| | | }
|
| | | // PM2.5
|
| | | else if (device.Type == DeviceType.PMSensor)
|
| | | {
|
| | | cardContr = new Controls.DevicePmSensorRowControl();
|
| | | }
|
| | | //彩灯(调光器)
|
| | | else if (device.Type == DeviceType.DimmableLight)
|
| | | {
|
| | | cardContr = new Controls.DeviceColorLightRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceColorLightRowControl();
|
| | | }
|
| | | //传感器
|
| | | else if (device.Type == DeviceType.IASZone)
|
| | | {
|
| | | cardContr = new Controls.DeviceSensorRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceSensorRowControl();
|
| | | }
|
| | | //温湿度
|
| | | else if (device.Type == DeviceType.TemperatureSensor)
|
| | | {
|
| | | cardContr = new Controls.DeviceTemperatureRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceTemperatureRowControl();
|
| | | }
|
| | | //门锁
|
| | | else if (device.Type == DeviceType.DoorLock)
|
| | | {
|
| | | cardContr = new Controls.DeviceDoorLockRowControl(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceDoorLockRowControl();
|
| | | }
|
| | | //色温灯
|
| | | else if (device.Type == DeviceType.ColorTemperatureLight)
|
| | | {
|
| | | cardContr = new Controls.DeviceColorTemperatureRowControl();
|
| | | }
|
| | | //无法识别
|
| | | else
|
| | | {
|
| | | cardContr = new Controls.DeviceRowCommon(listView.rowSpace / 2);
|
| | | cardContr = new Controls.DeviceRowCommon();
|
| | | //没有状态功能
|
| | | cardContr.hadStatuFunction = false;
|
| | | }
|
| | |
|
| | | cardContr.chidrenYaxis = listView.rowSpace / 2;
|
| | | //初始化卡片
|
| | | listView.AddChidren(cardContr);
|
| | | cardContr.InitControl(device);
|
| | | cardContr.InitControl(device, HdlRoomLogic.Current.NowCategoryRoom);
|
| | | //控件记录到缓存中
|
| | | this.dicDeviceRowControl[LocalDevice.Current.GetDeviceMainKeys(device)] = cardContr;
|
| | | //加缓存,然后发命令
|
| | | listContr.Add(cardContr);
|
| | | //控件被移除的回调函数
|
| | | cardContr.RowNeedRemoveEvent += () =>
|
| | | {
|
| | | string myKeys = LocalDevice.Current.GetDeviceMainKeys(cardContr.device);
|
| | | rowInfo.listDeviceKeys.Remove(myKeys);
|
| | | this.dicDeviceRowControl.Remove(myKeys);
|
| | |
|
| | | if (rowInfo.listDeviceKeys.Count == 0)
|
| | | {
|
| | | //在外面清空(特效的问题)
|
| | | this.functionSceneBodyView.RemoveAll();
|
| | | HdlThreadLogic.Current.RunMainInThread(() =>
|
| | | {
|
| | | //刷新设备分支控件
|
| | | this.RefreshFunctionView(i_room);
|
| | | });
|
| | | }
|
| | | };
|
| | | }
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | |
| | | {
|
| | | return;
|
| | | }
|
| | | System.Threading.Thread.Sleep(20);
|
| | | System.Threading.Thread.Sleep(200);
|
| | | //发送获取状态的命令
|
| | | listContr[i].SendStatuComand();
|
| | | }
|
| | |
| | | /// <param name="room"></param>
|
| | | private void RefreshSceneView(Room room)
|
| | | {
|
| | | //主人,管理员专用刷新控件
|
| | | VerticalListRefreshControl listview1 = null;
|
| | | //成员专用不能刷新的控件
|
| | | VerticalListControl listview2 = null;
|
| | | if (UserCenterResourse.UserInfo.AuthorityNo == 1 || UserCenterResourse.UserInfo.AuthorityNo == 2)
|
| | | {
|
| | | //主人,管理员专用刷新控件
|
| | | listview1 = new VerticalListRefreshControl();
|
| | | functionSceneBodyView.AddChidren(listview1);
|
| | | //下拉刷新
|
| | | listview1.BeginHeaderRefreshingAction += () =>
|
| | | {
|
| | | //如果当前是虚拟住宅,则只给个特效
|
| | | if (Common.Config.Instance.Home.IsVirtually == true)
|
| | | {
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | System.Threading.Thread.Sleep(1500);
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | | listview1.EndHeaderRefreshing();
|
| | | });
|
| | | });
|
| | | return;
|
| | | }
|
| | |
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | //从网关刷新场景列表
|
| | | bool result = HdlSceneLogic.Current.RefreshSceneUIList();
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | | listview1.EndHeaderRefreshing();
|
| | | if (result == true)
|
| | | {
|
| | | //在外面清空(特效的问题)
|
| | | this.functionSceneBodyView.RemoveAll();
|
| | | HdlThreadLogic.Current.RunMainInThread(() =>
|
| | | {
|
| | | //刷新场景分支控件
|
| | | this.RefreshSceneView(room);
|
| | | });
|
| | | }
|
| | | });
|
| | | });
|
| | | };
|
| | | }
|
| | | else
|
| | | {
|
| | | //成员专用不能刷新的控件
|
| | | listview2 = new VerticalListControl();
|
| | | functionSceneBodyView.AddChidren(listview2);
|
| | | }
|
| | |
|
| | | var listScene = new List<SceneUI>();
|
| | | foreach (var sceneId in room.ListSceneId)
|
| | | {
|
| | |
| | | }
|
| | | if (listScene.Count == 0)
|
| | | {
|
| | | this.ShowNoSceneTip();
|
| | | //在滑动控件里面添加一个桌布
|
| | | var frameTable = new FrameLayout();
|
| | | listview1?.AddChidren(frameTable);
|
| | | listview2?.AddChidren(frameTable);
|
| | | //没有场景{0}请点击右上角添加
|
| | | string[] arryMsg = Language.StringByID(R.MyInternationalizationString.NoScene).Split(new string[] { "{0}" }, StringSplitOptions.RemoveEmptyEntries);
|
| | | this.ShowNotDataImage(frameTable, arryMsg);
|
| | | return;
|
| | | }
|
| | |
|
| | | var dicSceneContr = new Dictionary<int, SceneCategoryView>();
|
| | | var listview = new VerticalListControl();
|
| | | functionSceneBodyView.AddChidren(listview);
|
| | | foreach (var scene in listScene)
|
| | | {
|
| | | //场景卡片控件
|
| | | var sceneView = new SceneCategoryView();
|
| | | listview.AddChidren(sceneView);
|
| | | listview1?.AddChidren(sceneView);
|
| | | listview2?.AddChidren(sceneView);
|
| | | sceneView.InitControl(scene, room);
|
| | |
|
| | | dicSceneContr[scene.Id] = sceneView;
|
| | | }
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | //获取全部场景的延时时间
|
| | | this.GetAllDelayScene(dicSceneContr, listview);
|
| | | if (listview1 != null)
|
| | | {
|
| | | //打开全部场景的延时时间
|
| | | this.StartAllDelayScene(dicSceneContr, listview1);
|
| | | }
|
| | | else
|
| | | {
|
| | | //打开全部场景的延时时间
|
| | | this.StartAllDelayScene(dicSceneContr, listview2);
|
| | | }
|
| | | }, ShowErrorMode.NO);
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 获取全部场景的延时时间
|
| | | /// 打开全部场景的延时时间
|
| | | /// </summary>
|
| | | /// <param name="dicSceneContr"></param>
|
| | | private async void GetAllDelayScene(Dictionary<int, SceneCategoryView> dicSceneContr, VerticalListControl listview)
|
| | | private async void StartAllDelayScene(Dictionary<int, SceneCategoryView> dicSceneContr, ViewGroup listview)
|
| | | {
|
| | | string hourText = Language.StringByID(R.MyInternationalizationString.Hour);
|
| | | string minuText = Language.StringByID(R.MyInternationalizationString.Minute);
|
| | | string secondText = Language.StringByID(R.MyInternationalizationString.Second);
|
| | |
|
| | | //如果当前住宅是虚拟住宅
|
| | | if (Config.Instance.Home.IsVirtually == true)
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | | //开启延时特效
|
| | | foreach (var myContr in dicSceneContr.Values)
|
| | | {
|
| | | if (myContr.scene.RemainTime > 0)
|
| | | {
|
| | | //开启场景延时特效
|
| | | this.StartSceneDelayApeal(myContr, listview, myContr.scene.RemainTime, hourText, minuText, secondText);
|
| | | }
|
| | | }
|
| | | }, ShowErrorMode.NO);
|
| | | return;
|
| | | }
|
| | |
|
| | | //读取全部的延时时间
|
| | | var result = await Scene.CatDelaySceneAsync();
|
| | | if (result == null || result.catDelaySceneResponseData == null ||
|
| | |
| | | //出错不鸟它
|
| | | return;
|
| | | }
|
| | |
|
| | | string hourText = Language.StringByID(R.MyInternationalizationString.Hour);
|
| | | string minuText = Language.StringByID(R.MyInternationalizationString.Minute);
|
| | | string secondText = Language.StringByID(R.MyInternationalizationString.Second);
|
| | |
|
| | | foreach (var data in result.catDelaySceneResponseData.DelayScenesList)
|
| | | {
|
| | |
| | | {
|
| | | continue;
|
| | | }
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | //开启内部延时时间线程(旨在全部地方的同一场景时间同步)
|
| | | HdlSceneLogic.Current.StartDelayTimeThread(seceneContr.scene);
|
| | | while (remainTime > 0 && this.Parent != null)
|
| | | {
|
| | | System.Threading.Thread.Sleep(1000);
|
| | | Application.RunOnMainThread(() =>
|
| | | {
|
| | | seceneContr.SetTimeText(this.GetTimeString(remainTime, hourText, minuText, secondText));
|
| | | });
|
| | | remainTime--;
|
| | | }
|
| | | Application.RunOnMainThread(() =>
|
| | | {
|
| | | if (listview.Parent != null)
|
| | | {
|
| | | seceneContr.SetTimeImage();
|
| | | //开启Loading特效
|
| | | seceneContr.StartLoadingApreal();
|
| | | }
|
| | | });
|
| | | });
|
| | | //开启场景延时特效
|
| | | this.StartSceneDelayApeal(seceneContr, listview, remainTime, hourText, minuText, secondText);
|
| | | }
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 显示没有场景
|
| | | /// 开启场景延时特效
|
| | | /// </summary>
|
| | | private void ShowNoSceneTip()
|
| | | /// <param name="sceneContr"></param>
|
| | | /// <param name="remainTime"></param>
|
| | | /// <param name="hourText"></param>
|
| | | /// <param name="minuText"></param>
|
| | | /// <param name="secondText"></param>
|
| | | private void StartSceneDelayApeal(SceneCategoryView sceneContr, ViewGroup listview, int remainTime,
|
| | | string hourText, string minuText, string secondText)
|
| | | {
|
| | | var noFunction = new Button()
|
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | Y = Application.GetRealHeight(320),
|
| | | Width = Application.GetMinRealAverage(757),
|
| | | Height = Application.GetMinRealAverage(435),
|
| | | UnSelectedImagePath = "Item/NoFunction.png",
|
| | | Gravity = Gravity.CenterHorizontal
|
| | | };
|
| | | functionSceneBodyView.AddChidren(noFunction);
|
| | |
|
| | | var noScenceTip = new Button()
|
| | | {
|
| | | Y = noFunction.Bottom + Application.GetRealHeight(32),
|
| | | Height = Application.GetRealHeight(200),
|
| | | Width = Application.GetRealWidth(700),
|
| | | Gravity = Gravity.CenterHorizontal,
|
| | | Text = Language.StringByID(R.MyInternationalizationString.NoScene).Replace("{\\r\\n}", "\r\n"),
|
| | | TextColor = ZigbeeColor.Current.GXCPlaceHolderTextColor,
|
| | | TextAlignment = TextAlignment.Center,
|
| | | IsMoreLines = true
|
| | | };
|
| | | functionSceneBodyView.AddChidren(noScenceTip);
|
| | | //开启内部延时时间线程(旨在全部地方的同一场景时间同步)
|
| | | HdlSceneLogic.Current.StartDelayTimeThread(sceneContr.scene);
|
| | | while (remainTime > 0 && this.Parent != null)
|
| | | {
|
| | | System.Threading.Thread.Sleep(1000);
|
| | | Application.RunOnMainThread(() =>
|
| | | {
|
| | | sceneContr.SetTimeText(this.GetTimeString(remainTime, hourText, minuText, secondText));
|
| | | });
|
| | | remainTime--;
|
| | | }
|
| | | Application.RunOnMainThread(() =>
|
| | | {
|
| | | if (listview.Parent != null)
|
| | | {
|
| | | sceneContr.SetTimeImage();
|
| | | //开启Loading特效
|
| | | sceneContr.StartLoadingApreal();
|
| | | }
|
| | | });
|
| | | });
|
| | | }
|
| | |
|
| | |
|
| | | #endregion
|
| | |
|
| | |
| | | private void AddNormalDeviceReportEvent()
|
| | | {
|
| | | //设备属性上报(缓存的修改交由 HdlGatewayReceiveLogic 处理)
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("UserHomeViewDeviceStatus", ReceiveComandDiv.A设备属性上报, (report) =>
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("CategoryMainFormDeviceStatus", ReceiveComandDiv.A设备属性上报, (report) =>
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | |
| | | {
|
| | | //刷新卡片信息
|
| | | var locadevice = LocalDevice.Current.GetDevice(mainKeys);
|
| | | //已经接收到网关的反馈 2020.05.09:删除Ack主题
|
| | | this.dicDeviceRowControl[mainKeys].SetHadGetResponeResultStatu();
|
| | | //刷新控件
|
| | | this.dicDeviceRowControl[mainKeys].RefreshControlInfo(locadevice);
|
| | | }
|
| | | }, ShowErrorMode.NO);
|
| | | });
|
| | |
|
| | | //设备在线上报(缓存的修改交由 HdlGatewayReceiveLogic 处理)
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("UserHomeViewDeviceOnline", ReceiveComandDiv.A设备在线上报, (report) =>
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("CategoryMainFormDeviceOnline", ReceiveComandDiv.A设备在线上报, (report) =>
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | |
| | | if (this.dicDeviceRowControl.ContainsKey(mainKeys) == true)
|
| | | {
|
| | | //刷新卡片状态
|
| | | this.dicDeviceRowControl[mainKeys].SetRowOnlineStatu(report.IsOnline == 1);
|
| | | bool bolOnline = LocalDevice.Current.CheckDeviceIsOnline(report);
|
| | | this.dicDeviceRowControl[mainKeys].SetRowOnlineStatu(bolOnline);
|
| | | return;
|
| | | }
|
| | |
|
| | | }, ShowErrorMode.NO);
|
| | | });
|
| | |
|
| | | //设备控制反馈上报
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("UserHomeViewDeviceRespone", ReceiveComandDiv.A节点控制反馈, (report) =>
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | | string mainKeys = LocalDevice.Current.GetDeviceMainKeys(report);
|
| | | if (this.dicDeviceRowControl.ContainsKey(mainKeys) == true)
|
| | | {
|
| | | //设备卡片
|
| | | var deviceCardContr = this.dicDeviceRowControl[mainKeys];
|
| | | //已经接收到网关的反馈
|
| | | deviceCardContr.SetHadGetResponeResultStatu();
|
| | | }
|
| | |
|
| | | }, ShowErrorMode.NO);
|
| | |
| | | private void AddSensorDeviceReportEvent()
|
| | | {
|
| | | //传感器上报(缓存的修改交由 HdlGatewayReceiveLogic 处理)
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("UserHomeViewSensor", ReceiveComandDiv.A传感器上报, (report) =>
|
| | | HdlGatewayReceiveLogic.Current.AddAttributeEvent("CategoryMainFormSensor", ReceiveComandDiv.A传感器上报, (report) =>
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | |
| | | private Dictionary<int, DeviceRowInfo> GetAllGroupDevice(Common.Room room)
|
| | | {
|
| | | //全部的设备
|
| | | var listDevice = HdlRoomLogic.Current.GetRoomListDevice(room);
|
| | | var listDeviceTemp = HdlRoomLogic.Current.GetRoomListDevice(room);
|
| | | var listDevice = new List<CommonDevice>();
|
| | | foreach (var device in listDeviceTemp)
|
| | | {
|
| | | //判断该设备能否显示在分类
|
| | | if (LocalDevice.Current.CanShowInHomeHomeMainPage(device) == false)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | listDevice.Add(device);
|
| | | }
|
| | |
|
| | | //根据设备所属类型排序
|
| | | listDevice = LocalDevice.Current.SortDeviceByBelongType(listDevice);
|
| | | var dic = new Dictionary<int, DeviceRowInfo>();
|
| | |
| | | string path1 = string.Empty;
|
| | | string path2 = string.Empty;
|
| | | //获取图片
|
| | | LocalDevice.Current.GetDeviceObjectIcon(typeInfo.ConcreteType, ref path1, ref path2);
|
| | | LocalDevice.Current.GetDeviceFunctionTypeMenuIcon(typeInfo.ConcreteType, ref path1, ref path2);
|
| | | dic[typeInfo.BeloneTextId].IconPath = path1;
|
| | | dic[typeInfo.BeloneTextId].IconPathSelected = path2;
|
| | | dic[typeInfo.BeloneTextId].TextId = typeInfo.BeloneTextId;
|
| | |
| | | {
|
| | | //把静态变量的这个东西置空
|
| | | instance = null;
|
| | | HdlGatewayReceiveLogic.Current.RemoveEvent("CategoryMainFormDeviceStatus");
|
| | | HdlGatewayReceiveLogic.Current.RemoveEvent("CategoryMainFormDeviceOnline");
|
| | | HdlGatewayReceiveLogic.Current.RemoveEvent("CategoryMainFormSensor");
|
| | |
|
| | | base.CloseFormBefore();
|
| | | }
|
| | |
| | | return timeStr;
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 添加场景(郭雪城的代码)
|
| | | /// </summary>
|
| | | private void Add_Scene()
|
| | | {
|
| | | var scene = new Device.Category.CategoryAddScene();
|
| | | UserView.HomePage.Instance.AddChidren(scene);
|
| | | UserView.HomePage.Instance.PageIndex += 1;
|
| | | scene.Show();
|
| | | scene.AddAction = () =>
|
| | | {
|
| | | //刷新bodyView
|
| | | this.RefreshBodyView();
|
| | | };
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 添加自动化(郭雪城的代码)
|
| | | /// </summary>
|
| | | private void Add_Automation()
|
| | | {
|
| | | //new一个新逻辑对象;
|
| | | Common.Logic.CurrentLogic = new Common.Logic();
|
| | | Common.Logic.CurrentLogic.IsEnable = 1;//默认为开
|
| | | Common.Logic.CurrentLogic.LogicName = Language.StringByID(MyInternationalizationString.automation1);
|
| | | var addLogicPage = new Shared.Phone.Device.Logic.AddLogicPage();
|
| | | UserView.HomePage.Instance.AddChidren(addLogicPage);
|
| | | UserView.HomePage.Instance.PageIndex += 1;
|
| | | addLogicPage.Show();
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 结构体_____________________________
|
| | |
| | | /// 设备回路主键
|
| | | /// </summary>
|
| | | public List<string> listDeviceKeys = new List<string>();
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ◆ 自动化__________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 自动化功能代码入口
|
| | | /// </summary>
|
| | | private void ShowAutotion()
|
| | | {
|
| | | // functionSceneAutoBodyView.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
|
| | | #region ---推荐模板的组件
|
| | | //推荐模板背景控件
|
| | | var bjFrameLayout = new FrameLayout
|
| | | {
|
| | | Width = Application.GetRealWidth(1080 - 58),
|
| | | Height = Application.GetRealHeight(170),
|
| | | BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor,
|
| | | X = Application.GetRealWidth(58),
|
| | | //Radius = (uint)Application.GetRealHeight(50),
|
| | | Y = Application.GetRealHeight(30),
|
| | |
|
| | | };
|
| | | functionSceneAutoBodyView.AddChidren(bjFrameLayout);
|
| | | bjFrameLayout.SetCornerWithSameRadius(Application.GetRealHeight(58), HDLUtils.RectCornerBottomLeft);
|
| | | //图标控件
|
| | | var sigBtn = new Button
|
| | | {
|
| | | Width = Application.GetMinRealAverage(84),
|
| | | Height = Application.GetMinRealAverage(84),
|
| | | UnSelectedImagePath = "ZigeeLogic/sign.png",
|
| | | X = Application.GetRealWidth(58),
|
| | | Gravity = Gravity.CenterVertical,
|
| | | };
|
| | | bjFrameLayout.AddChidren(sigBtn);
|
| | | //推荐模板文本控件
|
| | | var recommendtextBtn = new Button
|
| | | {
|
| | | Width = Application.GetMinRealAverage(300),
|
| | | Height = Application.GetMinRealAverage(84),
|
| | | X = sigBtn.Right + Application.GetRealWidth(35),
|
| | | TextAlignment = TextAlignment.CenterLeft,
|
| | | //Text = "推荐模板",
|
| | | TextID = MyInternationalizationString.logictemplate,
|
| | | Gravity = Gravity.CenterVertical,
|
| | | TextColor = ZigbeeColor.Current.LogicBtnSelectedColor,
|
| | | TextSize = 15,
|
| | | };
|
| | | bjFrameLayout.AddChidren(recommendtextBtn);
|
| | | //推荐模板开关控件
|
| | | var recommendswitchBtn = new Button
|
| | | {
|
| | | Width = Application.GetRealWidth(104),
|
| | | Height = Application.GetRealHeight(63),
|
| | | UnSelectedImagePath = "ZigeeLogic/logicclose.png",
|
| | | SelectedImagePath = "ZigeeLogic/logicopen.png",
|
| | | X = bjFrameLayout.Width - Application.GetRealWidth(104 + 58),
|
| | | Gravity = Gravity.CenterVertical,
|
| | | };
|
| | | bjFrameLayout.AddChidren(recommendswitchBtn);
|
| | | #endregion
|
| | | //默认推荐模板左右可滑控件
|
| | | var scenehorizontalScrol = new HorizontalScrolViewLayout
|
| | | {
|
| | | Width = Application.GetRealWidth(1080 - 58),
|
| | | X = Application.GetRealWidth(58),
|
| | | Y = bjFrameLayout.Bottom + Application.GetRealHeight(30),
|
| | | Height = Application.GetRealHeight(0),
|
| | | };
|
| | | functionSceneAutoBodyView.AddChidren(scenehorizontalScrol);
|
| | | //显示自动化列表上下可滑控件
|
| | | var logicScrolView = new VerticalRefreshLayout//VerticalScrolViewLayout
|
| | | {
|
| | | Height = functionSceneAutoBodyView.Height - bjFrameLayout.Height - bjFrameLayout.Y - scenehorizontalScrol.Height - Application.GetRealHeight(30),
|
| | | //BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor,/
|
| | | X = Application.GetRealWidth(58),
|
| | | Y = scenehorizontalScrol.Bottom,
|
| | | };
|
| | | functionSceneAutoBodyView.AddChidren(logicScrolView);
|
| | | logicScrolView.SetCornerWithSameRadius(Application.GetRealHeight(58), HDLUtils.RectCornerTopLeft);
|
| | | bool no = false;
|
| | | //显示默认模板的界面事件
|
| | | recommendswitchBtn.MouseUpEventHandler += (sender, e) =>
|
| | | {
|
| | | int Yheight = 0;
|
| | | recommendswitchBtn.IsSelected = !recommendswitchBtn.IsSelected;
|
| | | scenehorizontalScrol.RemoveAll();
|
| | | if (recommendswitchBtn.IsSelected)
|
| | | {
|
| | | no = true;
|
| | | scenehorizontalScrol.Height = Application.GetRealHeight(246);
|
| | | Yheight = 20;
|
| | | for (int i = 1; i < 4; i++)
|
| | | {
|
| | |
|
| | | var frameLayout = new FrameLayout
|
| | | {
|
| | | Width = Application.GetMinRealAverage(369 + 46),
|
| | | Height = Application.GetMinRealAverage(246),
|
| | | };
|
| | | scenehorizontalScrol.AddChidren(frameLayout);
|
| | | var logiciocnBtn = new Button
|
| | | {
|
| | | Width = Application.GetMinRealAverage(369),
|
| | | Height = Application.GetMinRealAverage(246),
|
| | | UnSelectedImagePath = "ZigeeLogic/" + i + ".png",
|
| | | Tag = i,
|
| | | };
|
| | | frameLayout.AddChidren(logiciocnBtn);
|
| | |
|
| | | var logicnameBtn = new Button
|
| | | {
|
| | | Width = Application.GetMinRealAverage(250),
|
| | | Height = Application.GetMinRealAverage(80),
|
| | | X = Application.GetRealWidth(23),
|
| | | Y = Application.GetRealHeight(246 - 23 - 80),
|
| | | TextAlignment = TextAlignment.CenterLeft,
|
| | | TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor,
|
| | | TextSize = 14,
|
| | | };
|
| | | frameLayout.AddChidren(logicnameBtn);
|
| | |
|
| | | if (i == 1)
|
| | | {
|
| | | logicnameBtn.Text = Language.StringByID(MyInternationalizationString.onlight);
|
| | | }
|
| | | else if (i == 2)
|
| | | {
|
| | | logicnameBtn.Text = Language.StringByID(MyInternationalizationString.offlight);
|
| | | }
|
| | | else if (i == 3)
|
| | | {
|
| | | logicnameBtn.Text = Language.StringByID(MyInternationalizationString.automation1);
|
| | | }
|
| | |
|
| | |
|
| | | EventHandler<MouseEventArgs> iconclick = (sender1, e1) =>
|
| | | {
|
| | | Common.Logic.CurrentLogic = new Common.Logic();
|
| | | Common.Logic.CurrentLogic.IsEnable = 1;//默认为开
|
| | | if (logiciocnBtn.Tag.ToString() == "3")
|
| | | {
|
| | | Common.Logic.CurrentLogic.LogicName = logicnameBtn.Text;
|
| | | //Common.Logic.CurrentLogic.LogicCustomPushText = Common.Logic.CurrentLogic.LogicName + Language.StringByID(MyInternationalizationString.defaulttext);
|
| | | var addLogicPage = new Device.Logic.AddLogicPage();
|
| | | HomePage.Instance.AddChidren(addLogicPage);
|
| | | HomePage.Instance.PageIndex += 1;
|
| | | addLogicPage.Show();
|
| | | }
|
| | | else
|
| | | {
|
| | |
|
| | | Common.Logic.CurrentLogic.LogicName = logicnameBtn.Text;
|
| | | //Common.Logic.CurrentLogic.LogicCustomPushText = Common.Logic.CurrentLogic.LogicName + Language.StringByID(MyInternationalizationString.defaulttext);
|
| | | Device.Logic.TemplatePage templatePage = new Device.Logic.TemplatePage();
|
| | | Device.Logic.TemplatePage.s = logiciocnBtn.Tag.ToString();
|
| | | HomePage.Instance.AddChidren(templatePage);
|
| | | HomePage.Instance.PageIndex += 1;
|
| | | templatePage.Show();
|
| | | }
|
| | | };
|
| | | logiciocnBtn.MouseUpEventHandler += iconclick;
|
| | | logicnameBtn.MouseUpEventHandler += iconclick;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | no = false;
|
| | | scenehorizontalScrol.Height = Application.GetRealHeight(0);
|
| | | Yheight = 0;
|
| | | }
|
| | | logicScrolView.Y = scenehorizontalScrol.Bottom + Yheight;
|
| | | logicScrolView.Height = functionSceneAutoBodyView.Height - bjFrameLayout.Height - bjFrameLayout.Y - scenehorizontalScrol.Height - Application.GetRealHeight(30) - Yheight;
|
| | | Automationview(logicScrolView, no);
|
| | | };
|
| | | //下拉刷新自动化列表的事件
|
| | | logicScrolView.BeginHeaderRefreshingAction += () =>
|
| | | {
|
| | | //重新刷新logic列表
|
| | | Common.Logic.LogicList.Clear();
|
| | | Read(logicScrolView, no);
|
| | | //关闭刷新View;
|
| | | logicScrolView.EndHeaderRefreshing();
|
| | | };
|
| | |
|
| | | Read(logicScrolView, no);
|
| | |
|
| | | }
|
| | | /// <summary>
|
| | | /// 读取自动化列表数据;
|
| | | /// </summary>
|
| | | /// <param name="logicScrolView"></param>
|
| | | private async void Read(VerticalRefreshLayout logicScrolView, bool no)
|
| | | {
|
| | | CommonPage.Loading.Start();
|
| | | if (Common.Logic.LogicList.Count == 0)
|
| | | {
|
| | | var Idlist = await Device.Logic.Send.GetLogicId(0);
|
| | | if (Idlist.Count != 0)
|
| | | {
|
| | | var listlogic = await Device.Logic.Send.ReadList(Idlist.Count, 0);
|
| | | //foreach可能集合已被修改,枚举操作可能不会执行,可能出现崩溃(建议for)。
|
| | | for (int j = 0; j < listlogic.Count; j++)
|
| | | {
|
| | | var logic = listlogic[j];
|
| | | if (logic.LogicType != 0)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | Common.Logic.LogicList.Add(logic);
|
| | | }
|
| | | }
|
| | | }
|
| | | //自动化
|
| | | Automationview(logicScrolView, no);
|
| | | CommonPage.Loading.Hide();
|
| | | }
|
| | | /// <summary>
|
| | | /// 加载自动化列表界面
|
| | | /// </summary>
|
| | | /// <param name="refresview">Refresview.</param>
|
| | | private async void Automationview(VerticalRefreshLayout refresview, bool no)
|
| | | {
|
| | | refresview.RemoveAll();
|
| | | if (Common.Logic.LogicList.Count == 0 && no == false)
|
| | | {
|
| | | //就是为了显示引导添加图标;
|
| | | refresview.BackgroundColor = 0x00000000;
|
| | | var noFrameLayout = new FrameLayout
|
| | | {
|
| | | Height = Application.GetRealHeight(434 + 200 + 32 + 160),
|
| | | //BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
|
| | | };
|
| | | refresview.AddChidren(noFrameLayout);
|
| | |
|
| | |
|
| | | var noIconBtn = new Button
|
| | | {
|
| | | Y = Application.GetRealHeight(160),
|
| | | Width = Application.GetMinRealAverage(756),
|
| | | Height = Application.GetMinRealAverage(434),
|
| | | UnSelectedImagePath = "Item/NoFunction.png",
|
| | | X = Application.GetRealWidth(104),
|
| | | };
|
| | | noFrameLayout.AddChidren(noIconBtn);
|
| | |
|
| | | var noTextBtn = new Button()
|
| | | {
|
| | | Y = noIconBtn.Bottom,
|
| | | Height = Application.GetRealHeight(200) + Application.GetRealHeight(32),
|
| | | Width = Application.GetRealWidth(700),
|
| | | //Gravity = Gravity.CenterHorizontal,
|
| | | Text = Language.StringByID(MyInternationalizationString.automationaddtext).Replace("{\\r\\n}", "\r\n"),
|
| | | TextColor = ZigbeeColor.Current.GXCPlaceHolderTextColor,
|
| | | TextAlignment = TextAlignment.Center,
|
| | | IsMoreLines = true,
|
| | | X = Application.GetRealWidth(190 - 58),
|
| | | };
|
| | | noFrameLayout.AddChidren(noTextBtn);
|
| | |
|
| | | }
|
| | | else
|
| | | {
|
| | |
|
| | | if (Common.Logic.LogicList.Count == 0 && no == true)
|
| | | {
|
| | | ///改变滑动view的颜色;
|
| | | refresview.BackgroundColor = 0x00000000;
|
| | | }
|
| | | else
|
| | | {
|
| | | refresview.BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor;
|
| | | }
|
| | | }
|
| | | foreach (var logic in Common.Logic.LogicList)
|
| | | {
|
| | |
|
| | |
|
| | | var logicRowlayout = new RowLayout
|
| | | {
|
| | | Height = Application.GetRealHeight(190 + 30),
|
| | | Width = Application.GetRealWidth(1080 - 58),
|
| | | LineColor = ZigbeeColor.Current.LogicBackgroundColor,
|
| | | BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor,
|
| | | SubViewWidth = Application.GetRealWidth(184),//改变编辑控件宽度多少;
|
| | |
|
| | | };
|
| | | refresview.AddChidren(logicRowlayout);
|
| | |
|
| | |
|
| | |
|
| | | var logicnameBtn = new Button
|
| | | {
|
| | | Height = Application.GetRealHeight(58),
|
| | | Width = Application.GetRealWidth(350),
|
| | | Text = logic.LogicName,
|
| | | X = Application.GetRealWidth(12 + 46),
|
| | | Y = Application.GetRealHeight(30),
|
| | | TextAlignment = TextAlignment.CenterLeft,
|
| | | TextColor = ZigbeeColor.Current.LogicTextBlackColor,
|
| | | TextSize = 14,
|
| | | };
|
| | | logicRowlayout.AddChidren(logicnameBtn);
|
| | |
|
| | |
|
| | | var logicswitchBtn = new Button
|
| | | {
|
| | | Width = Application.GetRealWidth(104),
|
| | | Height = Application.GetRealHeight(63),
|
| | | UnSelectedImagePath = "ZigeeLogic/logicclose.png",
|
| | | SelectedImagePath = "ZigeeLogic/logicopen.png",
|
| | | X = logicRowlayout.Width - Application.GetRealWidth(104 + 58),
|
| | | Y = Application.GetRealHeight(58 + 30 + 9 + 30),
|
| | |
|
| | | };
|
| | | logicRowlayout.AddChidren(logicswitchBtn);
|
| | |
|
| | |
|
| | |
|
| | | logicswitchBtn.MouseUpEventHandler += (sender1, e1) =>
|
| | | {
|
| | | logicswitchBtn.IsSelected = !logicswitchBtn.IsSelected;
|
| | | if (logicswitchBtn.IsSelected)
|
| | | {
|
| | | //逻辑开
|
| | | logic.IsEnable = 1;
|
| | | StatusColor(logic, logicRowlayout, 1);
|
| | | }
|
| | | else
|
| | | {
|
| | | //逻辑关
|
| | | logic.IsEnable = 0;
|
| | | StatusColor(logic, logicRowlayout, 0);
|
| | | }
|
| | | Device.Logic.Send.LogicControlSwitch(logic);
|
| | | //Logic.Send.AddModifyLogic(logic);
|
| | | };
|
| | | if (logic.IsEnable == 1)
|
| | | {
|
| | | logicswitchBtn.IsSelected = true;
|
| | | StatusColor(logic, logicRowlayout, 1);
|
| | | }
|
| | | else if (logic.IsEnable == 0)
|
| | | {
|
| | | logicswitchBtn.IsSelected = false;
|
| | | StatusColor(logic, logicRowlayout, 0);
|
| | | }
|
| | | ///编辑
|
| | | var edit = new Button
|
| | | {
|
| | | BackgroundColor = ZigbeeColor.Current.LogicEditBlackColor1,
|
| | | Text = Language.StringByID(MyInternationalizationString.edit),
|
| | | TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor,
|
| | | };
|
| | | logicRowlayout.AddRightView(edit);
|
| | | edit.MouseUpEventHandler += (sender, e) =>
|
| | | {
|
| | | Common.Logic.CurrentLogic = logic;
|
| | | var logicCommunalPage = new Device.Logic.LogicCommunalPage();
|
| | | HomePage.Instance.AddChidren(logicCommunalPage);
|
| | | HomePage.Instance.PageIndex += 1;
|
| | | logicCommunalPage.Show(() => { logicnameBtn.Text = logic.LogicName; Automationview(refresview, no); });
|
| | |
|
| | | };
|
| | |
|
| | |
|
| | | ///删除
|
| | | var del = new Button
|
| | | {
|
| | | BackgroundColor = ZigbeeColor.Current.LogicDelBlackColor1,
|
| | | Text = Language.StringByID(MyInternationalizationString.del),
|
| | | TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor,
|
| | | };
|
| | | logicRowlayout.AddRightView(del);
|
| | | del.MouseUpEventHandler += (sender, e) =>
|
| | | {
|
| | | var alert = new Alert(Language.StringByID(MyInternationalizationString.tip), Language.StringByID(MyInternationalizationString.doyouwanttodelete),
|
| | | Language.StringByID(MyInternationalizationString.cancel), Language.StringByID(MyInternationalizationString.confrim));
|
| | | alert.ResultEventHandler += (sender1, e1) =>
|
| | | {
|
| | | if (e1)
|
| | | {
|
| | | Common.Logic.LogicList.Remove(logic);
|
| | | Automationview(refresview, no);
|
| | | Device.Logic.Send.DelLogic(logic.LogicId);
|
| | | }
|
| | | };
|
| | | alert.Show();
|
| | |
|
| | | };
|
| | | var line = new Button
|
| | | {
|
| | | Y = Application.GetRealHeight(215),
|
| | | Height = Application.GetRealHeight(5),
|
| | | Width = Application.GetRealWidth(1080 - 58),
|
| | | BackgroundColor = ZigbeeColor.Current.LogicRowLayoutLineColor,
|
| | | X = Application.GetRealWidth(58),
|
| | | };
|
| | | logicRowlayout.AddChidren(line);
|
| | | }
|
| | |
|
| | | }
|
| | | /// <summary>
|
| | | /// 显示自动化输出功能模块图标的颜色
|
| | | /// </summary>
|
| | | /// <param name="logic"></param>
|
| | | /// <param name="logicRowlayout"></param>
|
| | | /// <param name="intvalue"></param>
|
| | | private void StatusColor(Common.Logic logic, RowLayout logicRowlayout, int intvalue)
|
| | | {
|
| | |
|
| | | var logictimeBtn = new Button
|
| | | {
|
| | | Height = Application.GetRealHeight(58),
|
| | | Width = logicRowlayout.Width - Application.GetRealWidth(58 + 12 + 350),
|
| | | Y = Application.GetRealHeight(30),
|
| | | X = Application.GetRealWidth(365),
|
| | | TextAlignment = TextAlignment.CenterRight,
|
| | | TextColor = ZigbeeColor.Current.LogicListWeekTextColor,
|
| | | };
|
| | | logicRowlayout.AddChidren(logictimeBtn);
|
| | |
|
| | | ///显示执行周期
|
| | | Device.Logic.Method.UpdateWeek(logictimeBtn, logic);
|
| | |
|
| | |
|
| | | List<string> indexlist = new List<string>();
|
| | | List<string> iconIndexlist = new List<string>();
|
| | | for (int i = 0; i < logic.Actions.Count; i++)
|
| | | {
|
| | | var linkType = logic.Actions[i]["LinkType"].ToString();
|
| | | var d = indexlist.Find((value) => { return value == linkType; });
|
| | | if (d == null)
|
| | | {
|
| | | indexlist.Add(linkType);
|
| | | }
|
| | | }
|
| | | if (indexlist.Contains("0"))
|
| | | {
|
| | | iconIndexlist.Add("0");
|
| | | }
|
| | | if (indexlist.Contains("2"))
|
| | | {
|
| | | iconIndexlist.Add("2");
|
| | | }
|
| | | if (indexlist.Contains("6"))
|
| | | {
|
| | | iconIndexlist.Add("6");
|
| | | }
|
| | | if (indexlist.Contains("7"))
|
| | | {
|
| | | iconIndexlist.Add("7");
|
| | | }
|
| | | for (int i = 0; i < iconIndexlist.Count; i++)
|
| | | {
|
| | | var iconindex = iconIndexlist[i];
|
| | | var typebjBtn = new FrameLayout
|
| | | {
|
| | | Width = Application.GetMinRealAverage(82),
|
| | | Height = Application.GetMinRealAverage(82),
|
| | | X = Application.GetRealWidth(58) + Application.GetRealWidth(12 + (12 + 82 + 45 + 12) * i),
|
| | | Y = Application.GetRealHeight(58 + 30 + 30),
|
| | | Radius = (uint)Application.GetRealHeight(41),
|
| | | BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
|
| | | };
|
| | | logicRowlayout.AddChidren(typebjBtn);
|
| | |
|
| | | var typeIconBtn = new Button
|
| | | {
|
| | | Width = Application.GetMinRealAverage(58),
|
| | | Height = Application.GetMinRealAverage(58),
|
| | | Gravity = Gravity.Center,
|
| | |
|
| | | };
|
| | | typebjBtn.AddChidren(typeIconBtn);
|
| | |
|
| | | var connectIconBtn = new Button
|
| | | {
|
| | | Y = typebjBtn.Y + Application.GetRealHeight(35),
|
| | | X = Application.GetRealWidth(58) + Application.GetRealWidth((12 + 82 + 12) + (12 + 45 + 82 + 12) * i),
|
| | | Width = Application.GetRealWidth(48),
|
| | | Height = Application.GetRealHeight(15),
|
| | | UnSelectedImagePath = "ZigeeLogic/connect.png",
|
| | | };
|
| | | logicRowlayout.AddChidren(connectIconBtn);
|
| | | if (iconIndexlist.Count - 1 == i)
|
| | | {
|
| | | connectIconBtn.Visible = false;
|
| | | }
|
| | | switch (iconindex)
|
| | | {
|
| | | case "0":
|
| | | {
|
| | | if (intvalue == 1)
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/function1.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicFunction1Color;
|
| | | }
|
| | | else
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/nofunction.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
|
| | | }
|
| | | }
|
| | | break;
|
| | | case "2":
|
| | | {
|
| | |
|
| | | if (intvalue == 1)
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/scene1.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicScene1Color;
|
| | | }
|
| | | else
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/noscene.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
|
| | | }
|
| | |
|
| | | }
|
| | | break;
|
| | | case "6":
|
| | | {
|
| | | if (intvalue == 1)
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/security1.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicSecurity1Color;
|
| | |
|
| | | }
|
| | | else
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/nosecurity.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
|
| | | }
|
| | |
|
| | | }
|
| | | break;
|
| | | case "7":
|
| | | {
|
| | | if (intvalue == 1)
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/delay1.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicDelay1Color;
|
| | | }
|
| | | else
|
| | | {
|
| | | typeIconBtn.UnSelectedImagePath = "ZigeeLogic/nodelay.png";
|
| | | typebjBtn.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
|
| | | }
|
| | |
|
| | | }
|
| | | break;
|
| | |
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | #endregion
|