using System; using System.Collections.Generic; using HDL_ON.UI.Music; using HDL_ON.UI.UI2.FuntionControlView.Aks.CommonView; using HDL_ON.UI.UI2.FuntionControlView.Aks.Entity; using HDL_ON.UI.UI2.FuntionControlView.VideoDoorLock; using Shared; using static HDL_ON.UI.UI2.FuntionControlView.Aks.AksPage; namespace HDL_ON.UI.UI2.FuntionControlView.Aks { /// /// 投影仪界面 /// public class TyyPage : BaseFramLayout { /// /// /// /// 遥控器对象 /// 时序器列表 public TyyPage(RemoteControlEntity remoteControlEntity, List sequencerList) { this.remoteControl = remoteControlEntity; this.sequencerList = sequencerList; } /// /// 时序器列表 /// private List sequencerList; /// /// 当前的遥控器对象 /// private RemoteControlEntity remoteControl; public Action action; CornerFramLayout cornerTopFram; MenuFramLayout menuFram; TypeMultiFramLayout typeMultiFramLayout; TypeSingleFramLayout tyySingleFramLayout; public void Show() { //初始化UI this.InitUI(); //初始化事件监听器 this.EventListener(); //读取数据 this.ReadData(); } private void ReadData() { } /// /// 事件监听器 /// private void EventListener() { //功能键控制 cornerTopFram.selectKeyAction += (keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }; //菜单上按键 menuFram.SetTopClickListener((keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }); //菜单下按键 menuFram.SetBottomClickListener((keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }); //菜单左按键 menuFram.SetLeftClickListener((keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }); //菜单右按键 menuFram.SetRightClickListener((keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }); //菜单ok按键 menuFram.SetOkClickListener((keypadEntity) => { this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); }); if (typeMultiFramLayout != null) { //时序器 typeMultiFramLayout.SetLeftFlClickListener((f) => { SxqPage sxqPage = new SxqPage(this.sequencerList, this.remoteControl.deviceId); MainPage.BasePageView.AddChidren(sxqPage); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; sxqPage.Show(); }); //设备切换 typeMultiFramLayout.SetRightFlClickListener((f) => { action?.Invoke(IntType.Projector); }); } if (tyySingleFramLayout != null) { //设备切换 tyySingleFramLayout.SetClickListener((f) => { action?.Invoke(IntType.Projector); }); } } private void InitUI() { this.BackgroundColor = MusicColor.ViewColor; Button btnTitle = new Button { Y = Application.GetRealHeight(16), X = Application.GetRealWidth(16), Height = Application.GetRealHeight(22), Width = Application.GetRealWidth(200), TextAlignment = TextAlignment.CenterLeft, TextColor = MusicColor.TextColor, TextSize = TextSize.Text16, Text = this.remoteControl.name, IsBold = true, }; this.AddChidren(btnTitle); cornerTopFram = new CornerFramLayout(343, 452 - 30, 17); cornerTopFram.X = Application.GetRealWidth(16); cornerTopFram.Y = btnTitle.Bottom + Application.GetRealHeight(16); this.AddChidren(cornerTopFram); cornerTopFram.SetMargin(16, 0, 16, 0); cornerTopFram.LoadButtonPage(AksCommonMethod.Current.GetTYYKeypadList(this.remoteControl), new List { 3, 4, 5 }); CornerFramLayout cornerBottomFram = new CornerFramLayout(343, 292 - 30, 17); cornerBottomFram.X = Application.GetRealWidth(16); cornerBottomFram.Y = cornerTopFram.Bottom + Application.GetRealHeight(16); cornerBottomFram.BackgroundColor = MusicColor.WhiteColor; cornerBottomFram.Radius = (uint)Application.GetRealHeight(17); this.AddChidren(cornerBottomFram); menuFram = new MenuFramLayout(); menuFram.Y = Application.GetRealHeight(24); menuFram.AddView(cornerBottomFram); if (sequencerList.Count == 0) { //没有时序器 tyySingleFramLayout = new TypeSingleFramLayout(); tyySingleFramLayout.AddView(cornerBottomFram); tyySingleFramLayout.singleFramLayout.Y = menuFram.Bottom + Application.GetRealHeight(32); tyySingleFramLayout.singleFramLayout.X = Application.GetRealWidth(226); tyySingleFramLayout.singleFramLayout.Width = Application.GetRealWidth(101); tyySingleFramLayout.btnName.Text = this.remoteControl.name; tyySingleFramLayout.btnName.X = Application.GetRealWidth(16); tyySingleFramLayout.btnName.Width = Application.GetRealWidth(48); tyySingleFramLayout.btnRightImage.X = tyySingleFramLayout.btnName.Right + Application.GetRealWidth(8); tyySingleFramLayout.btnRightImage.Width = Application.GetRealWidth(16); tyySingleFramLayout.btnRightImage.Height = Application.GetRealWidth(16); tyySingleFramLayout.btnRightImage.UnSelectedImagePath = "AksIcon/xuanze.png"; tyySingleFramLayout.btnRightImage.Gravity = Gravity.CenterVertical; tyySingleFramLayout.btnLeftImage.Visible = false; tyySingleFramLayout.CustomCalculationWidth(TypeSingleFramLayout.Orientation.right, tyySingleFramLayout.singleFramLayout, tyySingleFramLayout.btnName, tyySingleFramLayout.btnRightImage, 48,200); } else { typeMultiFramLayout = new TypeMultiFramLayout(); typeMultiFramLayout.multiFramLayout.Y = menuFram.Bottom + Application.GetRealHeight(32); typeMultiFramLayout.AddView(cornerBottomFram); typeMultiFramLayout.btnRightName.Text = this.remoteControl.name; } this.AdjustRealHeight(16); } /// /// 按键控制 /// /// <按键标识/param> /// <按键名称(打印用的)/param> /// <是否支持控制/param> private void KeyControl(string keypad, string keyName, bool isSupport) { //CommonMethod.Current.Loading.Start(); CommonMethod.Current.SunThread(() => { try { SendMethod.Current.KeypadExecute(remoteControl.deviceId, remoteControl.rcId, keypad, keyName,isSupport); } catch { } finally { CommonMethod.Current.MainThread(() => { //CommonMethod.Current.Loading.Hide(); }); } }); } } }