20 lines
572 B
Plaintext
20 lines
572 B
Plaintext
|
|
using System.Collections.Generic;
|
||
|
|
using System.Windows;
|
||
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IMainViewerViewModel : IBaseViewModel
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the Main View.
|
||
|
|
/// </summary>
|
||
|
|
IBaseView View { get; }
|
||
|
|
object ContextMainRegion { get; set; }
|
||
|
|
object ContextNavigationRegion { get; set; }
|
||
|
|
object ContextHorizontalTabRegion { get; set; }
|
||
|
|
object ContextVerticalTabRegion { get; set; }
|
||
|
|
List<FrameworkElement> GetRegions();
|
||
|
|
}
|
||
|
|
}
|