Example #1
0
        private void RdButton_RxLongClick(object sender, EventArgs e)
        {
            int id = ((UrrRdButton)sender).Id;

            try
            {
                _CmdManager.RdSwitchRxState(id, true);
            }
            catch (Exception ex)
            {
                int    pos = _RdButtons.IndexOf((UrrRdButton)sender);
                string msg = string.Format("ERROR modificando Rx de frecuencia RD mediante pulsacion larga [Pos={0}] [Id={1}]", pos, id);
                _Logger.Error(msg, ex);
            }
        }