| | |
| | | { |
| | | cornerFram.selectKeyAction += (keypadEntity) => |
| | | { |
| | | this.KeyControl(keypadEntity.keypad, keypadEntity.name); |
| | | this.KeyControl(keypadEntity.keypad, keypadEntity.name, keypadEntity.isClicked); |
| | | }; |
| | | |
| | | if (gfSingleFramLayout != null) |
| | |
| | | gfSingleFramLayout.btnRightImage.UnSelectedImagePath = "AksIcon/xuanze.png"; |
| | | gfSingleFramLayout.btnRightImage.Gravity = Gravity.CenterVertical; |
| | | gfSingleFramLayout.btnLeftImage.Visible = false; |
| | | |
| | | if (gfSingleFramLayout.btnName.GetTextWidth() > Application.GetRealWidth(48)) |
| | | { |
| | | gfSingleFramLayout.singleFramLayout.Width = Application.GetRealWidth(101 - 48) + gfSingleFramLayout.btnName.GetTextWidth(); |
| | | gfSingleFramLayout.singleFramLayout.X = Application.GetRealWidth(226 + 48) - gfSingleFramLayout.btnName.GetTextWidth(); |
| | | gfSingleFramLayout.btnName.Width = gfSingleFramLayout.btnName.GetTextWidth(); |
| | | gfSingleFramLayout.btnRightImage.X = gfSingleFramLayout.btnName.Right + Application.GetRealWidth(8); |
| | | } |
| | | gfSingleFramLayout.CustomCalculationWidth(TypeSingleFramLayout.Orientation.right, |
| | | gfSingleFramLayout.singleFramLayout, |
| | | gfSingleFramLayout.btnName, |
| | | gfSingleFramLayout.btnRightImage, |
| | | 48, 200); |
| | | } |
| | | else |
| | | { |
| | |
| | | typeMultiFramLayout = new TypeMultiFramLayout(); |
| | | typeMultiFramLayout.multiFramLayout.Gravity = Gravity.Center; |
| | | typeMultiFramLayout.AddView(cornerBottomFram); |
| | | typeMultiFramLayout.btnBottonRightName.Text = this.remoteControl.name; |
| | | typeMultiFramLayout.btnRightName.Text = this.remoteControl.name; |
| | | |
| | | } |
| | | this.AdjustRealHeight(16); |
| | |
| | | /// </summary> |
| | | /// <param name="keypad"><按键标识/param> |
| | | /// <param name="keyName"><按键名称(打印用的)/param> |
| | | private void KeyControl(string keypad, string keyName) |
| | | /// <param name="isSupport"><是否支持控制/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); |
| | | SendMethod.Current.KeypadExecute(remoteControl.deviceId, remoteControl.rcId, keypad, keyName, isSupport); |
| | | } |
| | | catch { } |
| | | finally |