Ejemplo n.º 1
0
        public override string Buttons(ButtonsRole role, Orientation orientation)
        {
            if (role == ButtonsRole.Toolbar)
            {
                return("btn-toolbar");
            }

            if (orientation == Orientation.Vertical)
            {
                return("btn-group-vertical");
            }

            return("btn-group");
        }
Ejemplo n.º 2
0
        public override string Buttons(ButtonsRole role, Orientation orientation)
        {
            if (role == ButtonsRole.Toolbar)
            {
                return("field is-grouped");
            }

            if (orientation == Orientation.Vertical)
            {
                return("field has-addons buttons");
            }

            return("field has-addons");
        }
Ejemplo n.º 3
0
 public string Buttons(ButtonsRole role, Orientation orientation) => null;
Ejemplo n.º 4
0
 public abstract string Buttons(ButtonsRole role, Orientation orientation);