Files
DP44/Common/DTS.CommonCore/Interface/DTS.Viewer/IMainLiteViewModel.cs
2026-04-17 14:55:32 -04:00

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();
}
}