示例#1
0
 //Collection IndexOf method
 public int IndexOf(FooterButton item)
 {
     return(List.IndexOf(item));
 }
示例#2
0
 public bool Contains(FooterButton footerButton)
 {
     return(this.List.Contains(footerButton));
 }
示例#3
0
 public void Insert(int index, FooterButton item)
 {
     this.List.Insert(index, item);
 }
示例#4
0
 public void Remove(FooterButton footerButton)
 {
     List.Remove(footerButton);
 }
示例#5
0
 /// <summary>
 /// Adds a new error to the collection
 /// </summary>
 public void Add(FooterButton footerButton)
 {
     this.List.Add(footerButton);
 }