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