ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupComboBox.UnmonitorControl C# (CSharp) 메소드

UnmonitorControl() 개인적인 메소드

private UnmonitorControl ( KryptonComboBox c ) : void
c KryptonComboBox
리턴 void
        private void UnmonitorControl(KryptonComboBox c)
        {
            c.MouseEnter -= new EventHandler(OnControlEnter);
            c.MouseLeave -= new EventHandler(OnControlLeave);
            c.TrackMouseEnter -= new EventHandler(OnControlEnter);
            c.TrackMouseLeave -= new EventHandler(OnControlLeave);
        }