Ejemplo n.º 1
0
        private void OpenVideoSource(IVideoSource source)
        {
            Cursor = Cursors.WaitCursor;

            CloseVideoSource();

            FPSTimer.Start();

            VideoPlayer.VideoSource = new AsyncVideoSource(source);
            VideoPlayer.Start();

            Cursor = Cursors.Default;
        }
Ejemplo n.º 2
0
 public VisualizationBase()
 {
     _timer = new FPSTimer(60);
     _timer.Start();
     EnableRendering = true;
 }
Ejemplo n.º 3
0
 public VisualizationBase()
 {
     _timer = new FPSTimer(60);
     _timer.Start();
     EnableRendering = true;
 }