Inheritance: System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector
 public KinectDiagnosticViewer()
 {
     InitializeComponent();
     this.kinectSettings = new KinectSettings(this);
     this.kinectSettings.PopulateComboBoxesWithFormatChoices();
     Settings.Content       = this.kinectSettings;
     this.KinectColorViewer = this.colorViewer;
     this.StatusChanged();
 }
 public KinectDiagnosticViewer(bool renderColor)
 {
     InitializeComponent();
     _kinectSettings = new KinectSettings(this, renderColor);
     _kinectSettings.PopulateComboBoxesWithFormatChoices();
     Settings.Content  = _kinectSettings;
     KinectColorViewer = colorViewer;
     StatusChanged();
 }
 public KinectDiagnosticViewer()
 {
     InitializeComponent();
     this.kinectSettings = new KinectSettings(this);
     this.kinectSettings.PopulateComboBoxesWithFormatChoices();
     Settings.Content = this.kinectSettings;
     this.KinectColorViewer = this.colorViewer;
     this.StatusChanged();
 }