public ButtonSet(Toolbar toolbar, ButtonSetType type) { this.SetType = type; this._toolbar = toolbar; this.Buttons = new List<ButtonBase>(); }
public ButtonSet(Toolbar toolbar) : this(toolbar, ButtonSetType.Normal) { }