MonoGameUi.Control.ControlCollectionRemove C# (CSharp) Method

ControlCollectionRemove() private method

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

            OnRemoveControl(args);
        }