using System; namespace Nuclex.Windows.Forms.ViewModels { /// Interface for vew models that can switch between different pages public interface IMultiPageViewModel { /// Retrieves (and, if needed, creates) the view model for the active page /// A view model for the active page on the multi-page view model object GetActivePageViewModel(); } } // namespace Nuclex.Windows.Forms.ViewModels