diff options
author | sr55 <[email protected]> | 2013-08-27 19:11:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-08-27 19:11:43 +0000 |
commit | bfd79c7ca947ec205a238a334bfe7f37fd40bb21 (patch) | |
tree | db4ab10a1ba566ae468786d8cf1fb761b808be48 /win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs | |
parent | 09130a3f2991ffaddd7fda7bf6758266e8143d2b (diff) |
WinGui: Some more work on the Instant HandBrake prototype.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5756 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs index 565dfda76..162898f68 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs @@ -13,11 +13,8 @@ namespace HandBrakeWPF.ViewModels using Caliburn.Micro;
- using Castle.Facilities.FactorySupport;
-
using HandBrake.ApplicationServices.Services.Interfaces;
- using HandBrakeWPF.Helpers;
using HandBrakeWPF.Model;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.ViewModels.Interfaces;
@@ -122,6 +119,11 @@ namespace HandBrakeWPF.ViewModels public IOptionsViewModel OptionsViewModel { get; set; }
/// <summary>
+ /// Gets or sets the instant view model.
+ /// </summary>
+ public IInstantViewModel InstantViewModel { get; set; }
+
+ /// <summary>
/// Gets or sets a value indicating whether ShowMainWindow.
/// </summary>
public bool ShowMainWindow
|