CamTimer.Animator.Abort C# (CSharp) Method

Abort() private method

private Abort ( ) : void
return void
        internal void Abort()
        {
            try {
                if (m_animationThread != null) {
                    m_animationThread.Abort();
                }
            } catch (Exception) { }
        }

Usage Example

Beispiel #1
0
 private void mainForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     m_animator.Abort();
     s_instance = null;
 }
Animator