// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The About View Model // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels { using Interfaces; using Caliburn.Micro; /// /// The About View Model /// public class PreviewViewModel : ViewModelBase, IPreviewViewModel { /// /// Initializes a new instance of the class. /// /// /// The window manager. /// public PreviewViewModel(IWindowManager windowManager) { this.Title = "Preview"; } /// /// Close this window. /// public void Close() { this.TryClose(); } } }