client/src/Iri.Modernisation.Controls/ViewModel/ProductionEditor/ProductionEditorVM.cs
--- a/client/src/Iri.Modernisation.Controls/ViewModel/ProductionEditor/ProductionEditorVM.cs Tue Jan 19 09:49:56 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/ViewModel/ProductionEditor/ProductionEditorVM.cs Mon Jan 25 09:30:22 2010 +0100
@@ -32,6 +32,19 @@
}
}
+ private WebCamControlVM _webCamControlVM;
+ public WebCamControlVM ViewModelWebCamControl
+ {
+ get
+ {
+ return _webCamControlVM;
+ }
+ set
+ {
+ _webCamControlVM = value;
+ OnPropertyChanged("ViewModelWebCamControl");
+ }
+ }
private VideoViewerVM _videoViewerVM;
public VideoViewerVM ViewModelVideoViewer
{
@@ -159,6 +172,7 @@
public ProductionEditorVM()
{
+ ViewModelWebCamControl = new WebCamControlVM();
InitializeCommands();
}
public ProductionEditorVM(VideoSequence Vs)