ZForge.Controls.TreeViewAdv.Tree.NodeControls.ExpandingIcon.Start C# (CSharp) Method

Start() public static method

public static Start ( ) : void
return void
        public static void Start()
        {
            _index = 0;
            if (_animatingThread == null)
            {
                _animatingThread = new Thread(new ThreadStart(IterateIcons));
                _animatingThread.IsBackground = true;
                _animatingThread.Priority = ThreadPriority.Lowest;
                _animatingThread.Start();
            }
        }