/// <summary> /// The show audio defaults. /// </summary> public void ShowAudioDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.AudioDefaultsViewModel, Resources.Preset_AudioDefaults_Title, Resources.AudioView_AudioDefaultsDescription); if (this.windowManager.ShowDialog(popup) == true) { this.OnTabStatusChanged(null); } }
/// <summary> /// The show audio defaults. /// </summary> public void ShowSubtitleDefaultsPanel() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.SubtitleDefaultsViewModel, Resources.Preset_SubtitleDefaults_Title, Resources.SubtitleView_SubtitleDefaultsDescription, Resources.Generic_Apply); if (this.windowManager.ShowDialog(popup) == true) { this.OnTabStatusChanged(null); } }
/// <summary> /// The show audio defaults. /// </summary> public void ShowAudioDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.AudioDefaultsViewModel, ResourcesUI.Preset_AudioDefaults_Title, ResourcesUI.AudioView_AudioDefaultsDescription); if (this.windowManager.ShowDialog(popup) == true) { // Nothing to do yet, it's by reference. } else { // Handle other case(s) } }
/// <summary> /// The edit subtitle defaults. /// </summary> public void EditSubtitleDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.subtitlesDefaultsViewModel, ResourcesUI.Preset_SubtitleDefaults_Title, ResourcesUI.Preset_SubtitleDefaults_SubText); if (this.windowManager.ShowDialog(popup) == true) { this.Preset.SubtitleTrackBehaviours = this.subtitlesDefaultsViewModel.SubtitleBehaviours.Clone(); } else { // Handle other case(s) } }
/// <summary> /// The edit audio defaults. /// </summary> public void EditAudioDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.audioDefaultsViewModel, Resources.Preset_AudioDefaults_Title, Resources.Preset_AudioDefaults_SubText, null); if (this.windowManager.ShowDialog(popup) == true) { this.Preset.AudioTrackBehaviours = this.audioDefaultsViewModel.AudioBehaviours.Clone(); } else { // Handle other case(s) } }