KinectWithVRServer.MainWindow.ForceGUIUpdate C# (CSharp) Méthode

ForceGUIUpdate() private méthode

private ForceGUIUpdate ( ) : void
Résultat 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