client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs
changeset 29 5f8d275750e7
parent 27 f292db96b050
child 35 43bb1b8ed555
equal deleted inserted replaced
28:2d4ec5ab2a40 29:5f8d275750e7
   492         public static Command GoToTime
   492         public static Command GoToTime
   493         {
   493         {
   494             get;
   494             get;
   495             private set;
   495             private set;
   496         }
   496         }
   497 
   497         public static class WebCamControl
       
   498         {
       
   499             static WebCamControl()
       
   500             {
       
   501                 CamRecordLanch = new Command("CamRecordLanch");
       
   502                 CamRecordBegin = new Command("CamRecordBegin");
       
   503                 CamRecordEnd = new Command("CamRecordEnd");
       
   504                 CamRecordStop = new Command("CamRecordStop");
       
   505             }
       
   506             public static Command CamRecordStop
       
   507             {
       
   508                 get;
       
   509                 private set;
       
   510             }
       
   511             public static Command CamRecordLanch
       
   512             {
       
   513                 get;
       
   514                 private set;
       
   515             }
       
   516             public static Command CamRecordBegin
       
   517             {
       
   518                 get;
       
   519                 private set;
       
   520             }
       
   521             public static Command CamRecordEnd
       
   522             {
       
   523                 get;
       
   524                 private set;
       
   525             }
       
   526             public static void Initialize()
       
   527             {
       
   528             }
       
   529         }
   498         public static class ProductionView
   530         public static class ProductionView
   499         {
   531         {
   500            
   532            
   501             static ProductionView()
   533             static ProductionView()
   502             {
   534             {
   544             ContextualBinderLayer.Initialize();
   576             ContextualBinderLayer.Initialize();
   545             HeaderProduction.Initialize();
   577             HeaderProduction.Initialize();
   546             ProductionTimeLine.Initialize();
   578             ProductionTimeLine.Initialize();
   547             VideoViewer.Initialize();
   579             VideoViewer.Initialize();
   548             ProductionView.Initialize();
   580             ProductionView.Initialize();
       
   581             Commands.WebCamControl.Initialize();
   549             
   582             
   550         }
   583         }
   551     }
   584     }
   552 }
   585 }