예제 #1
0
        private void CreatePlayScheduleInfo()
        {
            if (this.PlayScheduleInfoHost != null)
            {
                switch (_playScheduleMode)
                {
                case PlayScheduleMode.Auto:
                    this.PlayScheduleInfoHost.PlayScheduleInfo = PlayScheduleInfo.Ordered();
                    break;

                case PlayScheduleMode.Timing:
                    this.PlayScheduleInfoHost.PlayScheduleInfo = PlayScheduleInfo.Timing(this.StartTime);
                    break;

                case PlayScheduleMode.TimingBreak:
                    this.PlayScheduleInfoHost.PlayScheduleInfo = PlayScheduleInfo.TimingBreak(this.StartTime);
                    break;
                }
            }
        }
예제 #2
0
 private void OnPlayScheduleInfoChanged(PlayScheduleInfo newValue, PlayScheduleInfo oldValue)
 {
 }