CCT.NUI.TestDataCollector.TestDepthFrameRepository.Load C# (CSharp) Method

Load() public method

public Load ( ) : TestDepthFrame
return TestDepthFrame
        public TestDepthFrame Load()
        {
            using (var dialog = new System.Windows.Forms.OpenFileDialog())
            {
                dialog.Filter = this.fileDialogFilter;
                if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
                    return this.Load(dialog.FileName);
                }
            }
            return null;
        }

Same methods

TestDepthFrameRepository::Load ( string path ) : TestDepthFrame
TestDepthFrameRepository