Ejemplo n.º 1
0
        public void Play()
        {
            _component.Play();

            if (_frames == null)
            {
                LoadFrames();
            }

            if (_endFrameTimer == null)
            {
                _endFrameTimer = new Timer(TimerCallback, null, 50, 1000);
            }
        }