CCT.NUI.TestDataCollector.VideoViewModel.VideoViewModel C# (CSharp) Method

VideoViewModel() public method

public VideoViewModel ( ClusterDataSourceSettings clusterDataSourceSettings, ShapeDataSourceSettings shapeDataSourceSettings, HandDataSourceSettings handDataSourceSettings ) : System
clusterDataSourceSettings CCT.NUI.Core.Clustering.ClusterDataSourceSettings
shapeDataSourceSettings CCT.NUI.Core.Shape.ShapeDataSourceSettings
handDataSourceSettings CCT.NUI.HandTracking.HandDataSourceSettings
return System
        public VideoViewModel(ClusterDataSourceSettings clusterDataSourceSettings, ShapeDataSourceSettings shapeDataSourceSettings, HandDataSourceSettings handDataSourceSettings)
        {
            this.clusterDataSourceSettings = clusterDataSourceSettings;
            this.shapeDataSourceSettings = shapeDataSourceSettings;
            this.handDataSourceSettings = handDataSourceSettings;

            this.CaptureFrameCommand = new RelayCommand(CaptureFrame);
            this.CaptureFrameDelayedCommand = new RelayCommand(CaptureFrameDelayed);

            this.StartDepthSourceCommand = new RelayCommand(StartDepthSource);

            this.LayerViewModel = new LayerViewModel();
        }