Exemplo n.º 1
0
        public ButtonSet AddSingle()
        {
            ButtonSet set = new ButtonSet(this, ButtonSet.ButtonSetType.Single);

            this.ButtonSets.Add(set);
            return(set);
        }
Exemplo n.º 2
0
        public ButtonSet AddToggle()
        {
            ButtonSet set = new ButtonSet(this, ButtonSet.ButtonSetType.Multi);

            this.ButtonSets.Add(set);
            return(set);
        }
Exemplo n.º 3
0
        public ButtonSet AddSet()
        {
            ButtonSet set = new ButtonSet(this);

            this.ButtonSets.Add(set);
            return(set);
        }
Exemplo n.º 4
0
 public ButtonSet AddToggle()
 {
     ButtonSet set = new ButtonSet(this, ButtonSet.ButtonSetType.Multi);
     this.ButtonSets.Add(set);
     return set;
 }
Exemplo n.º 5
0
 public ButtonSet AddSingle()
 {
     ButtonSet set = new ButtonSet(this, ButtonSet.ButtonSetType.Single);
     this.ButtonSets.Add(set);
     return set;
 }
Exemplo n.º 6
0
 public ButtonSet AddSet()
 {
     ButtonSet set = new ButtonSet(this);
     this.ButtonSets.Add(set);
     return set;
 }