public virtual void InsertButton(EsuToolbarButton button, int index)
 {
     buttonCollection.Insert(index, button);
       NotifyOfPropertyChange(() => ButtonCollection);
 }
 public virtual void AddButton(EsuToolbarButton button)
 {
     InsertButton(button, buttonCollection.Count);
 }