// -------------------------------------------------------------------------------------------------------------------- // // 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 Caliburn.Micro; /// /// The About View Model /// public class PreviewViewModel : ViewModelBase { /// /// Initializes a new instance of the class. /// /// /// The window manager. /// public PreviewViewModel(IWindowManager windowManager) : base(windowManager) { } /// /// Close this window. /// public void Close() { this.TryClose(); } } }