| | |
| | | if (playView.playBtn.IsSelected) |
| | | { |
| | | playView.playBtn.IsSelected = false; |
| | | status = ValueProperty.off; |
| | | status = ValueProperty.pause; |
| | | } |
| | | else |
| | | { |
| | |
| | | if (musicView.playBtn.IsSelected) |
| | | { |
| | | musicView.playBtn.IsSelected = false; |
| | | status = ValueProperty.off; |
| | | status = ValueProperty.pause; |
| | | } |
| | | else |
| | | { |
| | |
| | | /// </summary> |
| | | public const string down = "down"; |
| | | /// <summary> |
| | | /// 开<on> |
| | | /// 开/播放<on> |
| | | /// </summary> |
| | | public const string on = "on"; |
| | | /// <summary> |
| | | /// 关<off> |
| | | /// 关/停止<off> |
| | | /// </summary> |
| | | public const string off = "off"; |
| | | /// <summary> |
| | | /// 暂停 |
| | | /// </summary> |
| | | public const string pause = "pause"; |
| | | /// <summary> |
| | | /// 单曲<single> |
| | | /// </summary> |
| | | public const string single = "single"; |