Пример #1
0
        NotificationSound GetSound()
        {
            switch (this.SelectedSoundType)
            {
            case "Default": return(NotificationSound.Default);

            //case "Priority" : return NotificationSound.Default;
            case "Custom": return(NotificationSound.FromCustom("notification.mp3"));

            default: return(NotificationSound.None);
            }
        }