using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain { public enum TvKey { /// /// 静音 /// Mute = 0x01, /// /// 电源 /// Power = 0x02, /// /// 音量+ /// VoiceInc = 0x03, /// /// 音量- /// VoiceDec = 0x04, /// /// 频道+ /// ChannelInc = 0x05, /// /// 频道- /// ChannelDec = 0x06, /// /// 向上 /// Up = 0x07, /// /// 向下 /// Down = 0x08, /// /// 向左 /// Left = 0x09, /// /// 向右 /// Right = 0x0A, /// /// 确定 /// Ok = 0x0B, /// /// 主页 /// Home = 0x0C, /// /// 菜单 /// Menu = 0x0D, /// /// 信源 /// Source = 0x0E, /// /// 回看 /// Replay = 0x0F } }