KinectWithVRServer.MainWindow.ForceGUIUpdate C# (CSharp) Method

ForceGUIUpdate() private method

private ForceGUIUpdate ( ) : void
return void
        private void ForceGUIUpdate()
        {
            DispatcherFrame frame = new DispatcherFrame();
            Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Render, new DispatcherOperationCallback(delegate(object parameter)
            {
                frame.Continue = false;
                return null;
            }), null);

            Dispatcher.PushFrame(frame);
        }
MainWindow