91432c5209
git-svn-id: file:///srv/devel/repo-conversion/nuwi@53 d2e56fa2-650e-0410-a79f-9358c0239efd
15 lines
486 B
C#
15 lines
486 B
C#
using System;
|
|
|
|
namespace Nuclex.Windows.Forms.ViewModels {
|
|
|
|
/// <summary>Interface for vew models that can switch between different pages</summary>
|
|
public interface IMultiPageViewModel {
|
|
|
|
/// <summary>Retrieves (and, if needed, creates) the view model for the active page</summary>
|
|
/// <returns>A view model for the active page on the multi-page view model</returns>
|
|
object GetActivePageViewModel();
|
|
|
|
}
|
|
|
|
} // namespace Nuclex.Windows.Forms.ViewModels
|