20 lines
538 B
C#
20 lines
538 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Windows;
|
|||
|
|
using DTS.Common.Base;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface ISystemSettingsViewModel : IBaseViewModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the Shell View.
|
|||
|
|
/// </summary>
|
|||
|
|
ISystemSettingsView View { get; }
|
|||
|
|
List<FrameworkElement> GetRegions();
|
|||
|
|
Object ContextMenuRegion { get; set; }
|
|||
|
|
Object ContextMainRegion { get; set; }
|
|||
|
|
Object ContextNavigationRegion { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|