Skip to content

Instantly share code, notes, and snippets.

@mazmoiz
Created July 11, 2020 13:10
public void RemoveButton(string btnIndex)
{
if (this.Count > 0)
{
HostForm.Controls.Remove((Button)this[btnIndex]);
this.Remove(btnIndex);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment