SunsetHigh.CursorArrow.moveToActivePanel C# (CSharp) Метод

moveToActivePanel() публичный Метод

public moveToActivePanel ( Panel panel ) : void
panel Panel
Результат void
        public void moveToActivePanel(Panel panel)
        {
            if (panel == null)
                return;
            this.panel = panel;
            if (panel is IListPanel)
            {
                if (this.targetEntry != ((IListPanel)panel).getCurrentEntry())
                {
                    this.targetEntry = ((IListPanel)panel).getCurrentEntry();
                    moveToTargetEntry(POP_TIME);
                }
            }
        }