init
This commit is contained in:
30
Common/DTS.Common/Interface/IMainViewModel.cs
Normal file
30
Common/DTS.Common/Interface/IMainViewModel.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Windows;
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IMainViewModel : IBaseViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Main View.
|
||||
/// </summary>
|
||||
IBaseView View { get; }
|
||||
|
||||
object ContextNavigationRegion { get; set; }
|
||||
|
||||
object ContextGraphRegion { get; set; }
|
||||
|
||||
object ContextTestsRegion { get; set; }
|
||||
object ContextGraphsRegion { get; set; }
|
||||
object ContextLegendRegion { get; set; }
|
||||
|
||||
object ContextDiagRegion { get; set; }
|
||||
object ContextStatsRegion { get; set; }
|
||||
object ContextCursorRegion { get; set; }
|
||||
|
||||
object ContextPropertyRegion { get; set; }
|
||||
|
||||
List<FrameworkElement> GetRegions();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user