diff options
author | sr55 <[email protected]> | 2011-02-26 16:24:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-02-26 16:24:38 +0000 |
commit | 357bd0bc173b6f3a78ea2297e0577d6c7f5219c3 (patch) | |
tree | 2abc76eca8a987ea5c51c21699a17d48db0ecf6c /win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs | |
parent | cee0c38dcbef68f8d69b8b227510532fa66cb301 (diff) |
WinGui:
- Started designing the Picture Settings Panel
- Added a WindowManager.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3810 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs')
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs index 62394c167..ab7749980 100644 --- a/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -5,10 +5,16 @@ namespace HandBrakeWPF.ViewModels
{
+ using Microsoft.Practices.ServiceLocation;
+
/// <summary>
/// The Options View Model
/// </summary>
public class OptionsViewModel : ViewModelBase
{
+ public OptionsViewModel(IServiceLocator locator)
+ : base(locator)
+ {
+ }
}
}
|