blob: b946d7c7ef0b5bfb98ee9ad7ff501d1c30db0fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace HandBrakeWPF.ViewModels
{
using Caliburn.PresentationFramework.ApplicationModel;
using Caliburn.PresentationFramework.Screens;
/// <summary>
/// A Base Class for the View Models which contains reusable code.
/// </summary>
public class ViewModelBase : Screen
{
public ViewModelBase(IWindowManager windowManager)
{
this.WindowManager = windowManager;
}
public IWindowManager WindowManager { get; private set; }
}
}
|