diff -r 2d4ec5ab2a40 -r 5f8d275750e7 client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs --- a/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Tue Jan 05 15:53:48 2010 +0100 +++ b/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Fri Jan 08 11:33:24 2010 +0100 @@ -494,7 +494,39 @@ get; private set; } - + public static class WebCamControl + { + static WebCamControl() + { + CamRecordLanch = new Command("CamRecordLanch"); + CamRecordBegin = new Command("CamRecordBegin"); + CamRecordEnd = new Command("CamRecordEnd"); + CamRecordStop = new Command("CamRecordStop"); + } + public static Command CamRecordStop + { + get; + private set; + } + public static Command CamRecordLanch + { + get; + private set; + } + public static Command CamRecordBegin + { + get; + private set; + } + public static Command CamRecordEnd + { + get; + private set; + } + public static void Initialize() + { + } + } public static class ProductionView { @@ -546,6 +578,7 @@ ProductionTimeLine.Initialize(); VideoViewer.Initialize(); ProductionView.Initialize(); + Commands.WebCamControl.Initialize(); } }