MonoGameUi.Control.ControlCollectionRemove C# (CSharp) 메소드

ControlCollectionRemove() 개인적인 메소드

private ControlCollectionRemove ( Control item, int index ) : void
item Control
index int
리턴 void
        private void ControlCollectionRemove(Control item, int index)
        {
            CollectionEventArgs args = new CollectionEventArgs
            {
                Control = item,
                Index = index
            };

            OnRemoveControl(args);
        }