Exemplo n.º 1
0
        protected override void OnSequenceEnded(SequenceEventArgs e)
        {
            base.OnSequenceEnded(e);

            // May be the result of a natural end we caused or the user forcing a stop.
            _StopScript();
        }
Exemplo n.º 2
0
 private void _ProgramExecutorSequenceEnded(object sender, SequenceEventArgs e)
 {
     OnSequenceEnded(e);
 }
Exemplo n.º 3
0
 protected virtual void OnSequenceEnded(SequenceEventArgs e)
 {
     if (SequenceEnded != null) {
         SequenceEnded(this, e);
     }
 }
Exemplo n.º 4
0
        protected void context_SequenceEnded(object sender, SequenceEventArgs e)
        {
            //This is for the delayed play options
            if (delayOffToolStripMenuItem.Checked == false)
            {
                //MessageBox.Show("SHOWING STATUS BAR");
                toolStripStatusLabel3.Visible = toolStripStatusLabel_delayPlay.Visible = true;
                toolStripStatusLabel_delayPlay.Text = string.Format("{0} Seconds", timerPostponePlay.Interval / 1000);
            }

            timerPlaying.Stop();
            _TimingSource = null;
        }
Exemplo n.º 5
0
 private void _context_SequenceEnded(object sender, SequenceEventArgs e)
 {
     _context.Error -= _context_Error;
     _context.Message -= _context_Message;
     _context.SequenceEnded -= _context_SequenceEnded;
     VixenSystem.Contexts.ReleaseContext(_context);
     _context = null;
 }
Exemplo n.º 6
0
 protected void context_SequenceEnded(object sender, SequenceEventArgs e)
 {
 }
Exemplo n.º 7
0
 private void _SequenceExecutorSequenceEnded(object sender, SequenceEventArgs e)
 {
     DataSource.Stop();
     _NextSequence(() =>
                   	{
                   		_state = RunState.Stopped;
                   		_ProgramEnded();
                   	});
     OnSequenceEnded(e);
 }
Exemplo n.º 8
0
 private void _SequenceExecutorSequenceEnded(object sender, SequenceEventArgs e)
 {
     CurrentEffects.Reset();
     OnSequenceEnded(e);
     OnContextEnded(EventArgs.Empty);
 }
 protected void context_SequenceEnded(object sender, SequenceEventArgs e)
 {
     timerPlaying.Stop();
     _TimingSource = null;
 }
Exemplo n.º 10
0
 private void _SequenceExecutorSequenceEnded(object sender, SequenceEventArgs e)
 {
     OnSequenceEnded(e);
     OnContextEnded(EventArgs.Empty);
 }
Exemplo n.º 11
0
 void _programExecutor_SequenceEnded(object sender, SequenceEventArgs e)
 {
     if(SequenceEnded != null) {
         SequenceEnded(this, e);
     }
 }
Exemplo n.º 12
0
 protected override void OnSequenceEnded(SequenceEventArgs e)
 {
     base.OnSequenceEnded(e);
     _dataSource.Stop();
 }